GET
/
rankings
/
historical
Asset Rankings Historical
curl --request GET \
  --url https://api.amberdata.com/market/rankings/historical \
  --header 'x-api-key: <api-key>'
{
  "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"
}

Authorizations

x-api-key
string
header
required

Query Parameters

date
string
default:2021-12-01
required

The date for which to retrieve the rankings.

page
integer
default:0

The page number to return.

size
integer

The number of records per page. (max 1000)

curatedAssets
boolean
default:false

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

Response

200
application/json

200

The response is of type any.