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

# Derivatives

> Derivatives exchanges, perpetual and futures tickers, open interest and trading volume.

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                                                               |
| -------------------------------------------------------------------- | ------------------------------------------------------------------------- |
| [/derivatives/exchanges/list](/reference/derivatives-exchanges-list) | Query all supported derivatives exchanges with ID and name                |
| [/derivatives](/reference/derivatives-tickers)                       | Query all tickers from derivatives exchanges                              |
| [/derivatives/exchanges](/reference/derivatives-exchanges)           | Query all derivatives exchanges with data (ID, name, open interest, etc.) |
| [/derivatives/exchanges/\{id}](/reference/derivatives-exchanges-id)  | Query derivatives exchange data by exchange ID                            |

<br />

<OverviewFooter />
