Get all new event keys since resume token
get/feed/events
Query parameters
resumeAtstring
token that designates the point to resume from, that is find keys added after this point
limitinteger
The maximum number of events to return, default is 100. The max with data is 10000.
includeData'none' | 'full'
Whether to include the event data (carfile) in the response. In the future, only the payload or other options may be supported:
- none - Empty, only the event ID is returned
- full - The entire event carfile (including the envelope and payload)
Response
success
Example response
{
"resumeToken": "resumeToken",
"events": [
{
"data": "data",
"id": "id"
},
{
"data": "data",
"id": "id"
}
]
}