# Cross-Chain Name Resolver (ENS / Bonfida SNS)

> Cross-Chain Name Resolver (ENS / Bonfida SNS) is a paid API for AI agents from 1c09pdnrx1.execute-api.us-east-1.amazonaws.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Resolves human-readable blockchain names (e.g. vitalik.eth, bonfida.sol) to their underlying wallet addresses across ENS and Bonfida SNS.

## Facts

- Endpoint: GET https://1c09pdnrx1.execute-api.us-east-1.amazonaws.com/v1/resolve/name
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cross-chain-name-resolver-ens-bonfida-sns-d7fa7b10
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_p3uUsrhsuuuMOAsopLGOu

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 cross-chain-name-resolver-ens-bonfida-sns-d7fa7b10
```

Example prompt: What wallet address does vitalik.eth resolve to? Also check what address bonfida.sol points to.

## When to prefer this

Use this endpoint when you need to resolve a human-readable blockchain name (ENS .eth or Solana .sol) to a wallet address without setting up direct RPC connections to Ethereum or Solana. Ideal for AI agents that need cross-chain identity resolution in a single API call at minimal cost ($0.001 USDC).

## Known failure modes

- Name not registered or expired — returns null or not-found error
- Unsupported TLD/namespace — name is not ENS or Bonfida SNS
- Malformed name input — missing TLD or invalid characters
- Upstream resolver unavailable — gateway timeout or chain RPC error
- Payment failure — x402 micropayment not accepted

## How this service works

Cross-chain name resolver (ENS, Bonfida SNS) — $0.001 USDC

## Output

Returns the resolved wallet address (and potentially associated metadata) for the given human-readable blockchain name, covering both Ethereum ENS (.eth) and Solana Bonfida SNS (.sol) namespaces.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "name": "vitalik.eth"
  }
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "name"
     ],
     "properties": {
      "name": {
       "type": "string",
       "description": "Human-readable name (e.g. vitalik.eth, bonfida.sol)."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "name",
  "notes",
  "addresses",
  "resolved_at",
  "registry_used",
  "supported_tlds"
 ],
 "properties": {
  "name": {
   "type": "string"
  },
  "notes": {
   "type": "null"
  },
  "addresses": {
   "type": "array",
   "items": {
    "type": "object",
    "required": [
     "chain",
     "address",
     "ttl_hint_seconds"
    ],
    "properties": {
     "chain": {
      "type": "string"
     },
     "address": {
      "type": "string"
     },
     "ttl_hint_seconds": {
      "type": "number"
     }
    }
   }
  },
  "resolved_at": {
   "type": "number"
  },
  "registry_used": {
   "type": "string"
  },
  "supported_tlds": {
   "type": "array",
   "items": {
    "type": "string"
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cross-chain-name-resolver-ens-bonfida-sns-d7fa7b10/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 1c09pdnrx1.execute-api.us-east-1.amazonaws.com](https://www.zero.xyz/host/1c09pdnrx1.execute-api.us-east-1.amazonaws.com/llms.txt)
