NFTs (Beta)

๐Ÿ’ผ NFTs List with Market Data

This endpoint allows you to query all the supported NFT collections with floor price, market cap, volume and market related data on CoinGecko

get/nfts/markets

Query parameters

asset_platform_idstring
Example:ethereum

filter result by asset platform (blockchain network) <br> *refers to /asset_platforms filter=nft

order'h24_volume_native_asc' | 'h24_volume_native_desc' | 'h24_volume_usd_asc' | 'h24_volume_usd_desc' | 'market_cap_usd_asc' | 'market_cap_usd_desc'

sort results by field <br> Default: market_cap_usd_desc

per_pagenumber

total results per page <br> Valid values: any integer between 1 and 250 <br> Default: 100

pagenumber

page through results <br> Default: 1

Response

List all NFTs markets

idstring

NFT collection ID

contract_addressstring

NFT collection contract address

asset_platform_idstring

NFT collection asset platform ID

namestring

NFT collection name

symbolstring

NFT collection symbol

descriptionstring

NFT collection description

native_currencystring

NFT collection native currency

native_currency_symbolstring

NFT collection native currency symbol

market_cap_ranknumber

coin market cap rank

floor_price_in_usd_24h_percentage_changenumber

NFT collection floor price in usd 24 hours percentage change

number_of_unique_addressesnumber

number of unique address owning the NFTs

number_of_unique_addresses_24h_percentage_changenumber

number of unique address owning the NFTs 24 hours percentage change

volume_in_usd_24h_percentage_changenumber

NFT collection volume in usd 24 hours percentage change

total_supplynumber

NFT collection total supply

one_day_salesnumber

NFT collection one day sales

one_day_sales_24h_percentage_changenumber

NFT collection one day sales 24 hours percentage change

one_day_average_sale_pricenumber

NFT collection one day average sale price

one_day_average_sale_price_24h_percentage_changenumber

NFT collection one day average sale price 24 hours percentage change

Example response

[
  {
    "id": "pudgy-penguins",
    "contract_address": "0xBd3531dA5CF5857e7CfAA92426877b022e612cf8",
    "asset_platform_id": "ethereum",
    "name": "Pudgy Penguins",
    "symbol": "PPG",
    "image": {
      "small": "https://coin-images.coingecko.com/nft_contracts/images/38/small/pudgy.jpg?1730778323",
      "small_2x": "https://coin-images.coingecko.com/nft_contracts/images/38/small_2x/pudgy.jpg?1730778323"
    },
    "description": "Pudgy Penguins is a collection of 8,888 unique NFTs featuring cute cartoon penguins, which are generated from a collection of 150 different hand-drawn traits...",
    "native_currency": "ethereum",
    "native_currency_symbol": "ETH",
    "market_cap_rank": 3,
    "floor_price": {
      "native_currency": 12.17,
      "usd": 44360
    },
    "market_cap": {
      "native_currency": 108211,
      "usd": 394267328
    },
    "volume_24h": {
      "native_currency": 402.37,
      "usd": 1466028
    },
    "floor_price_in_usd_24h_percentage_change": 8.27604,
    "floor_price_24h_percentage_change": {
      "usd": 8.27603609555289,
      "native_currency": 1.6277092654424
    },
    "market_cap_24h_percentage_change": {
      "usd": 8.27603609555281,
      "native_currency": 1.6277092654424
    },
    "volume_24h_percentage_change": {
      "usd": 32.6876748821441,
      "native_currency": 24.5404332508984
    },
    "number_of_unique_addresses": 4756,
    "number_of_unique_addresses_24h_percentage_change": 0.10524,
    "volume_in_usd_24h_percentage_change": 32.68767,
    "total_supply": 8888,
    "one_day_sales": 33,
    "one_day_sales_24h_percentage_change": 22.2222222222222,
    "one_day_average_sale_price": 12.1929990290909,
    "one_day_average_sale_price_24h_percentage_change": 1.8967181143714
  }
]

Changes