Get DID name (reverse resolution)
Retrieve all DIDs corresponding to the requested wallet address. This value will be consistent with the latest block height a short time after the block has been confirmed.
Query parameters
addressstringRequiredExample:
The wallet address to resolve.
bc1plhw3qceajqpv2q96zt365z278ce5jyecz0d5zjrnrad96y7c34msk4v7u6
startintegerRequiredDefault:
The starting index for the paginated results.
0
Example: 0
limitintegerRequiredDefault:
The number of items to retrieve per page.
10
Example: 10
Responses
200
Successful operation
application/json
get
GET /v1/resolveAddress HTTP/1.1
Host: open-api.b137.io
Accept: */*
200
Successful operation
{
"code": 0,
"data": {
"list": [
"did1",
"did2",
"gene"
],
"total": 3
}
}
Last updated