get_markets_nfts
Query NFT collections on CoinGecko to retrieve market data including floor prices, market capitalization, trading volume, and related metrics for analysis and tracking.
Instructions
When using this tool, always use the jq_filter parameter to reduce the response size and improve performance.
Only omit if you're sure you don't need the data.
This endpoint allows you to query all the supported NFT collections with floor price, market cap, volume and market related data on CoinGecko
Response Schema
{
$ref: '#/$defs/nft_get_markets_response',
$defs: {
nft_get_markets_response: {
type: 'array',
items: {
type: 'object',
properties: {
id: {
type: 'string',
description: 'NFT collection ID'
},
asset_platform_id: {
type: 'string',
description: 'NFT collection asset platform ID'
},
contract_address: {
type: 'string',
description: 'NFT collection contract address'
},
description: {
type: 'string',
description: 'NFT collection description'
},
floor_price: {
type: 'object',
description: 'NFT collection floor price',
properties: {
native_currency: {
type: 'number'
},
usd: {
type: 'number'
}
}
},
floor_price_24h_percentage_change: {
type: 'object',
description: 'NFT collection floor price 24 hours percentage change',
properties: {
native_currency: {
type: 'number'
},
usd: {
type: 'number'
}
}
},
floor_price_in_usd_24h_percentage_change: {
type: 'number',
description: 'NFT collection floor price in usd 24 hours percentage change'
},
image: {
type: 'object',
description: 'NFT collection image url',
properties: {
small: {
type: 'string'
},
small_2x: {
type: 'string'
}
}
},
market_cap: {
type: 'object',
description: 'NFT collection market cap',
properties: {
native_currency: {
type: 'number'
},
usd: {
type: 'number'
}
}
},
market_cap_24h_percentage_change: {
type: 'object',
description: 'NFT collection market cap 24 hours percentage change',
properties: {
native_currency: {
type: 'number'
},
usd: {
type: 'number'
}
}
},
market_cap_rank: {
type: 'number',
description: 'coin market cap rank'
},
name: {
type: 'string',
description: 'NFT collection name'
},
native_currency: {
type: 'string',
description: 'NFT collection native currency'
},
native_currency_symbol: {
type: 'string',
description: 'NFT collection native currency symbol'
},
number_of_unique_addresses: {
type: 'number',
description: 'number of unique address owning the NFTs'
},
number_of_unique_addresses_24h_percentage_change: {
type: 'number',
description: 'number of unique address owning the NFTs 24 hours percentage change'
},
one_day_average_sale_price: {
type: 'number',
description: 'NFT collection one day average sale price'
},
one_day_average_sale_price_24h_percentage_change: {
type: 'number',
description: 'NFT collection one day average sale price 24 hours percentage change'
},
one_day_sales: {
type: 'number',
description: 'NFT collection one day sales'
},
one_day_sales_24h_percentage_change: {
type: 'number',
description: 'NFT collection one day sales 24 hours percentage change'
},
symbol: {
type: 'string',
description: 'NFT collection symbol'
},
total_supply: {
type: 'number',
description: 'NFT collection total supply'
},
volume_24h: {
type: 'object',
description: 'NFT collection volume in 24 hours',
properties: {
native_currency: {
type: 'number'
},
usd: {
type: 'number'
}
}
},
volume_24h_percentage_change: {
type: 'object',
description: 'NFT collection volume in 24 hours percentage change',
properties: {
native_currency: {
type: 'number'
},
usd: {
type: 'number'
}
}
},
volume_in_usd_24h_percentage_change: {
type: 'number',
description: 'NFT collection volume in usd 24 hours percentage change'
}
}
}
}
}
}
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| asset_platform_id | No | filter result by asset platform (blockchain network) *refers to [`/asset_platforms`](/reference/asset-platforms-list) filter=`nft` | |
| order | No | sort results by field Default: `market_cap_usd_desc` | |
| page | No | page through results Default: `1` | |
| per_page | No | total results per page Valid values: any integer between 1 and 250 Default: `100` | |
| jq_filter | No | A jq filter to apply to the response to include certain fields. Consult the output schema in the tool description to see the fields that are available. For example: to include only the `name` field in every object of a results array, you can provide ".results[].name". For more information, see the [jq documentation](https://jqlang.org/manual/). |