> ## 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 charity-coin creators

> Paginated leaderboard of charity-coin creators (credited accounts).



## OpenAPI

````yaml https://www.donate.gg/api/v1/openapi get /charity-coins/creators
openapi: 3.0.0
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: []
paths:
  /charity-coins/creators:
    get:
      summary: List charity-coin creators
      description: Paginated leaderboard of charity-coin creators (credited accounts).
      parameters:
        - schema:
            type: integer
            minimum: 1
            maximum: 100
            default: 25
          required: false
          name: limit
          in: query
        - schema:
            type: string
            description: Cursor for next page (from previous pageKey)
          required: false
          description: Cursor for next page (from previous pageKey)
          name: cursor
          in: query
        - schema:
            type: string
            minLength: 1
            description: >-
              Optional. Omit for the anonymous IP budget (~20 req/min). Keys
              share their organization billing-tier limit.
          required: false
          description: >-
            Optional. Omit for the anonymous IP budget (~20 req/min). Keys share
            their organization billing-tier limit.
          name: donate-api-key
          in: header
      responses:
        '200':
          description: Paginated creator leaderboard with pump account bundle.
          headers:
            X-RateLimit-Limit:
              schema:
                type: integer
              description: Maximum requests allowed in the current window.
            X-RateLimit-Remaining:
              schema:
                type: integer
              description: Requests remaining in the current window.
            X-RateLimit-Reset:
              schema:
                type: integer
              description: Unix epoch seconds when the current window resets.
          content:
            application/json:
              schema:
                type: object
                properties:
                  pageKey:
                    type: string
                    nullable: true
                  response:
                    type: array
                    items:
                      type: object
                      properties:
                        user:
                          type: object
                          nullable: true
                          properties:
                            id:
                              type: string
                            username:
                              type: string
                            firstName:
                              type: string
                              nullable: true
                            lastName:
                              type: string
                              nullable: true
                            avatar:
                              type: string
                              nullable: true
                            twitter:
                              type: object
                              nullable: true
                              properties:
                                accountId:
                                  type: string
                                username:
                                  type: string
                                displayName:
                                  type: string
                                avatar:
                                  type: string
                                description:
                                  type: string
                                  nullable: true
                              required:
                                - accountId
                                - username
                                - displayName
                                - avatar
                                - description
                              additionalProperties: false
                            twitch:
                              type: object
                              nullable: true
                              properties:
                                accountId:
                                  type: string
                                username:
                                  type: string
                                displayName:
                                  type: string
                                avatar:
                                  type: string
                                description:
                                  type: string
                                  nullable: true
                              required:
                                - accountId
                                - username
                                - displayName
                                - avatar
                                - description
                              additionalProperties: false
                            configId:
                              type: string
                            createdAt:
                              type: string
                            updatedAt:
                              type: string
                          required:
                            - id
                            - username
                            - firstName
                            - lastName
                            - avatar
                            - twitter
                            - twitch
                            - configId
                            - createdAt
                            - updatedAt
                          additionalProperties: false
                        creditedAccount:
                          type: object
                          properties:
                            chain:
                              type: object
                              properties:
                                id:
                                  type: number
                                name:
                                  type: string
                                type:
                                  type: string
                                  enum:
                                    - bitcoin
                                    - evm
                                    - solana
                              required:
                                - id
                                - name
                                - type
                              additionalProperties: false
                            address:
                              type: string
                          required:
                            - chain
                            - address
                          additionalProperties: false
                        donationSource:
                          type: object
                          properties:
                            label:
                              type: string
                            address:
                              type: string
                            chain:
                              type: object
                              properties:
                                id:
                                  type: number
                                name:
                                  type: string
                                type:
                                  type: string
                                  enum:
                                    - bitcoin
                                    - evm
                                    - solana
                              required:
                                - id
                                - name
                                - type
                              additionalProperties: false
                            developerProjectId:
                              type: string
                          required:
                            - label
                            - address
                            - chain
                            - developerProjectId
                          additionalProperties: false
                        pendingUsdE6:
                          type: string
                        finalizedUsdE6:
                          type: string
                        displayedUsdE6:
                          type: string
                        pendingCount:
                          type: integer
                        finalizedCount:
                          type: integer
                        donationCount:
                          type: integer
                        firstDonationAt:
                          type: string
                          nullable: true
                        lastDonationAt:
                          type: string
                          nullable: true
                        rank:
                          type: integer
                      required:
                        - user
                        - creditedAccount
                        - donationSource
                        - pendingUsdE6
                        - finalizedUsdE6
                        - displayedUsdE6
                        - pendingCount
                        - finalizedCount
                        - donationCount
                        - firstDonationAt
                        - lastDonationAt
                        - rank
                      additionalProperties: false
                  pumpAccountBundle:
                    type: object
                    additionalProperties:
                      type: object
                      properties:
                        address:
                          type: string
                        username:
                          type: string
                          nullable: true
                        avatarUrl:
                          type: string
                          nullable: true
                      required:
                        - address
                        - username
                        - avatarUrl
                      additionalProperties: false
                required:
                  - pageKey
                  - response
                  - pumpAccountBundle
                additionalProperties: false
        '400':
          description: Validation error.
          headers:
            X-RateLimit-Limit:
              schema:
                type: integer
              description: Maximum requests allowed in the current window.
            X-RateLimit-Remaining:
              schema:
                type: integer
              description: Requests remaining in the current window.
            X-RateLimit-Reset:
              schema:
                type: integer
              description: Unix epoch seconds when the current window resets.
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                  code:
                    type: string
                required:
                  - error
                  - code
                additionalProperties: false
        '429':
          description: >-
            Rate limit exceeded. Retry after the period indicated by the
            Retry-After header.
          headers:
            X-RateLimit-Limit:
              schema:
                type: integer
              description: Maximum requests allowed in the current window.
            X-RateLimit-Remaining:
              schema:
                type: integer
              description: Requests remaining in the current window.
            X-RateLimit-Reset:
              schema:
                type: integer
              description: Unix epoch seconds when the current window resets.
            Retry-After:
              schema:
                type: integer
              description: Seconds until the client should retry.
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                  code:
                    type: string
                required:
                  - error
                  - code
                additionalProperties: false
      security:
        - {}
        - ApiKeyAuth: []
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.

````