# TzKT Daily Statistics API

> TzKT Daily 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 daily aggregated Tezos blockchain statistics such as transaction volume, fees, and network activity for a given date range.

## Facts

- Endpoint: GET https://x402.tzkt.io/v1/statistics/daily
- 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-daily-statistics-api-6c5cc316
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PWM7Hw1J3nl4vJmxYG6FE

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-daily-statistics-api-6c5cc316
```

Example prompt: Pull the daily Tezos blockchain statistics for January 15, 2024, showing up to 10 results with XTZ values quoted in USD.

## When to prefer this

Use this endpoint when you need historical daily-granularity Tezos network statistics such as transaction volumes, fees, and activity counts. Prefer this over block-level or per-operation endpoints when you want pre-aggregated daily summaries rather than raw individual records. It requires no API key and supports date filtering and currency conversion.

## Known failure modes

- Invalid date format returns a 400 error
- Unsupported quote currency may return empty or error response
- Limit exceeding API maximum returns capped results or error
- No data available for dates before Tezos genesis returns empty array
- Network timeout on large date range queries

## 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 an array of daily statistics objects for the Tezos blockchain, each representing one day's aggregated on-chain data including transaction counts, volumes, fees, and other network metrics. Values can be denominated in a chosen quote currency.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "date": {
   "type": "string",
   "description": "Filter by date (supports .eq .gt .lt)"
  },
  "limit": {
   "type": "integer",
   "description": "Max items to return"
  },
  "quote": {
   "type": "string",
   "description": "Quote currency for XTZ values"
  },
  "offset": {
   "type": "integer",
   "description": "Pagination offset"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "array",
 "items": {
  "type": "object"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tzkt-daily-statistics-api-6c5cc316/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)
