🚨Resolver

  1. Fetch Domain Details by Domain Name v2

  • GET /api/v1/resolver/FNS/{domainName}

  • Resolve a specific domain by its name.

Path Parameters

Parameter

Type

Description

domainName

string

[Required] The name of the domain to resolve.

e.g. api/v1/resolver/FNS/cederico.metaverse

Response

200 OK

{
  "timestamp": "2026-03-13T14:47:09.575199531",
  "data": {
    "name": "cederico.metaverse",
    "asciiName": "cederico.metaverse",
    "level": "SLD",
    "namespace": "FNS",
    "network": "polygon",
    "tokenId": "27852860280769187492768842851433555806350745604062440243777647496936527137670",
    "owner": "0x673c4f104f425beb439edeef2e22bdfcedad0ac5",
    "resolvedAddress": "0x673c4f104f425beb439edeef2e22bdfcedad0ac5",
    "registrationDate": "2022-10-30T11:32:12.621",
    "expirationDate": null,
    "records": [
      {
        "key": null,
        "type": "A",
        "value": "34.22.218.54"
      }
    ]
  }
}

  1. Fetch Zone Details by Zone Name v1

  • GET /api/v1/resolver/resolve/{zoneName}

  • Resolve a specific zone by its name.

Path Parameters

Parameter

Type

Description

zoneName

string

[Required] The name of the zone to resolve.

Response

200 OK

  1. Fetch Zone Details by Address

  • GET /api/v1/resolver/resolve/address/{address}

  • Resolve a specific zone by blockchain address.

Path Parameters

Parameter

Type

Description

address

string

[Required] The address of the zone to resolve.

Response

200 OK

3. Single Namespace Resolver

  • GET /api/v1/resolver/{namespace}/{zoneName}

  • Resolve a specific zone by its name in a given namespace. Available namespace: Freename (FNS), Unstoppable Domains (UD) and Ethereum Name Space (ENS).

  • If a domain is in custody, it returns as resolved address the wallet address passed as body parameter to the endpoint: /api/v1/resolver/{asciiName}

Path Parameters

Parameter

Type

Description

namespace

string

[Required] The acronym of the namespace in which perform resolution. FNS UD ENS

zoneName

string

[Required] The name of the zone to resolve.

Response

200 OK FNS Example:

Response

UD Example:

ENS Example:

Last updated