Returns a paginated list of conversations with optional filtering.
Query Parameters
Filter conversations with context failures
Filter conversations started after this date (ISO 8601)
Filter conversations started before this date (ISO 8601)
Page number for pagination
Number of conversations per page (max 100)
Response
Array of conversation objects with summary information
Total number of conversations matching the filters
Number of conversations per page
Example
curl -X GET "https://api.tracelm.ai/api/v1/conversations?has_context_failures=true&page=1" \
-H "X-API-Key: $TRACELM_API_KEY"
Response
{
"conversations": [
{
"id": "conv_456",
"user_id": "user_123",
"task_count": 3,
"trace_count": 15,
"context_failure_count": 2,
"started_at": "2024-01-15T10:00:00Z",
"last_activity_at": "2024-01-15T10:45:00Z"
}
],
"total": 25,
"page": 1,
"page_size": 50
}