get_nfts_market_chart
Query historical market data for NFT collections, including floor price, market cap, and 24-hour volume, for a specified number of days using the CoinGecko MCP Server.
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 query historical market data of a NFT collection, including floor price, market cap, and 24hr volume, by number of days away from now
Response Schema
{
type: 'object',
properties: {
floor_price_native: {
type: 'array',
description: 'NFT collection floor price in native currency',
items: {
type: 'array',
items: {
type: 'number'
}
}
},
floor_price_usd: {
type: 'array',
description: 'NFT collection floor price in usd',
items: {
type: 'array',
items: {
type: 'number'
}
}
},
h24_volume_native: {
type: 'array',
description: 'NFT collection volume in 24 hours in native currency',
items: {
type: 'array',
items: {
type: 'number'
}
}
},
h24_volume_usd: {
type: 'array',
description: 'NFT collection volume in 24 hours in usd',
items: {
type: 'array',
items: {
type: 'number'
}
}
},
market_cap_native: {
type: 'array',
description: 'NFT collection market cap in native currency',
items: {
type: 'array',
items: {
type: 'number'
}
}
},
market_cap_usd: {
type: 'array',
description: 'NFT collection market cap in usd',
items: {
type: 'array',
items: {
type: 'number'
}
}
}
}
}
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| days | Yes | data up to number of days <br> Valid values: any integer or max | |
| id | Yes | ||
| 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/). |