GET
/
api
/
v1
/
subnames
/
{fullSubname}
Get Subname by Full Name
curl --request GET \
  --url https://offchain-manager.namespace.ninja/api/v1/subnames/{fullSubname}
{
  "id": "123",
  "fullName": "alice.oppunk.eth",
  "parentName": "oppunk.eth",
  "label": "alice",
  "texts": {
    "email": "alice@example.com"
  },
  "addresses": {
    "ETH": "0x1234...abcd"
  },
  "metadata": {
    "role": "admin"
  },
  "contenthash": "ipfs://Qm...",
  "namehash": "0xabc123..."
}

Path Parameters

fullSubname
string
required

The full subname to retrieve (e.g., alice.oppunk.eth)

Example:

"alice.oppunk.eth"

Response

Subname found

The response is of type object.