Activity events involving an actor, newest first. `filter` selects the slice.
Parameters
actor
string
did
Required
The account the feed is about, which is not necessarily the viewer.
cursor
string
Optional
No description available.
filter
string
Optional
author: records the actor wrote. following: records written by the accounts the actor follows. incoming: records by others naming the actor as their subject. all: the union of the three.
limit
integer
Optional
No description available.
Output
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": "#feedItem",
"type": "ref"
}
},
"cursor": {
"type": "string"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"actor"
],
"properties": {
"actor": {
"type": "string",
"format": "did",
"description": "The account the feed is about, which is not necessarily the viewer."
},
"limit": {
"type": "integer",
"default": 30,
"maximum": 50,
"minimum": 1
},
"cursor": {
"type": "string"
},
"filter": {
"type": "string",
"default": "all",
"description": "author: records the actor wrote. following: records written by the accounts the actor follows. incoming: records by others naming the actor as their subject. all: the union of the three.",
"knownValues": [
"all",
"author",
"incoming",
"following"
]
}
}
},
"description": "Activity events involving an actor, newest first. `filter` selects the slice."
}