Get DID name (reverse resolution)

The API will return all DIDs owned by a specific address. If you want to replace the wallet with a user-defined single DID name, please check Get Primary DID name.

Resolve wallet address

get

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
addressstringRequired

The wallet address to resolve.

Example: bc1plhw3qceajqpv2q96zt365z278ce5jyecz0d5zjrnrad96y7c34msk4v7u6
startintegerRequired

The starting index for the paginated results.

Default: 0Example: 0
limitintegerRequired

The number of items to retrieve per page.

Default: 10Example: 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