curl --request GET \
--url https://api.example.com/traces/search \
--header 'Authorization: Bearer <token>'[
{
"id": "<string>",
"project_id": "<string>",
"otel_trace_id": "<string>",
"service_name": "<string>",
"created_at": "<string>"
}
]Full-text style search across trace content with optional filters for tool name, model, time range, and errors.
curl --request GET \
--url https://api.example.com/traces/search \
--header 'Authorization: Bearer <token>'[
{
"id": "<string>",
"project_id": "<string>",
"otel_trace_id": "<string>",
"service_name": "<string>",
"created_at": "<string>"
}
]Documentation Index
Fetch the complete documentation index at: https://docs.uselemma.ai/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Project to search within.
Free-text search string matched against trace payloads.
If set, only traces that invoked this tool name.
If set, only traces whose root span used this model identifier.
If true, only include traces that recorded an error.
Inclusive lower bound (ISO 8601) on trace start time.
Inclusive upper bound (ISO 8601) on trace start time.
Maximum number of matching traces to return.
1 <= x <= 100