# TzKT Tezos Account Delegators Lookup

> TzKT Tezos Account Delegators Lookup 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 list of delegators (accounts that have delegated their stake) for a given Tezos baker/delegate address

## Facts

- Endpoint: GET https://x402.tzkt.io/v1/accounts/%7Baddress%7D/delegators
- 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-tezos-account-delegators-lookup-77f9e8e0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XgzMT3mh0qTSIr-3REc4i

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-tezos-account-delegators-lookup-77f9e8e0
```

Example prompt: Show me the first 50 delegators for the Tezos baker at address tz1YCABRTa6H8PLKx2EtDWeCGPaKxR6cCGws using TzKT.

## When to prefer this

Use this endpoint when you need to enumerate all accounts delegating stake to a specific Tezos baker or delegate address. Ideal for building staking dashboards, analyzing baker influence, or auditing delegation distributions on the Tezos blockchain. Prefer this over general account endpoints when delegation-specific data is the focus.

## Known failure modes

- Invalid or malformed Tezos address returns 400 or empty array
- Address that is not a baker/delegate may return an empty delegator list
- Exceeding pagination limits may result in truncated or error responses
- Network or indexer downtime returns 5xx errors
- Payment failure via x402 protocol blocks the request

## 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

An array of delegator objects, each representing an account that has delegated stake to the specified Tezos address. Each object typically includes the delegator's address, their delegated balance, and related delegation metadata. Results are paginated via limit and offset parameters.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "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-tezos-account-delegators-lookup-77f9e8e0/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)
