Get a feed of posts. Use the 'feed' parameter to select which feed: 'following' for posts from followed accounts, 'global' for all posts, or an at-uri for a custom feed generator.
Parameters
Output
Encoding
application/jsoncursor
string
Optional
No description available.
posts
array
Required
No description available.
Errors
UnknownFeed
The requested feed identifier is not recognized. Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"errors": [
{
"name": "UnknownFeed",
"description": "The requested feed identifier is not recognized."
}
],
"output": {
"schema": {
"type": "object",
"required": [
"posts"
],
"properties": {
"posts": {
"type": "array",
"items": {
"ref": "cafe.dummy.lsky.defs#postView",
"type": "ref"
}
},
"cursor": {
"type": "string"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"feed"
],
"properties": {
"feed": {
"type": "string",
"description": "Which feed to fetch. Well-known values: 'following', 'global'. Can also be an at-uri pointing to a feed generator record."
},
"limit": {
"type": "integer",
"default": 20,
"maximum": 100,
"minimum": 1
},
"cursor": {
"type": "string"
}
}
},
"description": "Get a feed of posts. Use the 'feed' parameter to select which feed: 'following' for posts from followed accounts, 'global' for all posts, or an at-uri for a custom feed generator."
}