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

# Search & ID Map

> Search coins, categories and markets, and look up the coin, asset platform and currency IDs other endpoints require.

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                                                                           |
| --------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
| [/search](/reference/search-data)                                           | Search for coins, categories and markets on CoinGecko                                 |
| [/coins/list](/reference/coins-list)                                        | Query all supported coins with coin ID, name and symbol                               |
| [/asset\_platforms](/reference/asset-platforms-list)                        | Query all supported asset platforms (blockchain networks)                             |
| [/token\_lists/\{asset\_platform\_id}/all.json](/reference/token-lists)     | Full list of tokens on a blockchain network supported by Ethereum token list standard |
| [/simple/supported\_vs\_currencies](/reference/simple-supported-currencies) | Query all supported currencies on CoinGecko                                           |

<OverviewFooter />
