Tracking Usage
Via 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
Via the API
Query your account endpoint to check usage programmatically:Response
Rate Limit Headers
Every API response includes headers to help you track rate limit usage in real time:| Header | Description |
|---|---|
X-RateLimit-Limit | Maximum requests allowed in the current window |
X-RateLimit-Remaining | Requests remaining in the current window |
X-RateLimit-Reset | Unix timestamp when the limit resets |
Optimizing Usage
Use Bulk Endpoints
Use Bulk Endpoints
Instead of making many single requests, batch them:
Use Webhooks Instead of Polling
Use Webhooks Instead of Polling
Polling wastes credits and rate limit quota. Use webhooks to receive results automatically:
Cache Results
Cache Results
Store results to avoid redundant API calls for the same contact.

