> ## Documentation Index
> Fetch the complete documentation index at: https://docs.coingecko.com/llms.txt
> Use this file to discover all available pages before exploring further.

# NFTs

> NFT collection floor price, market cap, 24h volume, marketplace tickers and historical charts.

export const OverviewFooter = ({api = "pro"}) => {
  const isDemo = api === "demo";
  return <CardGroup cols={2}>
      <Card title="Full endpoint list" icon="map" href={isDemo ? "/demo/reference/endpoint-overview" : "/reference/endpoint-overview"} horizontal arrow="true">
        Browse every endpoint available in the {isDemo ? "Demo" : "Pro"} API.
      </Card>
      <Card title="Build with AI" icon="robot" href="/ai-integration" horizontal arrow="true">
        Connect AI agents and coding assistants via MCP, SKILL, CLI, and more.
      </Card>
    </CardGroup>;
};

| Endpoint                                                                                                  | Description                                                                            |
| --------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- |
| [/nfts/list](/demo/reference/nfts-list)                                                                   | Query all supported NFTs with ID, contract address, name, asset platform ID and symbol |
| [/nfts/\{id}](/demo/reference/nfts-id)                                                                    | Query NFT data (name, floor price, 24hr volume, etc.) by collection ID                 |
| [/nfts/\{asset\_platform\_id}/contract<br />/\{contract\_address}](/demo/reference/nfts-contract-address) | Query NFT data by collection contract address and asset platform                       |

<br />

<OverviewFooter api="demo" />
