GET
/
nfts
/
markets
💼 NFTs List with Market Data
curl --request GET \
  --url https://pro-api.coingecko.com/api/v3/nfts/markets \
  --header 'x-cg-pro-api-key: <api-key>'
[
  {
    "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
  }
]

Tips

  • You may include values such as per_page and page to specify how many results you would like to show in the responses per page and which page of responses you would like to show.

Note

  • Cache / Update Frequency: every 5 minutes.
  • Exclusive for Paid Plan Subscribers (Analyst, Lite, Pro and Enterprise).
  • CoinGecko equivalent page: https://www.coingecko.com/en/nft.
  • Some collection with low liquidity may not be ranked by Market Cap value, learn more here. Sorting by Mcap ranking will first prioritise Market Cap value of liquid NFT collections, then followed by trading volume of illiquid NFT collections.

Authorizations

x-cg-pro-api-key
string
header
required

Query Parameters

asset_platform_id
string
default:ethereum

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

Example:

"ethereum"

order
enum<string>

sort results by field Default: market_cap_usd_desc

Available options:
h24_volume_native_asc,
h24_volume_native_desc,
h24_volume_usd_asc,
h24_volume_usd_desc,
market_cap_usd_asc,
market_cap_usd_desc
per_page
number

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

page
number

page through results Default: 1

Response

200 - application/json

List all NFTs markets

The response is of type object[].