Conversations
List, view, and delete chat conversations.
List conversations
GET /api/v1/conversations
GET /api/v1/conversationsResponse (200: OK)
{
"conversations": [
{
"id": "d4e5f6a7-b8c9-0123-def0-1234567890ab",
"title": "What were the key revenue drivers...",
"timestamp": "2025-03-15T14:30:00",
"message_count": 4
},
{
"id": "e5f6a7b8-c9d0-1234-ef01-234567890abc",
"title": "Summarize the meeting notes",
"timestamp": "2025-03-14T10:15:00",
"message_count": 2
}
]
}Get conversation messages
GET /api/v1/conversations/{conversation_id}
GET /api/v1/conversations/{conversation_id}Response (200: OK)
Delete a conversation
DELETE /api/v1/conversations/{conversation_id}
DELETE /api/v1/conversations/{conversation_id}Response (200: OK)
Example
Last updated