Skip to main content
GET
/
account
/
info
curl --request GET \
  --url https://api.enrow.io/account/info \
  --header 'x-api-key: YOUR_API_KEY'
{
  "credits": 36000,
  "webhooks": [
    "https://api.mysuperwebsite/api/webhook"
  ]
}
GET
https://api.enrow.io/account/info
Retrieve your current credit balance and registered webhooks. No body payload is needed — account information is retrieved from the API key.

Response

200 — Account info

credits
number
Your current credit balance
webhooks
array
Array of your registered webhook URLs

Error Responses

CodeMessage
401This apikey is not valid
curl --request GET \
  --url https://api.enrow.io/account/info \
  --header 'x-api-key: YOUR_API_KEY'
{
  "credits": 36000,
  "webhooks": [
    "https://api.mysuperwebsite/api/webhook"
  ]
}