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

Reverse Resolve

This is an implementation of Reverse DNS Lookup, instead of using an IP address, you provide a Blockchain Wallet Address to find Web3 domains associated with the On-Chain Wallet Address provided.

Endpoint: engine.noto.network/noto/api/v1/reverse-resolve

Method: GET

Parameters:

Param name
Type
Required
Addition Info
Example

walletAddress

String

0xab5801a7d398351b8be11c439e05c5b3259aec9b

network

String

optional

ETHEREUM

provider

String

optional

FREENAME

Return type: ARRAY of OBJECTs

Request Example:

GET /reverse-resolve?walletAddress=0xab5801a7d398351b8be11c439e05c5b3259aec9b&network=ETHEREUM&provider=FREENAME

Response Example:

{
  "result": true,
  "data": [
    {
      "info": {
        "sld": "example",
        "tld": "tld",
        "lastUpdate": "2024-02-03T09:13:30.472Z",
        "CSAMValidation": false,
        "KYC": false,
        "tags": []
      },
      "records":{
        // if any records exist, will look like this example
        "redirect.WEBSITE.0": "https://freename.io",
        "profile.OWNER.fullname": "John Doe",
        "record.TXT.0": "https://ex.ample/",
        "record.A.0": "30.25.212.37"
        "token.ETH.0":"0x0000000000000000000000000000000000000000",
        ...
      },
      "domain": "alessandro.incredibledomain",
      "network": "POLYGON",
      "provider": "FREENAME",
      "ownerAddress": "0x673c4F104F425BEB439EdeEF2e22bDFCEdAD0Ac5",
      "score": 0,
      "spam": false
    },
    {
      ...
    }
  ]
}

Last updated