> ## Documentation Index
> Fetch the complete documentation index at: https://docs.raze.bot/llms.txt
> Use this file to discover all available pages before exploring further.

# Reverse lookup — wallets a funder has funded

> For each funder in the request, returns up to `limit` wallets they
funded, ordered by `fundedAt` descending. Useful for subtree expansion
("show me everything this dispenser sent SOL to") and sniper-farm
enumeration.

Supports per-funder pagination via the `before` cursor (millisecond
timestamp of the last entry on the previous page).




## OpenAPI

````yaml openapi-spec/history.yaml get /api/sol/funding/funded-by
openapi: 3.0.3
info:
  title: Raze Database API
  description: >
    Paid subscription API for Solana transaction data and history.


    Also hosts write utilities (`/utils/sol/*`): token launch, transfer, burn,

    consolidate, fees claim/config, and agent initialize — previously on

    `router.raze.bot`. Mixer/distribute removed 2026-07-25.


    ## Batch Requests

    All endpoints with path parameters (mint, signer, address, tokenMint,
    ownerAddress) support batch queries

    via comma-separated values. For example:
    `/api/sol/trades/mint/mint1,mint2,mint3?limit=50`


    - Maximum 10 values per batch request

    - Each value must be a valid address (>= 32 characters)

    - Single values behave identically to non-batch requests

    - Batch response format: `{ "success": true, "results": { "value1": {...},
    "value2": {...} }, "count": N, "timestamp": "..." }`

    - Each key in `results` contains the full single-entity response

    - Queries run in parallel for maximum performance
  version: 1.0.0
servers:
  - url: https://api.raze.bot
    description: >-
      Raze global History API — GeoDNS routes to the nearest region
      automatically
security:
  - ApiKeyAuth: []
paths:
  /api/sol/funding/funded-by:
    get:
      summary: Reverse lookup — wallets a funder has funded
      description: |
        For each funder in the request, returns up to `limit` wallets they
        funded, ordered by `fundedAt` descending. Useful for subtree expansion
        ("show me everything this dispenser sent SOL to") and sniper-farm
        enumeration.

        Supports per-funder pagination via the `before` cursor (millisecond
        timestamp of the last entry on the previous page).
      operationId: fundingFundedBy
      parameters:
        - name: funders
          in: query
          required: true
          schema:
            type: string
          description: One or more funder addresses (comma-separated, max 150).
        - name: limit
          in: query
          schema:
            type: integer
            minimum: 1
            maximum: 1000
            default: 100
          description: Per-funder maximum number of wallets to return.
        - name: before
          in: query
          schema:
            type: integer
            format: int64
          description: >-
            Pagination cursor — the `fundedAt` millisecond timestamp from the
            previous page.
          example: 1761412598521
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FundedByResponse'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    FundedByResponse:
      type: object
      properties:
        success:
          type: boolean
        funded:
          type: object
          description: Map keyed by input funder address.
          additionalProperties:
            type: object
            properties:
              wallets:
                type: array
                items:
                  type: object
                  properties:
                    wallet:
                      type: string
                    fundedAt:
                      type: string
                      format: date-time
                    signature:
                      type: string
                    slot:
                      type: integer
                      format: int64
                    lamports:
                      type: string
                    solAmount:
                      type: number
                    source:
                      type: string
                      enum:
                        - observed
                        - rpc_backfilled
                        - rpc_unresolved
                        - ch_backfilled
                        - car_backfilled
              nextCursor:
                type: string
                nullable: true
              more:
                type: boolean
    ErrorResponse:
      type: object
      properties:
        error:
          type: string
        message:
          type: string
        code:
          type: string
        success:
          type: boolean
      example:
        error: Unauthorized
        message: Invalid API key
        code: INVALID_KEY
        success: false
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: query
      name: apiKey

````