> ## Documentation Index
> Fetch the complete documentation index at: https://veogenstudio.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Query Dashboard Balance

> Get the remaining and used USD balance of the authenticated user.

## Real-time balance monitoring

Get the remaining and used balance using your API key. This endpoint is extremely useful to dynamically monitor your usage and available USD balance directly from within your application.

```bash theme={null}
curl --request GET \
  --url 'https://api.veogen.studio/api/v1/balance' \
  --header 'Authorization: Bearer <token>' \
  --header 'Accept: application/json'
```

### Response Attributes

<ResponseField name="remaining_balance" type="float">
  Your remaining USD balance. Can be used to check if you have enough balance before triggering an expensive generation.
</ResponseField>

<ResponseField name="used_balance" type="float">
  Your total used USD balance across all text, image, and video generations.
</ResponseField>

<ResponseExample>
  ```json theme={null}
  {
    "remaining_balance": 42.5000,
    "used_balance": 12.3000
  }
  ```
</ResponseExample>
