Skip to main content
POST
/
ens
/
v1
/
reverse
/
bulk
Bulk Reverse Resolve
curl --request POST \
  --url https://resolvio.namespace.ninja/ens/v1/reverse/bulk \
  --header 'Content-Type: application/json' \
  --data '
{
  "addresses": [
    "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045",
    "0x225f137127d9067788314bc7fcc1f36746a3c3B5"
  ],
  "noCache": false
}
'
{
  "result": [
    {
      "hasReverseRecord": true,
      "address": "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045",
      "name": "vitalik.eth"
    }
  ]
}
Resolve multiple Ethereum addresses to their primary ENS names in a single request. Use this when you need to resolve many addresses (e.g., a list of wallet holders or transaction participants) with one API call.

Body

application/json

Request containing array of addresses to reverse resolve

addresses
string[]
required
Example:
[
"0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045",
"0x225f137127d9067788314bc7fcc1f36746a3c3B5"
]
noCache
boolean
default:false

Skip cache and fetch fresh data

Response

Bulk reverse resolution completed successfully

result
object[]
required

Array of reverse resolution results