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

# Global

> Total crypto market cap, volume, DeFi dominance and historical global market cap 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                                                                         |
| ------------------------------------------------------------------- | ----------------------------------------------------------------------------------- |
| [/global](/reference/crypto-global)                                 | Query global crypto data (active cryptocurrencies, markets, total market cap, etc.) |
| [/global/decentralized\_finance\_defi](/reference/global-defi)      | Query top 100 global DeFi data (market cap, trading volume)                         |
| 💼 [/global/market\_cap\_chart](/reference/global-market-cap-chart) | Historical global market cap and volume data                                        |

<br />

<OverviewFooter />
