blog.pckt.domain.getStatus

pckt.blog

Documentation

Get the current SSL and hostname status for a publication's custom domain.

main query

Get the current SSL and hostname status for a publication's custom domain.

Parameters

blog string at-uri Required

AT-URI of the publication record. Authority MUST match the caller's DID.

Output

Encodingapplication/json
sslStatus string Optional

SSL provisioning state (null when no domain configured).

status string Optional

Custom hostname status (null when no domain configured).

Errors

BlogNotFound
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
AT-URI of the publication record. Authority MUST match the caller's DID.
View raw schema
{
  "type": "query",
  "errors": [
    {
      "name": "BlogNotFound"
    }
  ],
  "output": {
    "schema": {
      "type": "object",
      "properties": {
        "status": {
          "type": "string",
          "description": "Custom hostname status (null when no domain configured)."
        },
        "sslStatus": {
          "type": "string",
          "description": "SSL provisioning state (null when no domain configured)."
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "blog"
    ],
    "properties": {
      "blog": {
        "type": "string",
        "format": "at-uri",
        "description": "AT-URI of the publication record. Authority MUST match the caller's DID."
      }
    }
  },
  "description": "Get the current SSL and hostname status for a publication's custom domain."
}

Lexicon Garden

@