Search for a command to run...
API reference
GET /usageRead the current month and recent closed-month message totals so your product can meter consumption, forecast overages, and surface billing context.
/usageAuthenticate with any valid partner API key. The response returns the month in progress as current and recent finalized months in history.
curl https://api.intelliconcierge.dev/v1/usage \
-H "Authorization: Bearer $INTELLI_API_KEY"{
"current": {
"period": "2026-07",
"inbound_messages": 412,
"outbound_messages": 388,
"outbound_template_messages": 120,
"total_messages": 800
},
"history": [
{
"period": "2026-06",
"inbound_messages": 301,
"outbound_messages": 344,
"outbound_template_messages": 96,
"total_messages": 645
}
]
}| Property | Type | Description |
|---|---|---|
period | YYYY-MM | UTC calendar month represented by this rollup. |
inbound_messages | integer | Billable messages received from end users. |
outbound_messages | integer | Billable free-form and template messages sent. |
outbound_template_messages | integer | Subset of outbound messages that also carry the published template price. |
total_messages | integer | Inbound plus outbound messages counted toward the plan bundle. |
Webhook delivery is free
The included bundle combines inbound and outbound messages. Overage pricing is per additional message; template pricing is added separately for outbound template messages.
| Plan | Monthly | Included | Overage / message |
|---|---|---|---|
| Free / Dev | $0 | 1,000 | $0.005 |
| Growth | $49 | 10,000 | $0.004 |
| Scale | $199 | 50,000 | $0.003 |
The 7-day trial starts when your first client is connected. Live sends continue through a 3-day grace period. When grace ends, live message endpoints return 402 trial_expired until a plan is active.
Development stays available