A wallet address to query for reverse record
Resolution Service (1.0.0)
The Resolution Service provides APIs for resolving domain metadata and records from multiple blockchain and naming services. The service currently supports the following naming services:
Unstoppable Domain's UNS and CNS with TLDs: .x, .polygon, .nft, .crypto, .blockchain, .bitcoin, .dao, .888, .wallet, .binanceus, .hi, .klever, .kresus, .anime, .manga, .go, .zil
Ethereum Naming Service - ENS with TLDs: .eth
The service caches blockchain events in a database for easy retrieval without accessing any blockchain APIs. With the Resolution Service API, you can quickly build applications directly communicating with the blockchain to get UD domain data with a single API request.
- Productionhttps://api.unstoppabledomains.com/resolve/reverse/{address}
- Sandboxhttps://api.ud-sandbox.com/resolve/reverse/{address}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
curl -i -X GET \
'https://api.unstoppabledomains.com/resolve/reverse/{address}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'{ "data": [ { … } ] }
Request
Get Records for Multiple Domains
The API only supports Unstoppable Domains' naming services for backward compatibility. A new API version is coming soon for other naming services
Unstoppable Domain's UNS and CNS with TLDs: .x, .polygon, .nft, .crypto, .blockchain, .bitcoin, .dao, .888, .wallet, .binanceus, .hi, .klever, .kresus, .anime, .manga, .go, .zil
Unstoppable Domain's Zilliqa with TLDs: zil
**Note:** The API should be used in a backend system. If you need the data in client apps, please build a proxy backend to hide the API key.
See this list for all the resolution keys supported
Domain ending supported such as crypto, x, or polygon. See supported tlds for the full list
BulkReverseQueryParams
- Productionhttps://api.unstoppabledomains.com/resolve/reverse/query
- Sandboxhttps://api.ud-sandbox.com/resolve/reverse/query
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
curl -i -X POST \
'https://api.unstoppabledomains.com/resolve/reverse/query?data=string%2Cstring%2Cx&sortBy=string&sortDirection=string&startingAfter=string&perPage=0' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"addresses": [
"string"
]
}'