Skip to content
Get started

List Chat Traces

v1.traces.list_chat_traces(TraceListChatTracesParams**kwargs) -> object
GET/api/v1/traces/chat_list

Retrieve traces with efficient filtering by ProjectId, BusinessId, and time range. If no timestamps are provided, defaults to last 15 minutes.

ParametersExpand Collapse
project_id: str

Filter by project ID

formatuuid
end_timestamp: Optional[Union[str, datetime, null]]

End timestamp for filtering (ISO format)

formatdate-time
limit: Optional[int]

Maximum number of traces to return

maximum1000
minimum1
offset: Optional[int]

Number of traces to skip

minimum0
root_only: Optional[bool]

Whether to only return root spans

start_timestamp: Optional[Union[str, datetime, null]]

Start timestamp for filtering (ISO format)

formatdate-time
tool_name: Optional[str]

Filter by tool name

use_cache: Optional[bool]
ReturnsExpand Collapse
object
List Chat Traces
from overmind_lab import OvermindLab

client = OvermindLab()
response = client.v1.traces.list_chat_traces(
    project_id="182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
)
print(response)
{}
Returns Examples
{}