Get associated TLD of a DID
Retrieve all communities a DID has joined (binded top-level domains). This data will be consistent with the latest block height a short time after the block has been confirmed.
Query parameters
didstringRequiredExample:
The DID name to query.
revo
startintegerOptionalDefault:
The starting index for the paginated results.
0
Example: 0
limitintegerOptionalDefault:
The number of items to retrieve per page.
10
Example: 10
Responses
200
Successful operation
application/json
get
GET /v1/getBindedTLD HTTP/1.1
Host: open-api.b137.io
Accept: */*
200
Successful operation
{
"code": 0,
"data": {
"list": [
".b137",
".ink"
],
"total": 2
}
}
Last updated