app.didpic.actor.exists

lexicons.didpic.app

Documentation

Lightweight existence check: returns 200 if the actor is a known, active didpic user (same activity filter as the admin Users page). Designed for the image CDN's known-DID gate where the heavier getProfilePublic was too slow.

main query

Lightweight existence check: returns 200 if the actor is a known, active didpic user (same activity filter as the admin Users page). Designed for the image CDN's known-DID gate where the heavier getProfilePublic was too slow.

Parameters

actor string did Required

DID of the actor to check. Handles are not accepted.

Output

Encodingapplication/json
did stringdid Required

A decentralized identifier (DID).

Errors

InvalidActor
ActorNotFound
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
DID of the actor to check. Handles are not accepted.
View raw schema
{
  "type": "query",
  "errors": [
    {
      "name": "InvalidActor"
    },
    {
      "name": "ActorNotFound"
    }
  ],
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "did"
      ],
      "properties": {
        "did": {
          "type": "string",
          "format": "did"
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "actor"
    ],
    "properties": {
      "actor": {
        "type": "string",
        "format": "did",
        "description": "DID of the actor to check. Handles are not accepted."
      }
    }
  },
  "description": "Lightweight existence check: returns 200 if the actor is a known, active didpic user (same activity filter as the admin Users page). Designed for the image CDN's known-DID gate where the heavier getProfilePublic was too slow."
}

Lexicon Garden

@