# TzKT Current Statistics API

> TzKT Current Statistics API is a paid API for AI agents from x402.tzkt.io, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Returns the current Tezos network statistics including total supply, circulating supply, total burned, and total locked XTZ.

## Facts

- Endpoint: GET https://x402.tzkt.io/v1/statistics/current
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tzkt-current-statistics-api-71003ee7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-LxiCLdQQ8zHnw7eCFqdf

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability tzkt-current-statistics-api-71003ee7
```

Example prompt: What is the current total and circulating supply of XTZ on the Tezos network, and how much has been burned so far? Show the values quoted in USD.

## When to prefer this

Choose this endpoint when you need real-time, current Tezos network-level token statistics (supply, burn, lock) without needing to sign up or obtain an API key. It is ideal for dashboards, monitoring agents, and DeFi tools that need up-to-date Tezos economic data. Prefer this over general blockchain explorers when you specifically need structured, machine-readable supply data for Tezos.

## Known failure modes

- Invalid quote currency parameter returns an error or unexpected output
- Network downtime or indexer lag may cause stale data
- Payment failure via x402 protocol prevents access
- Rate limiting if too many calls are made in quick succession

## How this service works

TzKT is a comprehensive Tezos blockchain indexer API. Access blocks, operations, accounts, contracts, bigmaps, delegates, tokens and network stats through a fast REST API. No signup or API key required.

## Output

Returns a JSON object with four integer fields: totalBurned (XTZ burned from the network), totalLocked (XTZ locked in contracts or staking), totalSupply (total XTZ in existence), and circulatingSupply (XTZ actively circulating). Values may be denominated in the requested quote currency (e.g. USD, EUR) if the quote parameter is provided.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "quote": {
   "type": "string",
   "description": "Quote currency for XTZ values"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "totalBurned": {
   "type": "integer"
  },
  "totalLocked": {
   "type": "integer"
  },
  "totalSupply": {
   "type": "integer"
  },
  "circulatingSupply": {
   "type": "integer"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tzkt-current-statistics-api-71003ee7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.tzkt.io](https://www.zero.xyz/host/x402.tzkt.io/llms.txt)
