/v1/records
Profile text records for a name
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/ens-api/v1/records" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/ens-api/v1/records", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/ens-api/v1/records");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/ens-api/v1/records",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"name": "nick.eth",
"avatar": "https://euc.li/nick.eth",
"address": "0xb8c2C29ee19D8307cb7255e1Cd9CbDE883A267d5",
"records": {
"pgp": null,
"url": "https://ens.domains/",
"email": "[email protected]",
"github": "arachnid",
"reddit": "nickjohnson",
"discord": "nickjohnson",
"twitter": "nicksdjohnson",
"telegram": "nicksdjohnson",
"description": "Lead developer of ENS & Ethereum Foundation alum. Certified rat tickler. he/him."
},
"wallets": {
"eth": "0xb8c2C29ee19D8307cb7255e1Cd9CbDE883A267d5"
},
"content_hash": "k51qzi5uqu5dgccx524mfjv7znyfsa6g013o6v4yvis9dxnrjbwojc62pt0430"
},
"meta": {
"timestamp": "2026-06-09T11:39:54.416Z",
"request_id": "e2633529-eba0-4c2f-a57c-f806a5e69aec"
},
"status": "ok",
"message": "Records retrieved successfully",
"success": true
}