Count tickets
Count how many tickets match your filters before loading the full list.
/v2026-04/tickets/count/Usage
Start from this cURL example and add filters as needed.
curl -X GET https://core.appliedlabs.ai/v2026-04/tickets/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 tickets assigned to this agent.
assignee_idstring · uuidOnly return tickets assigned to this teammate.
conversation_idstring · uuidOnly return tickets linked to this conversation.
conversation_id__inarrayOnly return tickets linked to these conversations. 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 ticket.
label_idstring · uuidOnly return tickets with this label.
priorityintegerOnly return tickets with this priority number.
priority__inarrayOnly return tickets with these priority numbers. Separate values with commas.
Header parameters
X-Shop-Idstring · uuidrequiredThe shop whose data you want to read.
Response
How many tickets matched your filters.
countintegerrequiredHow many records matched your request.
{
"count": 17
}