interface TraceListRunsParamsHeader param: application/json
Query param: filter narrows which runs within this trace are returned, using a
LangSmith filter expression evaluated against each run. For example:
eq(run_type, "llm") for LLM runs only, or eq(status, "error") for failed
runs. See
https://docs.langchain.com/langsmith/trace-query-syntax#filter-query-language
for syntax.
Query param: max_start_time is the optional inclusive upper bound for run
start_time (RFC3339 date-time). Required together with min_start_time.
Query param: min_start_time is the optional inclusive lower bound for run
start_time (RFC3339 date-time). Required together with max_start_time.
Query param: project_id is the UUID of the tracing project that owns the
trace.
Query param: selects lists which properties to include on each returned run
(repeatable query parameter). Accepts any value of the RunSelectField enum. If
omitted, only id is returned.