# 8k4 Protocol — Resolve Agent Identities by Wallet

> 8k4 Protocol — Resolve Agent Identities by Wallet is a paid API for AI agents from api.8k4protocol.com, paid per call via x402, $0.001/call, status down (last checked 2026-09-15).

Returns all ERC-8004 agent registrations associated with a given wallet address, including agent IDs, chains, and creation timestamps.

## Facts

- Endpoint: GET https://api.8k4protocol.com/wallet/%7Bwallet%7D/agents
- Price: $0.001/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/8k4-protocol-resolve-agent-identities-by-wallet-0e9fcf02
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_e2oWCThGi8xMsGemupkKc

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 8k4-protocol-resolve-agent-identities-by-wallet-0e9fcf02
```

Example prompt: Can you look up all the ERC-8004 agents registered to wallet 0xAbC123...def456 and tell me their agent IDs and which chains they're on?

## When to prefer this

Use this endpoint when you need to enumerate all ERC-8004 agent identities associated with a specific wallet address, particularly as a starting point before fetching trust scores or metadata for individual agents. Prefer this over agent-specific endpoints when the agent_id is unknown and only the wallet is available.

## Known failure modes

- Wallet address not found — returns empty array or 404
- Malformed wallet address — returns 400 bad request
- No agents registered to wallet — returns empty array
- Service unavailable — returns 5xx error
- Rate limit exceeded — returns 429

## How this service works

Resolve agent identities and scores by wallet

## Output

Returns a JSON array of agent registration records, each containing the wallet address, agent_id (numeric), chain (e.g. 'base'), and created_at timestamp. Represents every ERC-8004 agent identity associated with the queried wallet.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": [
  {
   "chain": "base",
   "wallet": "0x...",
   "agent_id": 21480,
   "created_at": "2026-01-01T00:00:00+00:00"
  }
 ]
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/8k4-protocol-resolve-agent-identities-by-wallet-0e9fcf02/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.8k4protocol.com](https://www.zero.xyz/host/api.8k4protocol.com/llms.txt)
