Are you an LLM? Read llms.txt for a summary of the docs, or llms-full.txt for the full context.
Skip to content

GET /names/

List all names owned by an Ethereum address.

Request

GET /names/0x11702b8eF5F882191Af862a7e27096C44A5e2B37

Response

{
  "address": "0x11702b8eF5F882191Af862a7e27096C44A5e2B37",
  "names": [
    {
      "name": "kyy.web3",
      "node": "0x...",
      "expiresAt": "1777179607",
      "expired": false
    },
    {
      "name": "kite.app",
      "node": "0x...",
      "expiresAt": "1779771607",
      "expired": false
    }
  ]
}

Fields

FieldTypeDescription
addressstringInput address
namesarrayAll names currently owned by this address

Name object

FieldTypeDescription
namestringFull name e.g. kyy.web3
nodestringNamehash of the name
expiresAtstringUnix timestamp (seconds)
expiredbooleanWhether the registration expired

Errors

StatusBodyReason
400{ "error": "Invalid Ethereum address" }Not a valid EVM address
429{ "error": "Rate limit exceeded" }Too many requests