Skip to content
Get started

List Workflows

v1.traces.list_workflows(TraceListWorkflowsParams**kwargs) -> object
GET/api/v1/traces/list_workflows

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
start_timestamp: Optional[Union[str, datetime, null]]

Start timestamp for filtering (ISO format)

formatdate-time
use_cache: Optional[bool]
ReturnsExpand Collapse
object
List Workflows
from overmind_lab import OvermindLab

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