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

> Top token holders and historical holder count for any onchain token.

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/networks/\{network}/tokens<br />/\{address}/top\_holders](/reference/top-token-holders-token-address)            | Top token holders by token contract address              |
| 💼 [/onchain/networks/\{network}/tokens<br />/\{token\_address}/holders\_chart](/reference/token-holders-chart-token-address) | Historical token holders chart by token contract address |

<OverviewFooter />
