place.wisp.v2.domain.getStatus

wisp.place

Documentation

Get current claim and verification status for a domain.

main query

Get current claim and verification status for a domain.

Parameters

domain string Required

Domain to inspect (FQDN, lowercase preferred).

Output

Encodingapplication/json
domain string Required

No description available.

kind string Optional

No description available.

lastCheckedAt stringdatetime Optional

An RFC 3339 formatted timestamp.

lastError string Optional

No description available.

siteRkey stringrecord-key Optional

A valid record key for AT Protocol repositories.

status string Required

No description available.

verified boolean Optional

No description available.

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
Domain to inspect (FQDN, lowercase preferred).
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "domain",
        "status"
      ],
      "properties": {
        "kind": {
          "enum": [
            "wisp",
            "custom"
          ],
          "type": "string"
        },
        "domain": {
          "type": "string"
        },
        "status": {
          "enum": [
            "unclaimed",
            "pendingVerification",
            "verified",
            "alreadyClaimed"
          ],
          "type": "string"
        },
        "siteRkey": {
          "type": "string",
          "format": "record-key"
        },
        "verified": {
          "type": "boolean"
        },
        "lastError": {
          "type": "string",
          "maxLength": 1000
        },
        "lastCheckedAt": {
          "type": "string",
          "format": "datetime"
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "domain"
    ],
    "properties": {
      "domain": {
        "type": "string",
        "maxLength": 253,
        "minLength": 3,
        "description": "Domain to inspect (FQDN, lowercase preferred)."
      }
    }
  },
  "description": "Get current claim and verification status for a domain."
}

Lexicon Garden

@