Skip to main content

Documentation Index

Fetch the complete documentation index at: https://veogenstudio.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

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.
curl --request GET \
  --url 'https://api.veogen.studio/api/v1/balance' \
  --header 'Authorization: Bearer <token>' \
  --header 'Accept: application/json'

Response Attributes

remaining_balance
float
Your remaining USD balance. Can be used to check if you have enough balance before triggering an expensive generation.
used_balance
float
Your total used USD balance across all text, image, and video generations.
{
  "remaining_balance": 42.5000,
  "used_balance": 12.3000
}