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

# Exchanges

> Centralized exchange data, trading pairs and tickers, and historical exchange volume in BTC.

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                                                            |
| ------------------------------------------------------------------------------------- | ---------------------------------------------------------------------- |
| [/exchanges/list](/reference/exchanges-list)                                          | Query all supported exchanges with ID and name                         |
| [/exchanges](/reference/exchanges)                                                    | Query all supported exchanges with data (ID, name, country, etc.)      |
| [/exchanges/\{id}](/reference/exchanges-id)                                           | Query exchange data and top 100 tickers by exchange ID                 |
| [/exchanges/\{id}/tickers](/reference/exchanges-id-tickers)                           | Query exchange tickers by exchange ID                                  |
| [/exchanges/\{id}/volume\_chart](/reference/exchanges-id-volume-chart)                | Historical volume chart data in BTC by exchange ID                     |
| 💼 [/exchanges/\{id}/volume\_chart/range](/reference/exchanges-id-volume-chart-range) | Historical volume chart data in BTC within a date range by exchange ID |

<br />

<OverviewFooter />
