Get the global activity feed, optionally scoped to an actor's social graph activity.
Parameters
Output
Encoding
application/jsoncursor
string
Optional
No description available.
feed
array
Required
No description available.
Errors
ActorNotFound
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"errors": [
{
"name": "ActorNotFound"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"feed"
],
"properties": {
"feed": {
"type": "array",
"items": {
"ref": "club.userstyles.alpha.defs#feedViewItem",
"type": "ref"
}
},
"cursor": {
"type": "string"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"properties": {
"actor": {
"type": "string",
"format": "at-identifier",
"description": "Filter the feed to accounts this actor follows, rather than the global feed."
},
"limit": {
"type": "integer",
"default": 50,
"maximum": 100,
"minimum": 1
},
"cursor": {
"type": "string"
}
}
},
"description": "Get the global activity feed, optionally scoped to an actor's social graph activity."
}