# TzKT API – Tezos Account Activation Operations

> TzKT API – Tezos Account Activation Operations 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).

Fetches a list of account activation operations on the Tezos blockchain, filterable by block level, account, and paginated.

## Facts

- Endpoint: GET https://x402.tzkt.io/v1/operations/activations
- 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-api-tezos-account-activation-operations-ee059aff
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_em-llHUGZYP-9lkBQqL0v

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-api-tezos-account-activation-operations-ee059aff
```

Example prompt: Pull me the last 20 activation operations on Tezos, filtered to the account tz1abc123XYZ, starting from block level 500000.

## When to prefer this

Use this endpoint when you specifically need account activation operations on the Tezos blockchain — i.e., when an account that was funded via a fundraiser or genesis allocation is being activated for the first time. Prefer this over general Tezos operation queries when the user's intent is narrowly focused on account activation events. TzKT is well-regarded for its fast, comprehensive Tezos indexing and requires no API key, making it ideal for quick lookups.

## Known failure modes

- Invalid account address format returns empty array or 400 error
- Block level out of range returns empty results
- Very large limit values may be capped or return partial results
- Network or indexer downtime results in 5xx errors
- Payment failure via x402 protocol blocks access with 402 response

## 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 array of account activation operation objects, each containing details such as the operation hash, block level, timestamp, activated account address, and any associated balance or metadata.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "level": {
   "type": "string",
   "description": "Filter by block level"
  },
  "limit": {
   "type": "integer",
   "description": "Max items to return"
  },
  "offset": {
   "type": "integer",
   "description": "Pagination offset"
  },
  "account": {
   "type": "string",
   "description": "Filter by account address"
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tzkt-api-tezos-account-activation-operations-ee059aff/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)
