Skip to main content

How Credits Work

Enrow uses a credit-based system. Credits are only consumed when a result is found or a check is performed.
EndpointCredits
Email Finder1 per email found
Phone Finder50 per phone found
Email Verifier0.25 per check
Credits are charged the same way for single and bulk operations — per individual result.

Checking Your Balance

Query the account endpoint to check your credit balance:
curl https://api.enrow.io/account/info \
  -H "x-api-key: YOUR_API_KEY"
Response
{
  "credits": 8500,
  "webhooks": ["https://your-app.com/webhooks/enrow"]
}
The account information is retrieved from the API key provided in the x-api-key header. No body payload is needed.
FieldDescription
creditsYour current credits balance
webhooksArray of your registered webhook URLs
Or visit your Dashboard to view usage and billing details.

Billing Settings

From the Billing page in the app, you can configure three options:
Automatically renew your plan when it expires. Set the credit amount to renew in the input field next to the toggle.
Automatically purchase additional pay-as-you-go credits when your balance runs low. Set the credit amount to top up in the input field next to the toggle.
Receive an email alert when your credit balance drops below a threshold. Set the credit amount threshold in the input field next to the toggle.

What Happens When Credits Run Out?

When your credit balance reaches zero, API requests will return an error:
{
  "error": "InsufficientBalance",
  "message": "Your credit balance is insufficient. Please top up or upgrade your plan.",
  "status": 402
}
To avoid interruptions, enable Auto Top-Up or Low Balance Alert from the Billing page.

Plans

Visit enrow.io/pricing to compare plans and find the right fit for your needs.