curl --request GET \
--url https://api.example.com/v1/projects/{project_identifier}/traces{
"data": [
{
"id": "<string>",
"trace_id": "<string>",
"project_id": "<string>",
"start_time": "2023-11-07T05:31:56Z",
"end_time": "2023-11-07T05:31:56Z",
"token_count_prompt": 0,
"token_count_completion": 0,
"token_count_total": 0,
"spans": [
{
"id": "<string>",
"span_id": "<string>",
"parent_id": "<string>",
"name": "<string>",
"span_kind": "<string>",
"status_code": "<string>",
"start_time": "2023-11-07T05:31:56Z",
"end_time": "2023-11-07T05:31:56Z"
}
]
}
],
"next_cursor": "<string>"
}curl --request GET \
--url https://api.example.com/v1/projects/{project_identifier}/traces{
"data": [
{
"id": "<string>",
"trace_id": "<string>",
"project_id": "<string>",
"start_time": "2023-11-07T05:31:56Z",
"end_time": "2023-11-07T05:31:56Z",
"token_count_prompt": 0,
"token_count_completion": 0,
"token_count_total": 0,
"spans": [
{
"id": "<string>",
"span_id": "<string>",
"parent_id": "<string>",
"name": "<string>",
"span_kind": "<string>",
"status_code": "<string>",
"start_time": "2023-11-07T05:31:56Z",
"end_time": "2023-11-07T05:31:56Z"
}
]
}
],
"next_cursor": "<string>"
}Documentation Index
Fetch the complete documentation index at: https://arizeai-433a7140.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
The project identifier: either project ID or project name.
Inclusive lower bound on trace start time (ISO 8601)
Exclusive upper bound on trace start time (ISO 8601)
Sort field
start_time, latency_ms Sort direction
asc, desc Maximum number of traces to return
x <= 1000Pagination cursor (Trace GlobalID)
If true, include full span details for each trace. This significantly increases response size and query latency, especially with large page sizes. Prefer fetching spans lazily for individual traces when possible.
List of session identifiers to filter traces by. Each value can be either a session_id string or a session GlobalID. Only traces belonging to the specified sessions will be returned.
Was this page helpful?