curl --request GET \
--url https://api.example.com/traces \
--header 'Authorization: Bearer <token>'[
{
"id": "<string>",
"project_id": "<string>",
"project_name": "<string>",
"otel_trace_id": "<string>",
"service_name": "<string>",
"created_at": "<string>"
}
]Returns recent traces for a project, optionally filtered by time range, environment, and error status.
curl --request GET \
--url https://api.example.com/traces \
--header 'Authorization: Bearer <token>'[
{
"id": "<string>",
"project_id": "<string>",
"project_name": "<string>",
"otel_trace_id": "<string>",
"service_name": "<string>",
"created_at": "<string>"
}
]Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Project to scope traces to.
If set, only traces tagged with this environment.
Inclusive lower bound (ISO 8601) on trace start time.
Inclusive upper bound (ISO 8601) on trace start time.
Maximum number of traces to return (most recent first).
1 <= x <= 200If true, only include traces that recorded an error.