APIAnalytics

LLM session stats

Count, average, percentile bands and (optionally) the selected session's percentile ranks across sessions.

GET/analytics/llm-session-stats

Count, average, percentile bands and (optionally) the selected session's percentile ranks across sessions.

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
provider?array<>

Filter to specific LLM telemetry providers.

model?array<string>

Filter to specific model names.

user_id?array<>

Filter to specific users by id.

user_group?array<string>

Filter to users in specific groups.

Response Body

application/json

application/json

curl -X GET "https://example.com/analytics/llm-session-stats?start_time=2019-08-24T14%3A15%3A22Z&end_time=2019-08-24T14%3A15%3A22Z"
{  "session_count": 0,  "cost": {    "avg": 0.1,    "p50": 0.1,    "p95": 0.1  },  "tokens": {    "avg": 0.1,    "p50": 0.1,    "p95": 0.1  },  "duration": {    "avg": 0.1,    "p50": 0.1,    "p95": 0.1  },  "requests": {    "avg": 0.1,    "p50": 0.1,    "p95": 0.1  }}
{  "code": "bad_request",  "message": "string",  "validation_errors": [    {      "field": "string",      "message": "string",      "rule": "string"    }  ]}