Account
Manage your account and check credit balances
GET
/api/v1/account/balancesGet 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
| Field | Type | Description |
|---|---|---|
| web_credits | number | Credits available for web playground |
| api_credits | number | Credits available for API usage |
Code Examples
curl https://gateway.nanobananapro.site/api/v1/account/balances \
-H "Authorization: Bearer sk-your-api-key"