List Traces
v1.traces.list_traces(TraceListTracesParams**kwargs) -> object
GET/api/v1/traces/list
Retrieve traces with efficient filtering by ProjectId, BusinessId, and time range. If no timestamps are provided, defaults to last 15 minutes.
Parameters
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
Whether to only return root spans
start_timestamp: Optional[Union[str, datetime, null]]
Start timestamp for filtering (ISO format)
formatdate-time
workflow_name: Optional[str]
Filter by workflow name
Returns
object
List Traces
from overmind_lab import OvermindLab
client = OvermindLab()
response = client.v1.traces.list_traces(
project_id="182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
)
print(response){}Returns Examples
{}