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

# Asset Rankings Historical

> Retrieves the top ranked assets, tokens and native coins, by a specific metric.



## OpenAPI

````yaml get /rankings/historical
openapi: 3.1.0
info:
  title: Market Metrics API Old
  version: '2'
servers:
  - url: https://api.amberdata.com/market
security:
  - sec0: []
paths:
  /rankings/historical:
    get:
      summary: Asset Rankings Historical
      description: >-
        Retrieves the top ranked assets, tokens and native coins, by a specific
        metric.
      operationId: market-rankings-historical
      parameters:
        - name: date
          in: query
          description: The date for which to retrieve the rankings.
          required: true
          schema:
            type: string
            default: '2021-12-01'
        - name: page
          in: query
          description: The page number to return.
          schema:
            type: integer
            format: int32
            default: 0
        - name: size
          in: query
          description: The number of records per page. (max 1000)
          schema:
            type: integer
            format: int32
        - name: curatedAssets
          in: query
          description: >-
            **[Optional]** Exclude Low marketcap assets from returning.
            Occasionally, low marketcap assets return in the rankings due to
            price volatility on DEXes. Change to TRUE to include a curated list
            of assets.
          schema:
            type: boolean
            default: false
      responses:
        '200':
          description: '200'
          content:
            application/json:
              examples:
                Result:
                  value:
                    description: Successful request
                    payload:
                      data:
                        - symbol: btc
                          batchId: '2021-01-01T05:10:00.003Z'
                          address: null
                          currentPrice: '28958'
                          decimals: '8'
                          marketCap: '540759200822'
                          liquidMarketCap: '538236177946'
                          name: Bitcoin
                          rank: 1
                          circulatingSupply: 18586787
                          totalSupply: 21000000
                          maxSupply: 21000000
                          blockchain:
                            blockchainId: 408fa195a34b533de9ad9889f076045e
                            name: Bitcoin
                            slug: bitcoin
                            symbol: btc
                            icon: >-
                              https://amberdata.io/digital-assets/bitcoin_btc.png
                      metadata:
                        totalRecords: '2143'
                    status: 200
                    title: OK
        '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

````