For the complete documentation index, see llms.txt. This page is also available as Markdown.

Traces

Trace lookup endpoints.

List traces

get

List traces within the authenticated project.

Authorizations
AuthorizationstringRequired

API key in Authorization header using Bearer .

Query parameters
limitinteger · min: 1 · max: 100OptionalDefault: 20
offsetintegerOptionalDefault: 0
Responses
200

Successful Response

application/json

List response for project-scoped traces.

objectconst: listOptional

Object type identifier.

Default: list
totalintegerRequired

Total number of items available for this resource.

get/v1/traces

Get a trace

get

Fetch a single trace by external trace id (trace.id) within the authenticated project.

Authorizations
AuthorizationstringRequired

API key in Authorization header using Bearer .

Path parameters
idstringRequired
Responses
200

Successful Response

application/json
idstringRequired

External trace identifier (trace.id).

namestring · nullableOptional

Optional trace name.

sourcestring · nullableOptional

Optional trace source.

first_seenstring · date-time · nullableOptional

Timestamp of the first request recorded for this trace.

last_seenstring · date-time · nullableOptional

Timestamp of the most recent request recorded for this trace.

request_countintegerRequired

Number of inference log rows recorded for this trace.

container_countintegerRequired

Number of distinct containers involved in this trace.

error_countintegerRequired

Number of errored requests recorded for this trace.

get/v1/traces/{id}

Last updated