axonpush
API referenceTraces

GET /traces

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)

Formatint64
offset?integer

Rows to skip for paging

Formatint64
Range0 <= value
service?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

Formatdouble

Response 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"    }  ]}