Dashboard Get started

List events

GET /api/v1/events

Returns a paginated list of captured API calls.

Query parameters

Parameter Type Description
session_id string Filter by session ID
provider string Filter by provider: anthropic, openai, xai
model string Filter by model name
from ISO 8601 Start of time range
to ISO 8601 End of time range
limit integer Max results (default 50, max 500)
offset integer Pagination offset

Response

{
  "events": [
    {
      "id": "evt_01abc…",
      "provider": "anthropic",
      "model": "claude-opus-4-7",
      "session_id": "my-session",
      "input_tokens": 1024,
      "output_tokens": 256,
      "cache_read": 800,
      "cache_creation": 224,
      "cost_usd": 0.0043,
      "duration_ms": 1240,
      "stop_reason": "end_turn",
      "timestamp": "2026-05-04T08:00:00Z"
    }
  ],
  "total": 1420,
  "offset": 0,
  "limit": 50
}