> ## Documentation Index
> Fetch the complete documentation index at: https://docs.superlink.me/llms.txt
> Use this file to discover all available pages before exploring further.

# Reverse Resolution

Use this to perform a reverse resolution of a wallet address.

<CodeGroup>
  ```javascript javascript theme={null}
  // See documentation to set up the client first

  let apiInstance = new superlink.ResolutionApi();
  let address = "0xYourWalletAddress";

  apiInstance.resolveDataByAddress(address, {}, (error, data, response) => {
    if (error) {
      console.error(error);
    } else {
      console.log(`${data.domain}`)
      data.wallets.forEach(wallet => {
        console.log(wallet.coin, wallet.address);
      })
    }
  });
  ```

  ```go go theme={null}
  // See documentation to set up the client first

  resp, r, err := superlinkClient.ResolutionAPI.ResolveDataByAddress(context.Background(), address).Execute()
  if err != nil {
    fmt.Fprintf(os.Stderr, "Error when calling `ResolutionAPI.ResolveDataByAddress``: %v\n", err)
    fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
  }

  fmt.Fprintf(os.Stdout, "%s\n", *resp.Domain)

  for _, w := range resp.Wallets {
    fmt.Fprintf(os.Stdout, "%s %s\n", *w.Coin, *w.Address)
  }
  ```

  ```python python theme={null}
  # See documentation to set up the client first

  api_instance = superlink.ResolutionApi(api_client)
  address = '0xYourWalletAddress'

  try:
      api_response = api_instance.resolve_data_by_address(address)
      print(api_response.domain)
      for wallet in api_response.wallets:
          print(wallet.coin.name, wallet.address)
  except Exception as e:
      print("Exception when calling ResolutionApi->resolve_data_by_address: %s\n" % e)
  ```
</CodeGroup>
