GET
/
v1
/
resolve
/
{domain}
curl --request GET \
  --url https://api.superlink.me/v1/resolve/{domain} \
  --header 'Authorization: <api-key>'
{
  "contentHash": "<string>",
  "dnsRecords": [
    {
      "name": "firstname.lastname",
      "ttl": 3600,
      "type": "A",
      "value": "192.168.0.1"
    }
  ],
  "domain": "<string>",
  "nameService": "ud",
  "ownerAddress": "<string>",
  "txtRecords": [
    {
      "key": "<string>",
      "value": "<string>"
    }
  ],
  "wallets": [
    {
      "address": "<wallet address>",
      "coin": "BTC",
      "version": "ERC20"
    }
  ]
}

Authorizations

Authorization
string
header
required

Type "Bearer" followed by a space and the JWT token.

Path Parameters

domain
string
required

firstname.lastname

Query Parameters

nameservices
enum<string>[]

superlink,ens,ud

coins
enum<string>[]

BTC,ETH,MATIC

Response

200
application/json

OK

The response is of type object.