Balance Endpoint
Check your remaining credit balance. Useful for pre-flight checks before large jobs and for automations (or AI agents) that need to know when to top up.
Request
GET https://api.importly.io/balance
bash1curl https://api.importly.io/balance \2 -H "Authorization: Bearer YOUR_API_KEY"
Response
json1{2 "success": true,3 "data": {4 "balance": 2.97,5 "currency": "USD"6 }7}
balance is your remaining credit in US dollars. Jobs are billed against this
balance at the rates described in Billing. Top up any time from
the dashboard.
Errors
| Status | Meaning | | ------ | ------- | | 401 | Missing or invalid API key | | 429 | Rate limited (600 requests/hour) |