Resolve a handle to a DID.
Parameters
Output
Encoding
application/jsondid
stringdid
Required
A decentralized identifier (DID).
Errors
HandleNotFound
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"errors": [
{
"name": "HandleNotFound"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"did"
],
"properties": {
"did": {
"type": "string",
"format": "did"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"handle"
],
"properties": {
"handle": {
"type": "string",
"format": "handle"
}
}
},
"description": "Resolve a handle to a DID."
}