Skip to main content

ISMEReverse

ISMEReverse provides reverse DID query functionality.

Obtain APIKEY

Please contact info@nft3.com to obtain API authorization.

Note: Please keep the APIKEY secure and ensure request frequency limitation. The current maximum supported QPS/s is 40.

RESTful API

POST https://t0.onebitdev.com/nft3-reverse/api/queryDid?apikey=<your-api-key>

Query DID information by address.

Parameters

  • addresses: A list of valid Ethereum or Solana addresses, supports up to 12

Response

  • message: ok
  • data: A list of DID
    • address: The address
    • did: The corresponding DID

Example

Request

curl https://t0.onebitdev.com/nft3-reverse/api/queryDid?apikey=<your-api-key> \
-X POST \
-H "Content-Type: application/json" \
-d '{"addresses": ["0x3e880f73a2697a0651ea2bca9ba8942c76fa7b21", "3Xu7PpCYJGQFpS5vF9ohSL2WbWwPQGXo68LNAanxYKAx"]}'

Response

{
"code": 0,
"message": "OK",
"data":
[
{
"addr": "ethereum:0x3E880f73A2697A0651EA2bCa9ba8942C76Fa7b21",
"did": "did:nft3:alicev1"
},
{
"addr": "solana:3Xu7PpCYJGQFp1S5vF9ohSL2WbWwPQGXo68LNAanxYKAx",
"did": null
}
]
}