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

# Token Holders



## OpenAPI

````yaml openapi.json GET /gateway/v1/token/holders
openapi: 3.1.0
info:
  title: Hermod
  version: 0.0.1
servers:
  - url: https://api.asksurf.ai
security: []
paths:
  /gateway/v1/token/holders:
    get:
      tags:
        - Token
      summary: Token Holders
      description: |-
        Returns top token holders for a contract address.

        **Included fields:** wallet address, balance, and percentage.

        **Lookup:** by `address` and `chain`. Supports EVM chains and Solana.
      operationId: token-holders
      parameters:
        - description: Token contract address (0x-prefixed hex or Solana base58)
          explode: false
          in: query
          name: address
          required: true
          schema:
            description: Token contract address (0x-prefixed hex or Solana base58)
            examples:
              - '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48'
            type: string
        - description: >-
            Chain. Can be `ethereum`, `polygon`, `bsc`, `solana`, `avalanche`,
            `arbitrum`, `optimism`, or `base`.
          explode: false
          in: query
          name: chain
          required: true
          schema:
            description: >-
              Chain. Can be `ethereum`, `polygon`, `bsc`, `solana`, `avalanche`,
              `arbitrum`, `optimism`, or `base`.
            enum:
              - ethereum
              - polygon
              - bsc
              - solana
              - avalanche
              - arbitrum
              - optimism
              - base
            examples:
              - ethereum
            type: string
        - description: Results per page
          explode: false
          in: query
          name: limit
          schema:
            default: 20
            description: Results per page
            examples:
              - 20
            format: int64
            maximum: 100
            minimum: 1
            type: integer
        - description: >-
            Pagination offset (accepted for API consistency but currently
            ignored)
          explode: false
          in: query
          name: offset
          schema:
            default: 0
            description: >-
              Pagination offset (accepted for API consistency but currently
              ignored)
            examples:
              - 0
            format: int64
            minimum: 0
            type: integer
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DataResponseTokenHolderItem'
          description: OK
        default:
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DataAPIError'
          description: Error
      security:
        - AccessToken: []
components:
  schemas:
    DataResponseTokenHolderItem:
      additionalProperties: false
      properties:
        $schema:
          description: A URL to the JSON Schema for this object.
          examples:
            - https://example.com/schemas/DataResponseTokenHolderItem.json
          format: uri
          readOnly: true
          type: string
        data:
          items:
            $ref: '#/components/schemas/TokenHolderItem'
          type:
            - array
            - 'null'
        meta:
          $ref: '#/components/schemas/OffsetMeta'
      required:
        - data
        - meta
      type: object
    DataAPIError:
      additionalProperties: false
      properties:
        $schema:
          description: A URL to the JSON Schema for this object.
          examples:
            - https://example.com/schemas/DataAPIError.json
          format: uri
          readOnly: true
          type: string
        error:
          $ref: '#/components/schemas/DataAPIErrorDetail'
      required:
        - error
      type: object
    TokenHolderItem:
      additionalProperties: false
      properties:
        address:
          description: Wallet address of the token holder
          type: string
        balance:
          description: Token balance (decimal-adjusted, human-readable)
          type: string
        entity_name:
          description: Name of the associated entity like `Binance` or `Aave`
          type: string
        entity_type:
          description: Type of entity like `exchange`, `fund`, or `whale`
          type: string
        percentage:
          description: Share of total supply held as a percentage (5.2 means 5.2%)
          format: double
          type: number
      required:
        - address
        - balance
      type: object
    OffsetMeta:
      additionalProperties: false
      properties:
        cached:
          description: Whether this response was served from cache
          type: boolean
        credits_used:
          description: Credits deducted for this request
          format: int64
          type: integer
        limit:
          description: Maximum number of items returned in this response
          format: int64
          type: integer
        offset:
          description: Number of items skipped (pagination offset)
          format: int64
          type: integer
        total:
          description: >-
            Total number of matching items (before pagination). Omitted when
            total is unknown.
          format: int64
          type: integer
      required:
        - limit
        - offset
        - credits_used
        - cached
      type: object
    DataAPIErrorDetail:
      additionalProperties: false
      properties:
        code:
          type: string
        message:
          type: string
      required:
        - code
        - message
      type: object

````