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

# Public Treasury

> Bitcoin and crypto holdings of public companies and governments, with holding charts and transaction history.

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                                                            |
| ----------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------- |
| [/entities/list](/demo/reference/entities-list)                                                                   | Query all supported entities with entity ID, name, symbol, and country |
| [/\{entity}/public\_treasury/\{coin\_id}](/demo/reference/companies-public-treasury)                              | Query public companies' and governments' crypto holdings by coin ID    |
| [/public\_treasury/\{entity\_id}](/demo/reference/public-treasury-entity)                                         | Query public companies' and governments' crypto holdings by entity ID  |
| [/public\_treasury/\{entity\_id}/\{coin\_id}<br />/holding\_chart](/demo/reference/public-treasury-entity-chart)  | Historical crypto holdings chart by entity ID and coin ID              |
| [/public\_treasury/\{entity\_id}<br />/transaction\_history](/demo/reference/public-treasury-transaction-history) | Crypto transaction history by entity ID                                |

<OverviewFooter api="demo" />
