Understand how Synaptiq counts conversations, tracks usage, and handles overages.
Synaptiq meters usage based on conversations -- the core billing unit across all plans. This page explains what counts as a conversation, how to monitor your usage, and what happens when you approach or exceed your plan limit.
A conversation is a single chat session between your AI widget and a visitor. Here is precisely how Synaptiq defines it:
What does NOT count as a conversation:
Synaptiq tracks qualified leads as a separate metric in your analytics, but billing is based on conversations, not qualified leads. A qualified lead is a conversation where the visitor provided at least one piece of contact information (email, phone, or company name) and met the qualification criteria you configured in Admin > AI Configuration > Lead Scoring.
This distinction matters: you are billed for all conversations, including those that do not produce a qualified lead.
Your current usage is visible in two places:
Navigate to /admin/billing to see your usage summary:
The main analytics view at /admin/analytics includes a Usage tab with more detail:
Synaptiq sends automatic alerts as you approach your plan limit. Alerts are delivered via email to all team members with the Admin or Billing role, and as in-app notifications in the dashboard.
| Threshold | Alert type | What happens | |---|---|---| | 80% used | Warning | Email + in-app notification. No action required -- this is informational. | | 90% used | Urgent | Email + in-app banner. Recommends upgrading or purchasing an overage pack. | | 100% reached | Limit hit | Email + in-app banner. Behavior depends on your plan (see below). |
You can customize alert recipients and disable in-app banners at /admin/billing/notifications. Email alerts to billing contacts cannot be disabled.
Behavior when you reach your conversation limit depends on your plan:
Starter ($497/mo): You receive a notification when approaching your 500 conversation limit. Conversations are soft-capped — your agent stays live, and a banner appears in your dashboard recommending an upgrade. Synaptiq allows a 10% grace buffer (50 extra conversations) before pausing the widget. The widget reactivates automatically when your billing cycle resets.
Growth ($997/mo) and Enterprise: These plans include unlimited conversations, so you will never hit a usage cap. Growth plans are additionally billed $25 per qualified lead.
On the Growth plan, you pay a base rate of $997/month plus $25 for each qualified lead. A qualified lead is a conversation where the visitor met your configured qualification criteria (BANT or MEDDIC) and was marked as qualified by the AI agent.
What counts as a qualified lead:
What does NOT count:
Usage billing for qualified leads is charged at the end of each billing cycle based on the total count for that period. You can monitor your qualified lead count in real time at /admin/billing.
Your billing cycle is based on the date you activated your plan:
When usage resets, your conversation count returns to zero and any unused overage packs expire. The reset happens at midnight UTC on your reset date.
If you are on the Growth or Enterprise plan, you can query your usage programmatically:
curl -H "Authorization: Bearer YOUR_API_KEY" \
https://synaptiqintel.com/api/v1/usage/current
The response includes:
{
"plan": "growth",
"billing_cycle_start": "2026-03-15T00:00:00Z",
"billing_cycle_end": "2026-04-15T00:00:00Z",
"conversations_used": 4832,
"conversations_limit": null,
"qualified_leads": 1247,
"days_remaining": 10
}
A null value for conversations_limit indicates an unlimited plan.
Was this page helpful?