place.wisp.v2.domain.getList

wisp.place

Documentation

List domains for the authenticated DID (wisp subdomains + custom).

main query

List domains for the authenticated DID (wisp subdomains + custom).

Output

Encodingapplication/json
domains array Required

Domains owned by the caller DID.

Errors

AuthenticationRequired
InvalidRequest
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)
View raw schema
{
  "type": "query",
  "errors": [
    {
      "name": "AuthenticationRequired"
    },
    {
      "name": "InvalidRequest"
    }
  ],
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "domains"
      ],
      "properties": {
        "domains": {
          "type": "array",
          "items": {
            "ref": "#domainSummary",
            "type": "ref"
          },
          "description": "Domains owned by the caller DID."
        }
      }
    },
    "encoding": "application/json"
  },
  "description": "List domains for the authenticated DID (wisp subdomains + custom)."
}
domainSummary object

Summary of a claimed domain for list views.

Properties

domain string Required

No description available.

maxLength: 253 bytesminLength: 3 bytes
kind string Required

No description available.

lastCheckedAt string datetime Optional

An RFC 3339 formatted timestamp.

siteRkey string record-key Optional

A valid record key for AT Protocol repositories.

status string Required

No description available.

verified boolean Required

No description available.

View raw schema
{
  "type": "object",
  "required": [
    "domain",
    "kind",
    "status",
    "verified"
  ],
  "properties": {
    "kind": {
      "enum": [
        "wisp",
        "custom"
      ],
      "type": "string"
    },
    "domain": {
      "type": "string",
      "maxLength": 253,
      "minLength": 3
    },
    "status": {
      "enum": [
        "pendingVerification",
        "verified"
      ],
      "type": "string"
    },
    "siteRkey": {
      "type": "string",
      "format": "record-key"
    },
    "verified": {
      "type": "boolean"
    },
    "lastCheckedAt": {
      "type": "string",
      "format": "datetime"
    }
  },
  "description": "Summary of a claimed domain for list views."
}

Lexicon Garden

@