API Reference
Get a conversation
Full conversation history including per-message sources.
GET
/chat/conversations/{conversation_id}anyReturns the full message history. 503 if Postgres is unreachable.
Path parameters
conversation_idstringrequiredThe 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" }