Skip to main content
GET
/
traces
List Traces
curl --request GET \
  --url https://api.example.com/traces \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "trace_id": "a1b2c3d4",
      "name": "Stock_Price_Agent.run",
      "status": "OK",
      "duration": "1.2s",
      "start_time": "2025-11-19T10:30:00.000000+00:00",
      "total_spans": 4,
      "error_count": 0,
      "input": "What is the stock price of NVDA?",
      "run_id": "run123",
      "session_id": "session456",
      "user_id": "user789",
      "agent_id": "agent_stock",
      "created_at": "2025-11-19T10:30:00+00:00"
    }
  ],
  "meta": {
    "page": 1,
    "limit": 20,
    "total_pages": 5,
    "total_count": 95
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

run_id
string | null

Filter by run ID

session_id
string | null

Filter by session ID

user_id
string | null

Filter by user ID

agent_id
string | null

Filter by agent ID

team_id
string | null

Filter by team ID

workflow_id
string | null

Filter by workflow ID

status
string | null

Filter by status (OK, ERROR)

start_time
string | null

Filter traces starting after this time (ISO 8601 format with timezone, e.g., '2025-11-19T10:00:00Z' or '2025-11-19T15:30:00+05:30'). Times are converted to UTC for comparison.

end_time
string | null

Filter traces ending before this time (ISO 8601 format with timezone, e.g., '2025-11-19T11:00:00Z' or '2025-11-19T16:30:00+05:30'). Times are converted to UTC for comparison.

page
integer
default:1

Page number (1-indexed)

Required range: x >= 1
limit
integer
default:20

Number of traces per page

Required range: 1 <= x <= 100
db_id
string | null

Database ID to query traces from

Response

List of traces retrieved successfully

data
TraceSummary · object[]
required

List of items for the current page

meta
PaginationInfo · object
required

Pagination metadata