Account

GET /v1/account

Check your API key status and remaining daily credits. 0 credits (always free).

Example

curl "https://instantgradient.com/api/v1/account" \
  -H "Authorization: Bearer ig_your_key"

Response

{
  "data": {
    "plan": "pro",
    "credits_used_today": 6,
    "credits_remaining": 494,
    "daily_limit": 500,
    "resets_at": "2026-04-18T00:00:00.000Z"
  },
  "meta": {
    "request_id": "req_abc123def456",
    "api_version": "v1",
    "credits_used": 0,
    "credits_remaining": 494,
    "daily_limit": 500
  }
}

Use this to check your balance before making expensive batch requests. Every other response also includes meta.credits_remaining, so you can track usage inline.