Resources
Billing & Usage
Track your API usage, manage invoices, and monitor spending across your MID integration.
Fetch Invoices
GET
/v1/service/billingsRetrieve billing history and invoices
Query Parameters
| Parameter | Type | Description |
|---|---|---|
| period | string | Billing period: YYYY-MM format |
| status | string | Filter: paid, pending, overdue |
| page | number | Page number (default: 1) |
| limit | number | Results per page (default: 20) |
Fetch invoices
curl -X GET 'https://api.mobid.io/v1/service/billings?period=2025-01' \
-H 'X-Mobid-Key: qk_your_api_key'Response
{
"code": 200,
"data": {
"invoices": [
{
"id": "inv_abc123",
"period": "2025-01",
"amount": 149.00,
"currency": "USD",
"status": "paid",
"paidAt": "2025-02-01T00:00:00Z",
"items": [
{"description": "Growth Plan", "amount": 149.00},
{"description": "API Calls (42,350)", "amount": 0.00}
]
}
],
"pagination": {
"page": 1,
"limit": 20,
"total": 12
}
}
}Usage Summary
GET
/v1/service/billings/usageGet current period API usage breakdown
Response
{
"code": 200,
"data": {
"period": "2025-01",
"plan": "Growth",
"usage": {
"consents": { "used": 1250, "limit": 50000 },
"authentications": { "used": 8420, "limit": 100000 },
"verifications": { "used": 342, "limit": 5000 },
"mandates": { "used": 89, "limit": 10000 }
},
"apiCalls": {
"total": 42350,
"dailyAverage": 1366
}
}
}Available Plans
Basic
$79/month
- 60 req/min
- 50,000 daily API calls
- Email support
- 5 concurrent connections
Most Popular
Growth
$149/month
- 1,000 req/min
- 500,000 daily API calls
- Priority support
- 50 concurrent connections
- Webhooks
Enterprise
$499/month
- Custom rate limits
- Unlimited API calls
- Dedicated support
- Custom integrations
- SLA guarantee