curl --request GET \
--url https://api.enrow.io/account/info \
--header 'x-api-key: YOUR_API_KEY'
const response = await fetch('https://api.enrow.io/account/info', {
headers: {
'x-api-key': process.env.ENROW_API_KEY
}
});
const data = await response.json();
console.log(`Credits: ${data.credits}`);
import requests
import os
url = "https://api.enrow.io/account/info"
headers = {
"x-api-key": os.getenv("ENROW_API_KEY")
}
response = requests.get(url, headers=headers)
data = response.json()
print(f"Credits: {data['credits']}")
{
"credits": 36000,
"webhooks": [
"https://api.mysuperwebsite/api/webhook"
]
}
{
"message": "This apikey is not valid"
}
Account
Get Account Info
Check your Enrow account credit balance and registered webhook URLs with a single authenticated GET request
GET
/
account
/
info
curl --request GET \
--url https://api.enrow.io/account/info \
--header 'x-api-key: YOUR_API_KEY'
const response = await fetch('https://api.enrow.io/account/info', {
headers: {
'x-api-key': process.env.ENROW_API_KEY
}
});
const data = await response.json();
console.log(`Credits: ${data.credits}`);
import requests
import os
url = "https://api.enrow.io/account/info"
headers = {
"x-api-key": os.getenv("ENROW_API_KEY")
}
response = requests.get(url, headers=headers)
data = response.json()
print(f"Credits: {data['credits']}")
{
"credits": 36000,
"webhooks": [
"https://api.mysuperwebsite/api/webhook"
]
}
{
"message": "This apikey is not valid"
}
GET
Retrieve your current credit balance and registered webhooks. Authenticate every request with your API key in the
https://api.enrow.io/account/info
x-api-key header. No body payload is needed — account information is retrieved from the API key.
Response
200 — Account info
number
Your current credit balance. See Credits & billing to understand how credits are consumed per endpoint.
array
Array of your registered webhook URLs. May be absent when no webhooks are configured. See How webhooks work.
Error Responses
| Code | Message |
|---|---|
| 401 | This apikey is not valid |
A
401 response means your API key is missing or invalid. See Error handling for the full list of status codes and response formats.curl --request GET \
--url https://api.enrow.io/account/info \
--header 'x-api-key: YOUR_API_KEY'
const response = await fetch('https://api.enrow.io/account/info', {
headers: {
'x-api-key': process.env.ENROW_API_KEY
}
});
const data = await response.json();
console.log(`Credits: ${data.credits}`);
import requests
import os
url = "https://api.enrow.io/account/info"
headers = {
"x-api-key": os.getenv("ENROW_API_KEY")
}
response = requests.get(url, headers=headers)
data = response.json()
print(f"Credits: {data['credits']}")
{
"credits": 36000,
"webhooks": [
"https://api.mysuperwebsite/api/webhook"
]
}
{
"message": "This apikey is not valid"
}
Next steps
Credits & billing
See how credits are consumed for each endpoint.
Authentication
How to pass your API key in the x-api-key header.
Webhooks
Get notified automatically when a search completes.
Find an email
Search for a professional email address from a name and company.
Was this page helpful?

