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

# Onchain Search & ID Map

> Search DEX pools and look up the network and DEX identifiers the onchain 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                                                           |
| ----------------------------------------------------------- | --------------------------------------------------------------------- |
| [/onchain/search/pools](/reference/search-pools)            | Search pools by pool address, token name, symbol, or contract address |
| [/onchain/networks](/reference/networks-list)               | All supported networks on GeckoTerminal                               |
| [/onchain/networks/\{network}/dexes](/reference/dexes-list) | All supported DEXs by network                                         |

<OverviewFooter />
