dokkaiv0.1.0
API Reference

Get a conversation

Full conversation history including per-message sources.

GET/chat/conversations/{conversation_id}any

Returns the full message history. 503 if Postgres is unreachable.

Path parameters

conversation_idstringrequired
The conversation to fetch.

Responses

200Full conversation history
json
{
  "conversation_id": "b0dc2159-...",
  "project_name": "your-repo",
  "audience": "developer",
  "messages": [ { "role": "user", "content": "...", "timestamp": "..." } ]
}
404Unknown conversation
json
{ "detail": "conversation not found" }