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

# Current Holders - By Token Address

> Retrieves the token holders for the specified address.



## OpenAPI

````yaml get /tokens/{hash}/holders/latest
openapi: 3.1.0
info:
  title: blockchain-api
  version: '2'
servers:
  - url: https://api.amberdata.com/blockchains
security:
  - sec0: []
paths:
  /tokens/{hash}/holders/latest:
    get:
      summary: Current Holders - By Token Address
      description: Retrieves the token holders for the specified address.
      operationId: get-token-holders
      parameters:
        - name: hash
          in: path
          description: The address to retrieve token holders for
          schema:
            type: string
            default: '0x6982508145454Ce325dDbE47a25d4ec3d2311933'
          required: true
        - name: numTokens
          in: query
          description: Filter by token holders who own the specified amount of tokens.
          schema:
            type: integer
            format: int32
        - name: numTokensGt
          in: query
          description: >-
            Filter by token holders who own more than the specified amount of
            tokens
          schema:
            type: integer
            format: int32
        - name: numTokensGte
          in: query
          description: >-
            Filter by token holders who own more than or equal to the specified
            amount of tokens
          schema:
            type: integer
            format: int32
        - name: numTokensLt
          in: query
          description: >-
            Fitler by token holders who own less than the specified amount of
            tokens
          schema:
            type: integer
            format: int32
        - name: numTokensLte
          in: query
          description: >-
            Filter by token holders who own less than or equal to the specified
            amount of tokens
          schema:
            type: integer
            format: int32
        - name: timestampGt
          in: query
          description: >-
            Filter by token holders who started holding the token after the
            specified date
          schema:
            type: string
            format: date-time
        - name: timestampGte
          in: query
          description: >-
            Filter by token holders who started holding the token after or equal
            to the specified date
          schema:
            type: string
            format: date-time
        - name: timestampLt
          in: query
          description: >-
            Filter by token holders who started holding the token before the
            specified date
          schema:
            type: string
            format: date-time
        - name: timestampLte
          in: query
          description: >-
            Filter by token holders who started holding the token before or
            equal to the specified date
          schema:
            type: string
            format: date-time
        - name: tokenAddress
          in: query
          description: Filter by token holders for this token (mandatory)
          schema:
            type: string
        - name: includePrice
          in: query
          description: >-
            Indicates whether or not to include price data with the results.
            Options: true, false. <a
            href="https://docs.amberdata.io/reference#section-include-price">More
            Details.</a>
          schema:
            type: boolean
        - name: currency
          in: query
          description: >-
            The currency of the price information (usd or btc.) - only used in
            conjunction with includePrice. <a
            href="https://docs.amberdata.io/reference#section-currency">More
            Details.</a>
          schema:
            type: string
        - name: page
          in: query
          description: The page number to return.
          schema:
            type: integer
            format: int32
            default: 0
        - name: size
          in: query
          description: Number of records per page
          schema:
            type: integer
            format: int32
            default: 50
        - name: x-amberdata-blockchain-id
          in: header
          description: The id of the blockchain
          schema:
            type: string
            enum:
              - ethereum-mainnet
              - polygon-mainnet
            default: ethereum-mainnet
        - name: timeFormat
          in: query
          description: >-
            **[Optional]** Time format of the timestamps in the return
            payload.<BR/>**[Defaults]** `milliseconds | ms* | iso | iso8601 | hr
            | human_readable`
          schema:
            type: string
      responses:
        '200':
          description: '200'
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: integer
                    example: 200
                    default: 0
                  title:
                    type: string
                    example: OK
                  description:
                    type: string
                    example: Successful request
                  payload:
                    type: object
                    properties:
                      records:
                        type: array
                        items:
                          type: object
                          properties:
                            tokenAddress:
                              type: string
                              example: '0x06012c8cf97bead5deae237070f9587f8e7a266d'
                            holderAddress:
                              type: string
                              example: '0xb1690c08e213a35ed9bab7b318de14420fb57d8c'
                            timestamp:
                              type: integer
                              example: 1575920861000
                              default: 0
                            holderFirstTimestamp:
                              type: string
                              example: '2017-11-23T18:44:21.000Z'
                            numTokens:
                              type: string
                              example: '209736'
                            decimals:
                              type: string
                              example: '0'
        '400':
          description: '400'
          content:
            application/json:
              examples:
                Result:
                  value: '{}'
              schema:
                type: object
                properties: {}
      deprecated: false
      security:
        - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````