> ## 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.

# Coins

> Coin metadata, market data, tickers, historical snapshots, new listings and top gainers and losers.

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                                                                               |
| ------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- |
| [/coins/markets](/reference/coins-markets)                                      | Query all supported coins with price, market cap, volume and market data                  |
| [/coins/\{id}](/reference/coins-id)                                             | Query all metadata and market data of a coin by coin ID                                   |
| [/coins/\{id}/contract/\{contract\_address}](/reference/coins-contract-address) | Query all metadata and market data of a coin by asset platform and token contract address |
| [/coins/\{id}/tickers](/reference/coins-id-tickers)                             | Query coin tickers on both CEX and DEX by coin ID                                         |
| [/coins/\{id}/history](/reference/coins-id-history)                             | Query historical data (price, market cap, 24hr volume, etc.) at a given date by coin ID   |
| 💼 [/coins/list/new](/reference/coins-list-new)                                 | Query the latest 200 coins recently listed on CoinGecko                                   |
| 💼 [/coins/top\_gainers\_losers](/reference/coins-top-gainers-losers)           | Query top 30 coins with largest price gain and loss by time duration                      |
| 💼 [/coins/\{id}/supply\_breakdown](/reference/coins-id-supply-breakdown)       | Query the supply breakdown of a coin based on provided coin ID                            |

<br />

<OverviewFooter />
