For the complete documentation index, see llms.txt. This page is also available as Markdown.

Get a User's Domain Names (Space ID)

This endpoint retrieves the domain names associated with a given blockchain address across multiple networks (Ethereum, BSC, Arbitrum). It returns the domain names for each network if they exist.

GET https://api.alturanft.com/api/v2/spaceid/getDomain/:address

Path Parameters

Name
Type
Description

address*

String

address of the user

{
  "success": true,
  "body": {
    "name": "example.eth",
    "nameBsc": "example.bnb",
    "nameArb": "example.arb"
  }
}
{
  "success": false,
  "error": "Error description"
}

Space ID is used for this feature. Check them out: https://space.id/

Last updated