Skip to main content
GET
/
chat
/
conversations
/
{conversation_id}
Get Conversation
curl --request GET \
  --url https://api.example.com/chat/conversations/{conversation_id}

GET /chat/conversations/

Fetch all messages in a specific conversation. Use this to display conversation history or resume a prior chat session.

Notes

  • The conversation_id is a string identifier returned when a conversation is created via POST /chat/message.
  • This endpoint proxies through DalyAPI to the Bubba chat service.
  • Response is wrapped in { "result": "success", "data": ... } where data contains the conversation messages.
  • Read-only endpoint; does not require write access.
  • Returns 503 if the chat service is not configured or unavailable.