# Blockscout BENS Batch Resolve Addresses

> Blockscout BENS Batch Resolve Addresses is a paid API for AI agents from api.blockscout.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Resolves a batch of blockchain addresses to their human-readable names across multiple chains using Blockscout's Name Service

## Facts

- Endpoint: POST https://api.blockscout.com/services/bens/api/v1/addresses:batch-resolve
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/blockscout-bens-batch-resolve-addresses-d95acab1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zyz7RqPzlBGpf7unmM86F

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 blockscout-bens-batch-resolve-addresses-d95acab1 -d '<json body>'
```

Example prompt: Can you resolve these wallet addresses to their human-readable names using Blockscout — 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045, 0xAb5801a7D398351b8bE11C439e05C5B3259aeC9B, and 0x71C7656EC7ab88b098defB751B7401B5f6d8976F?

## When to prefer this

Use this endpoint when you need to resolve multiple blockchain addresses to human-readable names in a single API call rather than one at a time. Prefer it over single-address lookups when enriching lists of addresses, displaying wallet holders, or annotating transaction history with names across multiple chains via Blockscout's unified name service index.

## Known failure modes

- Empty names map returned if none of the input addresses have registered names
- Invalid address format causes validation error
- Too many addresses in a single batch may result in a timeout or error
- Network or chain unavailability may prevent resolution for some addresses
- Payment failure (402) if x402 micropayment is not properly included

## How this service works

Explore crypto activities with Blockscout's multichain search. Find transactions, addresses, tokens, and dapps across top blockchain networks — your go-to explorer for cross-chain blockchain data

## Output

Returns a map (names object) of input addresses to their resolved human-readable names (e.g. ENS names or other blockchain name service labels). Addresses without registered names may return empty or null entries.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "$ref": "#/definitions/v1BatchResolveAddressesMultichainRequest"
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "names": {}
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/blockscout-bens-batch-resolve-addresses-d95acab1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.blockscout.com](https://www.zero.xyz/host/api.blockscout.com/llms.txt)
