Skip to main content
GET /v1/events returns a paginated list of evaluation events scoped to your organization. Each event records the gate results, latency, overall verdict, and reputation score at the time of evaluation. Events are returned in reverse chronological order — newest first. Results are always isolated to your organization. There is no way to retrieve events from another organization, even with a valid key.

Endpoint

Authentication

Required. Pass your API key as a Bearer token:

Query parameters

number
default:"50"
Maximum number of events to return. Minimum 1, maximum 100.
number
default:"0"
Number of events to skip before returning results. Use with limit to paginate. Maximum 100000.
string
Filter to events for a specific agent. Must match exactly. Maximum 200 characters.
string
Filter by gate verdict. Accepts the string "true" or "false". Omit to return events regardless of verdict.
string
Return events on or after this timestamp. ISO 8601 UTC format, e.g. 2026-05-01T00:00:00Z.
string
Return events on or before this timestamp. ISO 8601 UTC format, e.g. 2026-05-07T23:59:59Z.

Response fields

array
Array of event objects, ordered newest first.
number
The limit value applied to this request.
number
The offset value applied to this request.
number
Number of events returned in this response. Less than or equal to limit. Use count < limit to detect the last page.

Example request

Example response