Does the Usage endpoint consume credits?
No. The Usage endpoint reports account consumption and does not burn enrichment credits.
A single synchronous endpoint to view all your API usage across enrichment and search requests: credits consumed, monthly allocation, remaining balance, and detailed per-API breakdowns. Defaults to the current month; pass month and year to read an earlier period (future periods are rejected with invalid_date). Usage checks are free - they never consume credits.
Manual credentials take precedence over your account key.
The Usage endpoint reports account-level API consumption so developers can monitor credits, monthly allocation, request volume, and per-API breakdowns.
Credits are charged based on the matched configuration. The listed cost is the per-result unit price.
| Feature | Credits | Notes |
|---|---|---|
| Usage | 0 | Monitoring endpoint - usage checks are free |
A successful response wraps the payload in the { success, data, timestamp } envelope (also shown live in the panel on the right):
{
"success": true,
"data": {
"month": 12,
"year": 2024,
"period": "2024-12",
"credits_used": {
"total": 68,
"search": 45,
"enrichment": 23
},
"requests_count": {
"total": 25,
"search": 15,
"enrichment": 10
},
"limits": {
"monthly_allocation": 10000,
"available_credits": 9932,
"is_unlimited": false
},
"breakdown": {
"search_results_returned": 45,
"enrichments_performed": 23,
"total_credits_consumed": 68
}
},
"timestamp": "2026-01-01T00:00:00"
}