Unread conversations
Conversations that still need attention from the team.
Return aggregate conversation totals for the same conversation filters.
Return aggregate conversation totals for the same conversation filters.
Endpoint: GET /api/v2/reports/conversations/summary. This endpoint returns totals for the same conversation filters used by the list endpoint, including senderId, dateFrom, dateTo, search, status, archived, unreadOnly, lastDirection, label filters, and labelMatchMode.
/api/v2/reports/conversations/summary| Parameter | Type | Required | Description |
|---|---|---|---|
Authorization | header | Required | Bearer w91_live_xxxxxxxxxxxxxxxxx. |
senderId | string | Optional | WhatsApp sender phone number. |
dateFrom | string | Optional | YYYY-MM-DD start date. |
dateTo | string | Optional | YYYY-MM-DD end date. |
status | string | Optional | active, closed, blocked, or all. |
archived | boolean | Optional | true or false. |
unreadOnly | boolean | Optional | true or false. |
lastDirection | string | Optional | inbound or outbound. |
curl "https://graph.whats91.com/api/v2/reports/conversations/summary?senderId=919999999999&dateFrom=2026-06-01&dateTo=2026-06-05" \
-H "Authorization: Bearer w91_live_xxx"{
"success": true,
"message": "Conversation summary retrieved",
"data": {
"summary": {
"totalConversations": 12,
"unreadConversations": 3,
"archivedConversations": 2,
"activeConversations": 10,
"inboundLastCount": 7,
"outboundLastCount": 5
}
},
"metadata": {
"apiVersion": "v2",
"requestId": "request-uuid"
}
}Conversations that still need attention from the team.
Open conversation records in the selected date/filter range.
inboundLastCount and outboundLastCount show who sent the latest message.
Archived conversations matching the same conversation filters.
Use these examples as starting points for server-side implementations.
curl -X GET "https://graph.whats91.com/api/v2/reports/conversations/summary" \
-H "Authorization: Bearer w91_live_xxx"const response = await fetch("https://graph.whats91.com/api/v2/reports/conversations/summary", {
method: "GET",
headers: {
"Authorization": "Bearer w91_live_xxx",
"Content-Type": "application/json"
}
});
const data = await response.json();
console.log(data);$ch = curl_init("https://graph.whats91.com/api/v2/reports/conversations/summary");
curl_setopt_array($ch, [
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => [
"Authorization: Bearer w91_live_xxx",
"Content-Type: application/json"
]
]);
$response = curl_exec($ch);
curl_close($ch);
echo $response;import requests
response = requests.request(
"GET",
"https://graph.whats91.com/api/v2/reports/conversations/summary",
headers={
"Authorization": "Bearer w91_live_xxx",
"Content-Type": "application/json",
}
)
print(response.json())using var client = new HttpClient();
client.DefaultRequestHeaders.Add("Authorization", "Bearer w91_live_xxx");
var request = new HttpRequestMessage(HttpMethod.Get, "https://graph.whats91.com/api/v2/reports/conversations/summary");
var response = await client.SendAsync(request);
Console.WriteLine(await response.Content.ReadAsStringAsync());