Enumerates upstream hosts (eg, PDS or relay instances) that this service consumes from. Implemented by relays.
Parameters
Output
Encoding
application/jsoncursor
string
Optional
No description provided.
hosts
array
Required
Sort order is not formally specified. Recommended order is by time host was first seen by the server, with oldest first.
Try It
Direct PDS XRPC methods (com.atproto.*) are disabled in Try It for security reasons.
View raw schema
{
"type": "query",
"output": {
"schema": {
"type": "object",
"required": [
"hosts"
],
"properties": {
"hosts": {
"type": "array",
"items": {
"ref": "#host",
"type": "ref"
},
"description": "Sort order is not formally specified. Recommended order is by time host was first seen by the server, with oldest first."
},
"cursor": {
"type": "string"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"properties": {
"limit": {
"type": "integer",
"default": 200,
"maximum": 1000,
"minimum": 1
},
"cursor": {
"type": "string"
}
}
},
"description": "Enumerates upstream hosts (eg, PDS or relay instances) that this service consumes from. Implemented by relays."
}