GET /v1/events
List events with optional filters.Query parameters
| Parameter | Type | Description |
|---|---|---|
agent_id | string | Filter by agent ID |
action_type | string | Filter by action type |
since | string | Start time (ISO 8601) |
until | string | End time (ISO 8601) |
label.{key} | string | Filter by label value (e.g., label.env=prod) |
limit | integer | Max results (default: 100, max: 1000) |
offset | integer | Pagination offset |
Example
Response
GET /v1/events/:id
Get a single event by ID.Example
404 if the event is not found.
GET /v1/search
Full-text search across events.Query parameters
| Parameter | Type | Description |
|---|---|---|
q | string | Search query |
limit | integer | Max results |
offset | integer | Pagination offset |