Describe this deployment's public XRPC surface and defaults.
Output
Encoding
application/jsondefaultListingLimit
integer
Required
No description available.
maxListingLimit
integer
Required
No description available.
maxReviewLimit
integer
Required
No description available.
methods
array
Required
No description available.
publicReads
boolean
Required
No description available.
reviewsWrittenOnAuthorRepo
boolean
Required
When true, listing reviews are created via com.atproto.repo.createRecord on the author's PDS (fyi.atstore.listing.review); this service does not expose a write procedure for reviews.
service
string
Required
No description available.
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"output": {
"schema": {
"type": "object",
"required": [
"service",
"publicReads",
"reviewsWrittenOnAuthorRepo",
"defaultListingLimit",
"maxListingLimit",
"maxReviewLimit",
"methods"
],
"properties": {
"methods": {
"type": "array",
"items": {
"type": "string",
"maxLength": 512
}
},
"service": {
"type": "string",
"maxLength": 256
},
"publicReads": {
"type": "boolean"
},
"maxReviewLimit": {
"type": "integer"
},
"maxListingLimit": {
"type": "integer"
},
"defaultListingLimit": {
"type": "integer"
},
"reviewsWrittenOnAuthorRepo": {
"type": "boolean",
"description": "When true, listing reviews are created via com.atproto.repo.createRecord on the author's PDS (fyi.atstore.listing.review); this service does not expose a write procedure for reviews."
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"properties": {}
},
"description": "Describe this deployment's public XRPC surface and defaults."
}