List records of a given collection within a space. Access is governed by the space's collection policy.
Parameters
byUser
string
did
Optional
Only return records authored by this DID.
collection
string
nsid
Required
A namespaced identifier (e.g., app.bsky.feed.post).
cursor
string
Optional
No description available.
limit
integer
Optional
No description available.
spaceUri
string
at-uri
Required
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
Output
Encoding
application/jsoncursor
string
Optional
No description available.
records
array
Required
No description available.
Errors
NotFound
Forbidden
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"errors": [
{
"name": "NotFound"
},
{
"name": "Forbidden"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"records"
],
"properties": {
"cursor": {
"type": "string"
},
"records": {
"type": "array",
"items": {
"ref": "rsvp.atmo.space.defs#recordView",
"type": "ref"
}
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"spaceUri",
"collection"
],
"properties": {
"limit": {
"type": "integer",
"default": 50,
"maximum": 200,
"minimum": 1
},
"byUser": {
"type": "string",
"format": "did",
"description": "Only return records authored by this DID."
},
"cursor": {
"type": "string"
},
"spaceUri": {
"type": "string",
"format": "at-uri"
},
"collection": {
"type": "string",
"format": "nsid"
}
}
},
"description": "List records of a given collection within a space. Access is governed by the space's collection policy."
}