Get names owned by address

Retrieves the list of names owned by a specific address.

GET

/v1/addresses/{blockchain}/{address}

Retrieves a list of names owned by the address provided.

Path parameters

blockchain
Required
string

The layer-1 blockchain for the address

Example: "bitcoin"

address
Required
string

The address to lookup

Example: "1QJQxDas5JhdiXhEbNS14iNjr8auFT96GP"
Status codeDescription
200Success
404Error
Terminal
curl -X GET "https://api.mainnet.hiro.so/v1/addresses/bitcoin/1QJQxDas5JhdiXhEbNS14iNjr8auFT96GP"

Retrieves a list of names owned by the address provided.

Example response
{
  "names": [
    "string"
  ]
}