BetaThe v2 API is in beta — fields and behavior may change without notice. For stable production usage, see the API v1 Reference.

Conversations

Get conversations for a chatbot

Pull conversation history for a chatbot. Filter by source, date range, and paginate.

Endpoint

text
GET https://services.chatmount.co/v2/conversations

Query parameters

  • chatbotId (required)
  • filteredSources (optional) — comma-separated;api, whatsapp, messenger, instagram,slack, playground, widget, iframe
  • startDate / endDate (optional) — YYYY-MM-DD
  • page (default 1), size (default 10)

Response

json
{
  "data": [
    {
      "id": "conv_123",
      "chatbotId": "agent_abc123",
      "createdAt": "2026-01-01T12:00:00Z",
      "updatedAt": "2026-01-01T12:05:00Z",
      "source": "api",
      "messages": [
        {
          "id": "msg_123",
          "role": "user",
          "content": "Hello, I need help with my order",
          "type": "text"
        }
      ]
    }
  ]
}

Related