# TzKT Tezos Account Contracts Lookup

> TzKT Tezos Account Contracts 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 a paginated list of contracts originated by or associated with a specific Tezos account address

## Facts

- Endpoint: GET https://x402.tzkt.io/v1/accounts/%7Baddress%7D/contracts
- 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-contracts-lookup-77f5112b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LbrpnpHnhsr51sRCQsK3X

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-contracts-lookup-77f5112b
```

Example prompt: Can you pull up all the smart contracts originated by the Tezos address tz1abc123... on TzKT, showing the first 20 sorted by time descending?

## When to prefer this

Use this endpoint when you need to enumerate smart contracts originated by or attributed to a specific Tezos account address. Prefer this over general contract search endpoints when you already have a known account address and want to see all its associated contracts. Ideal for wallet explorers, DeFi dashboards, auditing smart contract deployments, or building developer tooling on Tezos.

## Known failure modes

- Invalid Tezos address format returns 400 or empty array
- Address not found on-chain returns empty array
- Invalid sort field or direction returns 400 error
- Limit or offset out of bounds returns 400 error
- Network or upstream indexer unavailability returns 5xx error
- Payment failure (insufficient USDC balance) blocks the request via x402

## 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 contract objects associated with the given Tezos account address, each containing contract details such as address, kind, balance, and metadata. Results are paginated and can be sorted and offset as specified.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "sort": {
   "type": "string",
   "description": "Sorting field and direction"
  },
  "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-contracts-lookup-77f5112b/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)
