Skip to main content
GET
/
ens
/
v1
/
texts
/
{name}
Get ENS Text Records
curl --request GET \
  --url https://resolvio.namespace.ninja/ens/v1/texts/{name}
[
  {
    "key": "avatar",
    "value": "https://example.com/avatar.jpg"
  }
]
Retrieve text records for an ENS name (e.g., avatar, description, keywords). Optionally filter by keys.

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

keys
string[]

Array of text record keys to retrieve (e.g., ["avatar", "description"])

Example:
["avatar", "description", "keywords"]

Response

ENS text records retrieved successfully

key
string
required

Text record key

Example:

"avatar"

value
string
required

Text record value

Example:

"https://example.com/avatar.jpg"