How do I track my API usage?
You can track Enrow API usage in two ways: visually in the dashboard, or programmatically through the account endpoint.Where can I see usage in the dashboard?
The Enrow Dashboard provides a real-time view of your usage:- Credits consumed over time
- Breakdown by endpoint
- Success and failure rates
- Remaining credits
How do I check usage with the API?
Query the account endpoint to check usage programmatically. Authenticate the request with your API key in thex-api-key header — no body payload is needed:
Response
credits value is your remaining balance, and webhooks lists the URLs registered on your account. See the Account info reference for the full response schema.
How do I optimize my API usage?
To reduce credit consumption and stay within your rate limits, batch your requests with bulk endpoints, receive results with webhooks instead of polling, and cache results you have already retrieved.Use Bulk Endpoints
Use Bulk Endpoints
Instead of making many single requests, batch them (up to 5,000 entries per email bulk request, 3,000 per phone bulk request):See Find Bulk Emails and Find Bulk Phones for batch operations.
Use Webhooks Instead of Polling
Use Webhooks Instead of Polling
Polling wastes credits and rate limit quota. Use webhooks to receive results automatically:Learn how delivery works in How webhooks work.
Cache Results
Cache Results
Store results to avoid redundant API calls for the same contact.
FAQ
Does the usage endpoint cost credits?
Does the usage endpoint cost credits?
No. Querying the Account info endpoint returns your remaining credits and registered webhooks without consuming any credits.
Do failed searches consume credits?
Do failed searches consume credits?
Credits are consumed per the rules in Credits & billing. When a request fails before processing — for example a
402 Insufficient credits response — no credits are deducted. See Error handling and Status codes for the response formats.How can I avoid hitting rate limits?
How can I avoid hitting rate limits?
Batch your requests with bulk endpoints and use webhooks instead of polling for results. Both reduce the number of calls you make. See Rate limits for the current request limits.
Next steps
Credits & billing
See how credits are consumed for each endpoint.
Account info
Retrieve your credit balance and registered webhooks.
Webhooks
Receive results automatically instead of polling.
Rate limits
Understand the API request limits before scaling up.

