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

# Look up bridged donation transfers

> Look up bridged-donation progress by `sourceId`, or by origin `chainId` and `transactionHash`.



## OpenAPI

````yaml https://www.donate.gg/api/v1/openapi get /donation-transfers
openapi: 3.1.1
info:
  title: Donate Developer API
  version: 1.0.0
  description: >-
    Public JSON API for charities, configs, campaigns, tokens, and related
    catalog reads. GET/HEAD catalog routes may omit `donate-api-key` and are IP
    rate-limited for anonymous callers (~20 req/min). Authenticated keys share
    one organization billing-tier bucket. Create/list/delete configs and project
    analytics require an API key. Spec routes (`/openapi`, `/postman`) are
    unauthenticated and unmetered.
servers:
  - url: /api/v1
    description: API v1 base path (relative to your dashboard origin)
security:
  - {}
  - ApiKeyAuth: []
paths:
  /donation-transfers:
    get:
      summary: Look up bridged donation transfers
      description: >-
        Look up bridged-donation progress by `sourceId`, or by origin `chainId`
        and `transactionHash`.
      operationId: donationTransfers.list
      parameters:
        - name: sourceId
          in: query
          schema:
            type: string
          allowEmptyValue: true
          allowReserved: true
        - name: chainId
          in: query
          schema:
            type: integer
            minimum: -9007199254740991
            maximum: 9007199254740991
            exclusiveMinimum: 0
          allowEmptyValue: true
          allowReserved: true
        - name: transactionHash
          in: query
          schema:
            type: string
          allowEmptyValue: true
          allowReserved: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    origin:
                      type: object
                      properties:
                        sourceId:
                          type: string
                          pattern: ^0x[\da-fA-F]{64}$
                        chainId:
                          type: integer
                          minimum: -9007199254740991
                          maximum: 9007199254740991
                        sender:
                          type: string
                          pattern: ^0x[\da-fA-F]{40}$
                        depositId:
                          type: string
                          pattern: ^\d+$
                        token:
                          type: string
                          pattern: ^0x[\da-fA-F]{40}$
                        amount:
                          type: string
                          pattern: ^\d+$
                        fundingCaller:
                          type: string
                          pattern: ^0x[\da-fA-F]{40}$
                        transactionHash:
                          type: string
                          pattern: ^0x[\da-fA-F]{64}$
                      required:
                        - chainId
                        - sender
                        - depositId
                        - token
                        - amount
                        - fundingCaller
                      additionalProperties: false
                    status:
                      enum:
                        - pending
                        - executing
                        - bridged
                        - arrived
                        - donated
                        - claimable
                        - reclaimed
                        - refunding
                        - refunded
                        - manual
                      type: string
                    reclaimAt:
                      type: string
                      format: date-time
                    destinationChainId:
                      type: integer
                      minimum: -9007199254740991
                      maximum: 9007199254740991
                    destinationTransactionHash:
                      anyOf:
                        - type: string
                          pattern: ^0x[\da-fA-F]{64}$
                        - type: 'null'
                    donationReceiptId:
                      anyOf:
                        - type: string
                        - type: 'null'
                    reason:
                      anyOf:
                        - type: string
                        - type: 'null'
                  required:
                    - origin
                    - status
                    - reclaimAt
                    - destinationChainId
                    - donationReceiptId
                    - reason
                  additionalProperties: false
        '400':
          description: '400'
          content:
            application/json:
              schema:
                oneOf:
                  - type: object
                    properties:
                      defined:
                        const: true
                      code:
                        const: INVALID_QUERY
                      status:
                        const: 400
                      message:
                        type: string
                        default: Supply sourceId, or chainId and transactionHash
                      data:
                        type: object
                        properties:
                          error:
                            type: string
                          code:
                            const: INVALID_QUERY
                        required:
                          - error
                          - code
                        additionalProperties: false
                    required:
                      - defined
                      - code
                      - status
                      - message
                  - type: object
                    properties:
                      defined:
                        const: false
                      code:
                        type: string
                      status:
                        type: number
                      message:
                        type: string
                      data: {}
                    required:
                      - defined
                      - code
                      - status
                      - message
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: donate-api-key
      description: >-
        Developer API key. Required for config create/list/delete and project
        analytics. Optional on public GET reads (anonymous callers are IP
        rate-limited). Obtain from the Developer dashboard.

````