v1

latestOpenAPI 3.0.0MIT2026-07-17301524.5 KB

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

resumeTokenstring required

The token/highwater mark to used as resumeAt on a future request

Example response

{
  "resumeToken": "resumeToken",
  "events": [
    {
      "data": "data",
      "id": "id"
    },
    {
      "data": "data",
      "id": "id"
    }
  ]
}