# Zapper Account Identity Resolver

> Zapper Account Identity Resolver is a paid API for AI agents from public.zapper.xyz, paid per call via x402, $0.001125/call, status down (last checked 2026-09-15).

Resolves on-chain social identities (ENS, Farcaster, Lens, Basenames) associated with a given wallet address.

## Facts

- Endpoint: POST https://public.zapper.xyz/x402/account-identity
- Price: $0.001125/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/public-zapper-xyz-d1ba3506
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_R-WPIYN-aJQSGBRX8NvgX

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 public-zapper-xyz-d1ba3506 -d '<json body>'
```

Example prompt: What are the on-chain social identities for wallet address 0x1234abcd...? I want to know their ENS name, Farcaster handle, Lens profile, and Basename if any exist.

## When to prefer this

Use this endpoint when you need to resolve human-readable or social identity context for an Ethereum wallet address across multiple web3 social protocols simultaneously (ENS, Farcaster, Lens, Basenames). Prefer this over single-protocol resolvers when you want a unified identity profile across all major on-chain social graphs in one call.

## Known failure modes

- Wallet address has no associated social identities — returns empty or null identity fields
- Invalid or malformed wallet address — returns 400 or validation error
- Address not found on supported networks — no results returned
- Payment failure via x402 protocol — request rejected without USDC payment
- Rate limiting or service unavailability — 429 or 503 response

## How this service works

Get social identity (ENS, Farcaster, Lens, Basenames) for a specific address.

## Output

Returns resolved on-chain social identity information for the given wallet address, including any associated ENS names, Farcaster usernames, Lens handles, and Basenames registered to that address.

## Example request

```json
{
 "input": {
  "body": {
   "address": "0x1234567890123456789012345678901234567890"
  },
  "type": "http",
  "method": "POST",
  "bodyType": "json"
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "address": {
   "type": "string",
   "description": "The 0x wallet address to resolve identity for"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/public-zapper-xyz-d1ba3506/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from public.zapper.xyz](https://www.zero.xyz/host/public.zapper.xyz/llms.txt)
