Skip to main content
GET
/
api
/
v1
/
account
/
usage
Usage History
curl --request GET \
  --url https://veogen.studio/api/v1/account/usage
{
  "data": [
    {
      "id": 123,
      "model_key": "<string>",
      "generation_type": "<string>",
      "amount_usd": 123,
      "source": "<string>",
      "created_at": "<string>"
    }
  ]
}

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.

This page covers the usage history endpoint. For account balance, see Get Account.

Query Parameters

model
string
Filter by model slug (e.g. veo-3.1-fast, gpt-4o-image).
type
string
Filter by generation type: video or image.
per_page
integer
Results per page. Defaults to 25.

Response 200 OK

Returns a paginated list of usage records.
data
array

Example

curl "https://veogen.studio/api/v1/account/usage?type=video" \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Accept: application/json"