cURL
curl --request GET \ --url https://api.tracelm.ai/api/v1/conversations/{id}
{ "id": "<string>", "user_id": "<string>", "tasks": [ {} ], "traces": [ {} ], "context_failures": [ {} ], "started_at": "<string>", "last_activity_at": "<string>" }
Get detailed information about a specific conversation
curl -X GET "https://api.tracelm.ai/api/v1/conversations/conv_456" \ -H "X-API-Key: $TRACELM_API_KEY"
{ "id": "conv_456", "user_id": "user_123", "tasks": [ { "id": "task_1", "task_name": "search_flights", "status": "completed", "started_at": "2024-01-15T10:00:00Z" }, { "id": "task_2", "task_name": "book_flight", "status": "completed", "started_at": "2024-01-15T10:15:00Z" } ], "traces": [ { "id": "trace_1", "task_id": "task_1", "model": "gpt-4o-mini", "created_at": "2024-01-15T10:00:05Z" } ], "context_failures": [ { "type": "forgotten_preference", "severity": "medium", "description": "User's seat preference (window) was not applied", "trace_id": "trace_5" } ], "started_at": "2024-01-15T10:00:00Z", "last_activity_at": "2024-01-15T10:45:00Z" }