Skip to main content
GET
/
traces
{
  "data": [
    {
      "trace_id": "<string>",
      "name": "<string>",
      "status": "<string>",
      "duration": "<string>",
      "start_time": "2023-11-07T05:31:56Z",
      "total_spans": 123,
      "error_count": 123,
      "input": "<string>",
      "run_id": "<string>",
      "session_id": "<string>",
      "user_id": "<string>",
      "agent_id": "<string>",
      "team_id": "<string>",
      "workflow_id": "<string>",
      "created_at": "2023-11-07T05:31:56Z"
    }
  ],
  "meta": {
    "page": 0,
    "limit": 20,
    "total_pages": 0,
    "total_count": 0,
    "search_time_ms": 0
  }
}

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')

end_time
string | null

Filter traces ending before this time (ISO 8601 format with timezone, e.g., '2025-11-19T11:00:00Z')

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 trace summaries

meta
PaginationInfo · object
required

Pagination metadata