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

# Coin Charts

> Historical price, market cap, volume, OHLC and supply charts for any coin, by coin ID or token contract address.

export const OverviewFooter = ({api = "pro"}) => {
  const isDemo = api === "demo";
  return <>
      <hr />
      <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 in {isDemo ? "Demo" : "Pro"} API.
        </Card>
        <Card title="Build with AI" icon="robot" href="/ai-integration" horizontal arrow="true">
          Connect AI agents and integration.
        </Card>
      </CardGroup>
    </>;
};

| Endpoint                                                                                                                    | Description                                                                            |
| --------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- |
| [/coins/\{id}/market\_chart](/demo/reference/coins-id-market-chart)                                                         | Historical chart data (price, market cap, 24hr volume) by coin ID                      |
| [/coins/\{id}/market\_chart/range](/demo/reference/coins-id-market-chart-range)                                             | Historical chart data within a time range by coin ID                                   |
| [/coins/\{id}/contract<br />/\{contract\_address}/market\_chart](/demo/reference/contract-address-market-chart)             | Historical chart data by asset platform and token contract address                     |
| [/coins/\{id}/contract<br />/\{contract\_address}/market\_chart/range](/demo/reference/contract-address-market-chart-range) | Historical chart data within a time range by asset platform and token contract address |
| [/coins/\{id}/ohlc](/demo/reference/coins-id-ohlc)                                                                          | OHLC chart by coin ID                                                                  |

<OverviewFooter api="demo" />
