# Reverse Resolve

This is an implementation of [Reverse DNS Lookup](https://en.wikipedia.org/wiki/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:** <mark style="color:blue;background-color:green;">`engine.noto.network/noto/api/v1/reverse-resolve`</mark>

### **Method:** <mark style="color:green;">`GET`</mark>

### **Parameters:**

<table><thead><tr><th width="156">Param name</th><th width="94">Type</th><th width="100">Required</th><th width="163">Addition Info</th><th>Example</th></tr></thead><tbody><tr><td>walletAddress</td><td>String</td><td>✅</td><td></td><td>0xab5801a7d398351b8be11c439e05c5b3259aec9b</td></tr><tr><td>network</td><td>String</td><td><em>optional</em></td><td><a href="../supported-networks">Available Options</a></td><td><code>ETHEREUM</code></td></tr><tr><td>provider</td><td>String</td><td><em>optional</em></td><td><a href="../supported-domain-namespaces">Available Options</a></td><td><code>FREENAME</code></td></tr></tbody></table>

## Return type: <mark style="color:orange;">**ARRAY of OBJECTs**</mark>

### **Request Example:**

{% code fullWidth="false" %}

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

{% endcode %}

### **Response Example:**

```json
{
  "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
    },
    {
      ...
    }
  ]
}

```
