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/conversationsQuery parameters
chatbotId(required)filteredSources(optional) — comma-separated;api,whatsapp,messenger,instagram,slack,playground,widget,iframestartDate/endDate(optional) — YYYY-MM-DDpage(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