NFTs (Beta)

๐Ÿ’ผ NFTs Collection Tickers by ID

This endpoint allows you to query the latest floor price and 24hr volume of a NFT collection, on each NFT marketplace, e.g. OpenSea and LooksRare

get/nfts/{id}/tickers

Path parameters

idstring required
Example:pudgy-penguins

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

Response

Get NFTs tickers

Example response

{
  "tickers": [
    {
      "floor_price_in_native_currency": 44.21,
      "h24_volume_in_native_currency": 0,
      "native_currency": "ethereum",
      "native_currency_symbol": "ETH",
      "updated_at": "2024-04-08T15:36:00.225Z",
      "nft_marketplace_id": "looksrare",
      "name": "LooksRare",
      "image": "https://assets.coingecko.com/nft_marketplaces/images/2/small/Looksrare.jpg?1686193414",
      "nft_collection_url": "https://looksrare.org/collections/0xBd3531dA5CF5857e7CfAA92426877b022e612cf8?ref=9247712"
    },
    {
      "floor_price_in_native_currency": 12.17,
      "h24_volume_in_native_currency": 402.37,
      "native_currency": "ethereum",
      "native_currency_symbol": "ETH",
      "updated_at": "2024-04-08T12:28:11.797Z",
      "nft_marketplace_id": "blur",
      "name": "Blur",
      "image": "https://assets.coingecko.com/nft_marketplaces/images/20/small/blur_logo.jpg?1690993708",
      "nft_collection_url": "https://blur.io/collection/pudgypenguins"
    },
    {
      "floor_price_in_native_currency": 12.84,
      "h24_volume_in_native_currency": 0,
      "native_currency": "ethereum",
      "native_currency_symbol": "ETH",
      "updated_at": "2024-04-08T12:28:11.897Z",
      "nft_marketplace_id": "opensea",
      "name": "OpenSea",
      "image": "https://assets.coingecko.com/nft_marketplaces/images/1/small/Opensea.png?1686193426",
      "nft_collection_url": "https://opensea.io/collection/pudgypenguins"
    },
    {
      "floor_price_in_native_currency": 199,
      "h24_volume_in_native_currency": 0,
      "native_currency": "ethereum",
      "native_currency_symbol": "ETH",
      "updated_at": "2024-04-08T12:28:11.979Z",
      "nft_marketplace_id": "x2y2",
      "name": "X2Y2",
      "image": "https://assets.coingecko.com/nft_marketplaces/images/21/small/Logo.png?1693192556",
      "nft_collection_url": "https://x2y2.io/collection/0xBd3531dA5CF5857e7CfAA92426877b022e612cf8"
    }
  ]
}

Changes