curl --request GET \
--url https://api.pandaprobe.com/traces \
--header 'Authorization: Bearer <token>'{
"items": [
{
"trace_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"status": "PENDING",
"started_at": "<string>",
"ended_at": "<string>",
"session_id": "<string>",
"user_id": "<string>",
"tags": [
"<string>"
],
"environment": "<string>",
"release": "<string>",
"latency_ms": 123,
"span_count": 0,
"total_tokens": 0,
"total_cost": 0
}
],
"total": 123,
"limit": 123,
"offset": 123
}List traces for the current project with filtering, sorting, and stats.
Auth: Bearer + X-Project-ID | X-API-Key + X-Project-Name
curl --request GET \
--url https://api.pandaprobe.com/traces \
--header 'Authorization: Bearer <token>'{
"items": [
{
"trace_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"status": "PENDING",
"started_at": "<string>",
"ended_at": "<string>",
"session_id": "<string>",
"user_id": "<string>",
"tags": [
"<string>"
],
"environment": "<string>",
"release": "<string>",
"latency_ms": 123,
"span_count": 0,
"total_tokens": 0,
"total_cost": 0
}
],
"total": 123,
"limit": 123,
"offset": 123
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
1 <= x <= 200x >= 0High-level status of a trace.
PENDING, RUNNING, COMPLETED, ERROR Columns available for sorting trace list results.
started_at, ended_at, name, latency, status Generic ascending / descending sort direction.
asc, desc