list alerts
list_alertsFetch fired alerts newest first with payloads, enabling automated reactions to quality, cost, or drift events without checking email.
Instructions
List every alert this workspace has fired, newest first, with the payload the notification carried, so a pipeline can react to quality, cost, or drift events without reading a mailbox. GET /v1/alerts (API-key scope: read). Returns: { alerts: [{ id, kind, fired_at (ISO), payload (JSON object: criterion, model, rates, reason as applicable) }], next_cursor: string|null } Notes: Keyset pagination: pass next_cursor back as cursor until it is null. 400 when since is not an ISO date or limit is outside 1..200. Cache-Control: no-store.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| kind | No | Filter to one alert kind. | |
| limit | No | Page size, integer 1..200. Default: 50. | |
| since | No | ISO-8601 datetime; only alerts fired at or after this instant. 400 if unparseable. | |
| cursor | No | Opaque cursor from a previous response's next_cursor (the id of the last alert on that page). Resumes after that alert. |