like com.atproto.identity.resolveIdentity but instead of the full didDoc it returns an atproto-relevant subset
Parameters
Output
Encoding
application/jsondid
stringdid
Required
DID, bi-directionally verified if a handle was provided in the query
handle
stringhandle
Required
the validated handle of the account or 'handle.invalid' if the handle did not bi-directionally match the DID document
pds
stringuri
Required
the identity's PDS URL
signing_key
string
Required
the atproto signing key publicKeyMultibase
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"output": {
"schema": {
"type": "object",
"required": [
"did",
"handle",
"pds",
"signing_key"
],
"properties": {
"did": {
"type": "string",
"format": "did",
"description": "DID, bi-directionally verified if a handle was provided in the query"
},
"pds": {
"type": "string",
"format": "uri",
"description": "the identity's PDS URL"
},
"handle": {
"type": "string",
"format": "handle",
"description": "the validated handle of the account or 'handle.invalid' if the handle did not bi-directionally match the DID document"
},
"signing_key": {
"type": "string",
"description": "the atproto signing key publicKeyMultibase"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"identifier"
],
"properties": {
"identifier": {
"type": "string",
"format": "at-identifier",
"description": "handle or DID to resolve"
}
}
},
"description": "like com.atproto.identity.resolveIdentity but instead of the full didDoc it returns an atproto-relevant subset"
}