# ENS Name Resolver (klymax402)

> ENS Name Resolver (klymax402) is a paid API for AI agents from klymax402.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Resolves ENS names to Ethereum addresses (and vice versa), returning address, avatar, and profile metadata.

## Facts

- Endpoint: GET https://klymax402.com/api/ens-resolver/api/resolve
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ens-name-resolver-klymax402-d1547b3e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LzcfyIucUL9hF8BvzbgZg

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 ens-name-resolver-klymax402-d1547b3e
```

Example prompt: What Ethereum wallet address does vitalik.eth resolve to, and does it have an avatar set?

## When to prefer this

Use this endpoint when an agent needs to resolve a human-readable .eth name to a machine-readable Ethereum address, or perform a reverse lookup from an address back to an ENS name — especially when you also need avatar/profile metadata in the same call. Prefer this over raw on-chain calls when you want a simple REST interface with no RPC node setup required.

## Known failure modes

- ENS name does not exist or is not registered — returns null or error for address field
- Ethereum address has no reverse ENS record set — name field will be empty
- Malformed ENS name or invalid Ethereum address format — likely returns a validation error
- ENS name exists but has no avatar set — avatar field will be null or empty
- Payment failure via x402 protocol — call not executed

## How this service works

One MCP endpoint gives your AI agent access to 100 APIs -- crypto, DeFi, web, AI, finance and utilities. No API keys, USDC on Base from $0.003/call.

## Output

Returns a JSON object containing the resolved Ethereum address, the ENS name, an avatar URL, the direction of resolution (forward or reverse), and a timestamp of when the resolution was performed.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "name": {
   "type": "string",
   "description": "ENS name to resolve (e.g. vitalik.eth)"
  },
  "address": {
   "type": "string",
   "description": "Ethereum address for reverse resolution (e.g. 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "name": "example",
  "avatar": "example",
  "address": "example",
  "direction": "example",
  "timestamp": "example"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ens-name-resolver-klymax402-d1547b3e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from klymax402.com](https://www.zero.xyz/host/klymax402.com/llms.txt)
