Count conversations
Count how many conversations match your filters before loading the full list.
/v2026-04/conversations/count/Usage
Start from this cURL example and add filters as needed.
curl -X GET https://core.appliedlabs.ai/v2026-04/conversations/count/ \
-H "Authorization: Bearer <api-token>" \
-H "X-Shop-Id: 66e4c4d2-34e8-4f85-8f51-84b6ed7b5f10"Authorizations
Send your Applied API key as Authorization: Bearer AL.... Create the key in the Applied dashboard and keep it on your server.
Query parameters
agent_idstring · uuidOnly return conversations assigned to this agent.
contact_idstring · uuidOnly return conversations for this contact.
contact_id__inarrayOnly return conversations for these contacts. Separate values with commas.
created_at__rangestringOnly return records created during this time window. Use 'relative:-7d,' for the last 7 days, or '2026-04-01T00:00:00Z,2026-04-07T23:59:59Z' for a custom start and end time. The maximum window is 30 days.
idstring · uuidOnly return this conversation.
id__inarrayOnly return conversations with these IDs. Separate values with commas.
resolutionstringOnly return conversations with this resolution.
resolution__inarrayOnly return conversations with these resolutions. Separate values with commas.
Header parameters
X-Shop-Idstring · uuidrequiredThe shop whose data you want to read.
Response
How many conversations matched your filters.
countintegerrequiredHow many records matched your request.
{
"count": 42
}