Backfill in-progress. Some lexicons and records may be missing or incomplete.

com.atproto.sync.getHostStatus

atproto-lexicons.bsky.social

Documentation

main query

Returns information about a specified upstream host, as consumed by the server. Implemented by relays.

Parameters

hostname string Required

Hostname of the host (eg, PDS or relay) being queried.

Output

Encodingapplication/json
accountCount integer Optional

Number of accounts on the server which are associated with the upstream host. Note that the upstream may actually have more accounts.

hostname string Required

No description provided.

seq integer Optional

Recent repo stream event sequence number. May be delayed from actual stream processing (eg, persisted cursor not in-memory cursor).

Errors

HostNotFound
Try It

Direct PDS XRPC methods (com.atproto.*) are disabled in Try It for security reasons.

These methods interact directly with Personal Data Servers and require careful handling. Use a dedicated client or CLI tool instead.
View raw schema
{
  "type": "query",
  "errors": [
    {
      "name": "HostNotFound"
    }
  ],
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "hostname"
      ],
      "properties": {
        "seq": {
          "type": "integer",
          "description": "Recent repo stream event sequence number. May be delayed from actual stream processing (eg, persisted cursor not in-memory cursor)."
        },
        "status": {
          "ref": "com.atproto.sync.defs#hostStatus",
          "type": "ref"
        },
        "hostname": {
          "type": "string"
        },
        "accountCount": {
          "type": "integer",
          "description": "Number of accounts on the server which are associated with the upstream host. Note that the upstream may actually have more accounts."
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "hostname"
    ],
    "properties": {
      "hostname": {
        "type": "string",
        "description": "Hostname of the host (eg, PDS or relay) being queried."
      }
    }
  },
  "description": "Returns information about a specified upstream host, as consumed by the server. Implemented by relays."
}

Lexicon Garden

@