Account

Manage your account and check credit balances

GET/api/v1/account/balances
Get your current credit balances for both web and API wallets.

Response

{
  "success": true,
  "request_id": "req_xxx",
  "data": {
    "web_credits": 100,
    "api_credits": 500
  }
}

Response Fields

FieldTypeDescription
web_creditsnumberCredits available for web playground
api_creditsnumberCredits available for API usage
Code Examples
curl https://gateway.nanobananapro.site/api/v1/account/balances \
  -H "Authorization: Bearer sk-your-api-key"
Nano Banana Pro API