dev.cartridge.getVerificationStatus

cartridge.dev

Documentation

Check whether a DID or handle has been verified by the Cartridge verifier. Does not require authentication.

main query

Check whether a DID or handle has been verified by the Cartridge verifier. Does not require authentication.

Parameters

handle string Required

DID or handle to check.

Output

Encodingapplication/json
accountType string Optional

The verified account type. Only present when isVerified is true.

Known values: studio, developer, publisher
isVerified boolean Required

Whether the account has been verified.

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 or handle to check.
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "isVerified"
      ],
      "properties": {
        "isVerified": {
          "type": "boolean",
          "description": "Whether the account has been verified."
        },
        "accountType": {
          "type": "string",
          "description": "The verified account type. Only present when isVerified is true.",
          "knownValues": [
            "studio",
            "developer",
            "publisher"
          ]
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "handle"
    ],
    "properties": {
      "handle": {
        "type": "string",
        "description": "DID or handle to check."
      }
    }
  },
  "description": "Check whether a DID or handle has been verified by the Cartridge verifier. Does not require authentication."
}

Lexicon Garden

@