# TzKT Baking Operations API

> TzKT Baking Operations 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-15).

Retrieves baking operations from the Tezos blockchain, filterable by baker address and block level

## Facts

- Endpoint: GET https://x402.tzkt.io/v1/operations/baking
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tzkt-baking-operations-api-89b27f86
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_STDoZbVYBwGUoQu1tWbG-

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-baking-operations-api-89b27f86
```

Example prompt: Can you pull the last 20 baking operations from TzKT for the Tezos baker address tz1aRoaRhSpRYvFdyvgWLL6TGyRoGF51wDjM?

## When to prefer this

Use this endpoint when you need structured, indexed data about Tezos baking operations specifically — it's faster and more queryable than raw Tezos node RPC calls, requires no API key, and supports filtering by baker and block level. Prefer it over generic blockchain explorers when you need programmatic access to baker-level operation history at scale.

## Known failure modes

- Invalid baker address format returns empty array or 400 error
- Block level out of range returns empty array
- Payment failure (402) if x402 micropayment not properly attached
- Rate limiting or timeout on very large result sets
- Offset beyond total record count returns empty array

## 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 paginated array of baking operation objects from the Tezos blockchain, each containing details such as baker address, block level, block hash, timestamp, reward amounts, and other operation-specific metadata.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "baker": {
   "type": "string",
   "description": "Filter by baker address"
  },
  "level": {
   "type": "string",
   "description": "Filter by block level"
  },
  "limit": {
   "type": "integer",
   "description": "Max items to return"
  },
  "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-baking-operations-api-89b27f86/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)
