APIAnalytics

LLM session activity

Time-bucketed token/cost activity and per-model rollup for one session.

GET/analytics/llm-session-activity

Time-bucketed token/cost activity and per-model rollup for one session.

Query Parameters

start_time*string

Start of the time range to report on, inclusive.

Formatdate-time
end_time*string

End of the time range to report on, exclusive.

Formatdate-time
session_key*string

The session to report on, identified by its provider session key.

provider*string

Telemetry provider of the session.

Value in

  • "claude"
  • "codex"

Response Body

application/json

application/json

curl -X GET "https://example.com/analytics/llm-session-activity?start_time=2019-08-24T14%3A15%3A22Z&end_time=2019-08-24T14%3A15%3A22Z&session_key=string&provider=claude"
{  "buckets": [    {      "bucket_start": "2019-08-24T14:15:22Z",      "tokens": 0,      "cost": 0.1    }  ],  "models": [    {      "model": "string",      "calls": 0,      "tokens": 0,      "cost": 0.1,      "duration_ms": 0    }  ]}
{  "code": "bad_request",  "message": "string",  "validation_errors": [    {      "field": "string",      "message": "string",      "rule": "string"    }  ]}