Skip to main content
GET
/
v1
/
veo
/
credits
Get Veo Credits
curl --request GET \
  --url https://genaipro.vn/api/v1/veo/credits \
  --header 'Authorization: Bearer <token>'
[
  {
    "quota": 100,
    "used": 23,
    "expires_at": "2026-06-30T23:59:59Z"
  }
]

Response

Returns an array of credit objects with quota, usage, and expiration info.
quota
integer
Total credit quota.
used
integer
Number of credits used.
expires_at
string
Expiration date (ISO 8601). Can be null.
[
  {
    "quota": 100,
    "used": 23,
    "expires_at": "2026-06-30T23:59:59Z"
  }
]