> ## 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 <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 available in the {isDemo ? "Demo" : "Pro"} API.
      </Card>
      <Card title="Build with AI" icon="robot" href="/ai-integration" horizontal arrow="true">
        Connect AI agents and coding assistants via MCP, SKILL, CLI, and more.
      </Card>
    </CardGroup>;
};

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

<br />

<OverviewFooter />
