Get personalized timeline feed (items from followed users + your own items). Requires authentication.
Parameters
Output
Encoding
application/jsoncursor
string
Optional
No description available.
feed
array
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": [
"feed"
],
"properties": {
"feed": {
"type": "array",
"items": {
"ref": "social.showcase.defs#itemView",
"type": "ref"
}
},
"cursor": {
"type": "string",
"maxLength": 512
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"properties": {
"limit": {
"type": "integer",
"default": 50,
"maximum": 100,
"minimum": 1,
"description": "Number of items to load"
},
"cursor": {
"type": "string",
"maxLength": 512,
"description": "Pagination cursor for infinite scroll"
}
}
},
"description": "Get personalized timeline feed (items from followed users + your own items). Requires authentication."
}