List Events
Retrieve security and audit events for your organization.Query Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
limit | number | 50 | Number of events to return |
offset | number | 0 | Pagination offset |
type | string | all | Filter by event type: install, audit |
outcome | string | all | Filter by outcome: allow, review, block |
ecosystem | string | - | Filter by ecosystem: npm, pip, go, cargo |
package | string | - | Filter by package name |
since | string | - | ISO 8601 timestamp — only events after this time |
until | string | - | ISO 8601 timestamp — only events before this time |
Response
Response Fields
| Field | Type | Description |
|---|---|---|
id | string | Unique event identifier |
client_id | string | Agent that generated the event |
timestamp | string | When the event occurred |
type | string | Event type (install, audit) |
outcome | string | allow, review, or block |
actor | object | What initiated the event (command, args, version) |
subject | object | What the event is about (ecosystem, package, version) |
metadata | object | Additional key-value metadata |
payload | object | Type-specific payload (e.g., reasons for block) |