API referenceTraces
GET /traces
Query Parameters
since?string
Window start (RFC3339); defaults to 24h before until
until?string
Window end (RFC3339); defaults to now
limit?integer
Max traces to return (default 50, max 500)
Format
int64offset?integer
Rows to skip for paging
Format
int64Range
0 <= valueservice?string
Keep traces with a span from this service
operation?string
Keep traces with a span with this operation / span name
errorsOnly?boolean
Keep only traces containing an error span
minDurationMs?number
Keep only traces at least this many ms long
Format
doubleResponse Body
application/json
application/problem+json
curl -X GET "https://example.com/traces"{ "$schema": "https://example.com/schemas/ListTracesOutputBody.json", "traces": [ { "costUsd": 0.1, "durationMs": 0.1, "endedAt": "string", "errorCount": 0, "models": [ "string" ], "providers": [ "string" ], "rootSpanName": "string", "serviceName": "string", "spanCount": 0, "startedAt": "string", "totalTokens": 0, "traceId": "string" } ]}