app.didpic.identity.resolveHandle

lexicons.didpic.app

Documentation

Resolve a handle to a DID.

main query

Resolve a handle to a DID.

Parameters

handle string handle Required

An AT Protocol handle (e.g., alice.bsky.social).

Output

Encodingapplication/json
did 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.

Base URL for XRPC calls (e.g., https://api.bsky.social)
Parameters
An AT Protocol handle (e.g., alice.bsky.social).
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."
}

Lexicon Garden

@