Get the activity feed for a collection, aggregating events from tracked items
Parameters
Output
Encoding
application/jsoncursor
string
Optional
Pagination cursor for next page
events
array
Required
Feed events in reverse chronological order
hasMore
boolean
Required
Whether more events exist
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": [
"events",
"hasMore"
],
"properties": {
"cursor": {
"type": "string",
"description": "Pagination cursor for next page"
},
"events": {
"type": "array",
"items": {
"ref": "pub.chive.collection.defs#feedEventView",
"type": "ref"
},
"description": "Feed events in reverse chronological order"
},
"hasMore": {
"type": "boolean",
"description": "Whether more events exist"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"uri"
],
"properties": {
"uri": {
"type": "string",
"description": "AT-URI of the collection"
},
"limit": {
"type": "integer",
"default": 30,
"maximum": 100,
"minimum": 1,
"description": "Maximum events to return"
},
"cursor": {
"type": "string",
"description": "Pagination cursor"
}
}
},
"description": "Get the activity feed for a collection, aggregating events from tracked items"
}