Skip to main content
GET
/
ens
/
v1
/
addresses
/
{name}
Get ENS Addresses
curl --request GET \
  --url https://resolvio.namespace.ninja/ens/v1/addresses/{name}
[
  {
    "coin": 60,
    "name": "eth",
    "address": "0x742d35Cc6634C0532925a3b8D4C9db96C4b4d8b6"
  }
]
Retrieve cryptocurrency addresses (e.g., ETH, BTC) associated with an ENS name. Optionally filter by coin types.

Path Parameters

name
string
required

ENS name (e.g., "vitalik.eth")

Required string length: 6 - 256
Example:

"vitalik.eth"

Query Parameters

noCache
boolean
default:false

Skip cache and fetch fresh data

coins
number[]

Array of coin types to retrieve (e.g., [60, 0] for ETH and BTC)

Example:
[60, 0]

Response

ENS addresses retrieved successfully

coin
number
required

Coin type identifier (e.g., 60 for ETH, 0 for BTC)

Example:

60

name
string
required

Human-readable coin name

Example:

"eth"

address
string
required

Cryptocurrency address

Example:

"0x742d35Cc6634C0532925a3b8D4C9db96C4b4d8b6"