Get names owned by address

Retrieves the list of names owned by a specific address.

GET

Parameters

Path Parameters

blockchain
REQUIRED
string the layer-1 blockchain for the address
address
REQUIRED
string the address to lookup

Query Parameters

unanchored
boolean Include data from unanchored (i.e. unconfirmed) microblocks
Status codeDescription
200Retrieves a list of names owned by the address provided.
4XXDefault Response
cURL
curl -L \
"https://api.hiro.so/v1/addresses/{blockchain}/{address}?unanchored=true" \
-H 'Accept: application/json'
Response
{
"names": [
"muneeb.id"
]
}

How is this guide?