> ## 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.

# List donation activity

> List recent donation receipts and in-flight source transfers for a charity or campaign.



## OpenAPI

````yaml https://www.donate.gg/api/v1/openapi get /donation-activity
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-activity:
    get:
      summary: List donation activity
      description: >-
        List recent donation receipts and in-flight source transfers for a
        charity or campaign.
      operationId: donationActivity.list
      parameters:
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            minimum: 1
            maximum: 50
            description: Page size (min 1, max 50)
          allowEmptyValue: true
          allowReserved: true
        - name: cursor
          in: query
          required: false
          schema:
            type: string
            description: Cursor for next page (from previous pageKey)
          allowEmptyValue: true
          allowReserved: true
        - name: kind
          in: query
          required: true
          schema:
            enum:
              - charity
              - campaign
            type: string
          allowEmptyValue: true
          allowReserved: true
        - name: id
          in: query
          required: true
          schema:
            type: string
            minLength: 1
            maxLength: 128
          allowEmptyValue: true
          allowReserved: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  pageKey:
                    anyOf:
                      - type: string
                      - type: 'null'
                  response:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                        kind:
                          enum:
                            - donation
                            - transfer
                          type: string
                        status:
                          anyOf:
                            - enum:
                                - pending
                                - settled
                                - unconfirmed
                              type: string
                            - enum:
                                - pending
                                - executing
                                - bridged
                                - arrived
                                - donated
                                - claimable
                                - reclaimed
                                - refunding
                                - refunded
                                - manual
                              type: string
                        delivery:
                          type: object
                          properties:
                            chainId:
                              type: integer
                              minimum: -9007199254740991
                              maximum: 9007199254740991
                            transactionHash:
                              type: string
                          required:
                            - chainId
                            - transactionHash
                          additionalProperties: false
                        donationReceiptId:
                          anyOf:
                            - type: string
                            - type: 'null'
                        sourceTransferId:
                          anyOf:
                            - type: string
                            - type: 'null'
                        chainId:
                          type: integer
                          minimum: -9007199254740991
                          maximum: 9007199254740991
                        transactionHash:
                          type: string
                        logIndex:
                          type: integer
                          minimum: -9007199254740991
                          maximum: 9007199254740991
                        timestamp:
                          type: string
                          format: date-time
                        sourceAddress:
                          type: string
                        sourceName:
                          type: string
                        inputAmount:
                          type: string
                          pattern: ^\d+$
                        inputToken:
                          anyOf:
                            - type: object
                              properties:
                                address:
                                  type: string
                                chainId:
                                  type: integer
                                  minimum: -9007199254740991
                                  maximum: 9007199254740991
                                symbol:
                                  type: string
                                decimals:
                                  type: integer
                                  minimum: -9007199254740991
                                  maximum: 9007199254740991
                              required:
                                - address
                                - chainId
                                - symbol
                                - decimals
                              additionalProperties: false
                            - type: 'null'
                        amountScope:
                          enum:
                            - donation
                            - beneficiary
                            - total-sent
                          type: string
                      required:
                        - id
                        - kind
                        - status
                        - donationReceiptId
                        - sourceTransferId
                        - chainId
                        - transactionHash
                        - logIndex
                        - timestamp
                        - sourceAddress
                        - sourceName
                        - inputAmount
                        - inputToken
                        - amountScope
                      additionalProperties: false
                required:
                  - pageKey
                  - response
                additionalProperties: false
        '400':
          description: '400'
          content:
            application/json:
              schema:
                oneOf:
                  - type: object
                    properties:
                      defined:
                        const: true
                      code:
                        const: VALIDATION_ERROR
                      status:
                        const: 400
                      message:
                        type: string
                        default: Validation failed
                      data:
                        type: object
                        properties:
                          error:
                            type: string
                          code:
                            const: VALIDATION_ERROR
                          issues:
                            type: array
                            items:
                              anyOf:
                                - {}
                                - type: 'null'
                        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
        '503':
          description: '503'
          content:
            application/json:
              schema:
                oneOf:
                  - type: object
                    properties:
                      defined:
                        const: true
                      code:
                        const: PROVIDER_UNAVAILABLE
                      status:
                        const: 503
                      message:
                        type: string
                        default: Provider temporarily unavailable
                      data:
                        type: object
                        properties:
                          error:
                            type: string
                          code:
                            const: PROVIDER_UNAVAILABLE
                        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.

````