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

> Token balances and raw token transfers for any wallet address, with USD value and liquidity per holding across multiple networks.

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/wallets/\{address}/balances](/reference/wallet-token-balances)                             | Query the token balances of a wallet address across networks |
| 💼 [/onchain/networks/\{network}/wallets<br />/\{address}/transfers](/reference/wallet-token-transfers) | Query the token transfers of a wallet address on a network   |

***

### Coming soon

| Endpoint                                                     | Description                                                     |
| ------------------------------------------------------------ | --------------------------------------------------------------- |
| /onchain/networks/\{network}/wallets<br />/\{address}/trades | Trade history of a wallet address on a network                  |
| /onchain/wallets/\{address}/pnl                              | Realized and unrealized PnL of a wallet address across networks |

<OverviewFooter />
