place.wisp.v2.site.getDomains

wisp.place

Documentation

List domains currently mapped to a specific site.

main query

List domains currently mapped to a specific site.

Parameters

did string did Required

A decentralized identifier (DID).

rkey string record-key Required

A valid record key for AT Protocol repositories.

Output

Encodingapplication/json
domains array Required

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
A decentralized identifier (DID).
A valid record key for AT Protocol repositories.
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "domains"
      ],
      "properties": {
        "domains": {
          "type": "array",
          "items": {
            "ref": "#siteDomain",
            "type": "ref"
          }
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "did",
      "rkey"
    ],
    "properties": {
      "did": {
        "type": "string",
        "format": "did"
      },
      "rkey": {
        "type": "string",
        "format": "record-key"
      }
    }
  },
  "description": "List domains currently mapped to a specific site."
}
siteDomain object

No description available.

Properties

domain string Required

No description available.

maxLength: 253 bytesminLength: 3 bytes
kind string Required

No description available.

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"
    },
    "verified": {
      "type": "boolean"
    }
  }
}

Lexicon Garden

@