# Get Balance

Return the API key workspace's available credit balance.

`GET /api/v1/me/balance`

## Overview

Returns the available and reserved balance of the workspace that owns the API key, in USD.

## Parameters


## Example

```bash
curl https://capi.ai/api/v1/me/balance \
  -H "Authorization: Bearer YOUR_API_TOKEN"
```

## Response

```json
{
  "account": "workspace_4821",
  "key_name": "production",
  "unlimited": true,
  "balance": { "amount": 128.44, "currency": "USD" },
  "reserved": { "amount": 0.61, "currency": "USD" }
}
```
