Skip to main content
GET
/
chat
/
conversations
List Conversations
curl --request GET \
  --url https://api.example.com/chat/conversations

GET /chat/conversations

Retrieve a list of chat conversations associated with the workspace. Use this to populate a conversation history sidebar or audit past interactions.

Notes

  • This endpoint proxies through DalyAPI to the Bubba chat service.
  • Response is wrapped in { "result": "success", "data": ... } where data contains the conversation list from the chat backend.
  • Read-only endpoint; does not require write access.
  • Returns 503 if the chat service is not configured or unavailable.
  • Use GET /chat/conversations/ to fetch the full message history for a specific conversation.