ArcalotlArcalotl
Events

List projected public events

Polling and reconciliation feed. Ordered newest-first with keyset pagination. Filter by one or more event types, or resume after a known event id. Requires the events:read scope.

Serverhttps://api.arcalotl.com
GET
/v1/events
AuthorizationBearer <token>

Community-scoped API key. Send it as Authorization: Bearer arclt_live_.... Keys carry scopes; endpoints that need a specific scope answer 403 missing_scope when the key lacks it.

In: header

Query Parameters

type?array<string>

One or more public event types. Repeat the parameter or provide a comma-separated list.

after_id?string

Return only events created after the given event id.

cursor?string

Opaque keyset cursor copied verbatim from a previous response's next_cursor. Omit it to fetch the first page.

limit?integer

Page size, capped at 100.

Default25
Range1 <= value <= 100

Response Body

application/json

application/problem+json

application/problem+json

curl -X GET "https://example.com/v1/events?cursor=eyJpZCI6IjAxSk1aWDQ3In0&limit=25"
{
  "data": [
    {
      "id": "evt_01JMZXA1B2",
      "type": "subscription.active",
      "timestamp": "2026-07-01T12:00:00Z",
      "api_version": "2026-07",
      "data": {}
    }
  ],
  "next_cursor": "eyJpZCI6ImV2dF8wMUpNWlhBMSJ9"
}
{
  "type": "https://docs.arcalotl.com/api/errors#not_found",
  "title": "Not Found",
  "status": 404,
  "detail": "The requested resource was not found.",
  "code": "not_found"
}
{
  "type": "https://docs.arcalotl.com/api/errors#not_found",
  "title": "Not Found",
  "status": 404,
  "detail": "The requested resource was not found.",
  "code": "not_found"
}