NFTs (Beta)

๐Ÿ’ผ NFTs Collection Historical Chart Data by ID

This endpoint allows you query historical market data of a NFT collection, including floor price, market cap, and 24hr volume, by number of days away from now

get/nfts/{id}/market_chart

Path parameters

idstring required
Example:pudgy-penguins

NFTs ID <br> *refers to /nfts/list.

Query parameters

daysstring required

data up to number of days <br> Valid values: any integer or max

Response

Get historical market data include price, market cap, and 24hr volume (granularity auto)

Example response

{
  "floor_price_usd": [
    [
      1626912000000,
      90.1675764653448
    ],
    [
      1626998400000,
      97.3216055000018
    ],
    [
      1627084800000,
      95.2719573507527
    ]
  ],
  "floor_price_native": [
    [
      1626912000000,
      0.045
    ],
    [
      1626998400000,
      0.048
    ],
    [
      1627084800000,
      0.045
    ]
  ],
  "h24_volume_usd": [
    [
      1626912000000,
      2860.11552548074
    ],
    [
      1626998400000,
      2143.50836113754
    ],
    [
      1627084800000,
      925.408279066978
    ]
  ],
  "h24_volume_native": [
    [
      1626912000000,
      1.4274
    ],
    [
      1626998400000,
      1.0572
    ],
    [
      1627084800000,
      0.4371
    ]
  ],
  "market_cap_usd": [
    [
      1626912000000,
      33281860.8681357
    ],
    [
      1626998400000,
      38474832.8121067
    ],
    [
      1627084800000,
      44827378.867466
    ]
  ],
  "market_cap_native": [
    [
      1626912000000,
      11012.23
    ],
    [
      1626998400000,
      12709.84
    ],
    [
      1627084800000,
      14220.8
    ]
  ]
}

Changes