A Community's native feed skeleton, served from projected com.getorbyt.community.post links. Clients hydrate post URIs through their authenticated Bluesky AppView. Removed posts are only included for their author and Community moderators.
Parameters
Output
application/jsoncursor
string
Optional
No description available.
feed
array
Required
No description available.
Errors
CommunityNotFound
InvalidCursor
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"errors": [
{
"name": "CommunityNotFound"
},
{
"name": "InvalidCursor"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"feed"
],
"properties": {
"feed": {
"type": "array",
"items": {
"ref": "com.getorbyt.community.defs#feedItem",
"type": "ref"
}
},
"cursor": {
"type": "string"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"community"
],
"properties": {
"sort": {
"type": "string",
"default": "latest",
"description": "`top` ranks by Orbyt's canonical all-time loop count.",
"knownValues": [
"latest",
"top"
]
},
"limit": {
"type": "integer",
"default": 25,
"maximum": 50,
"minimum": 1
},
"cursor": {
"type": "string"
},
"community": {
"type": "string",
"format": "at-uri"
}
}
},
"description": "A Community's native feed skeleton, served from projected com.getorbyt.community.post links. Clients hydrate post URIs through their authenticated Bluesky AppView. Removed posts are only included for their author and Community moderators."
}