BETAWe are currently in beta. Should you encounter any issues, please do not hesitate to contact us.
Discount on all models + if you follow us on twitter and hit us on dm you will get free credit to your email hurry up 🔥🔥🔥 click here
GET · /api/v1/credits

Read your balance.

Lightweight read. Use it to render "you have N credits left" in your own UI, or to gate expensive calls before you make them.

Request

GET /api/v1/credits HTTP/1.1
Host: getvivix.com
Authorization: Bearer vvx_live_…

Response

HTTP/1.1 200 OK
{
  "balance":           12847,
  "tier":              "pro",
  "cycle_resets_at":   "2026-06-09T00:00:00Z",
  "rate_limit": {
    "calls_per_minute": 240,
    "concurrent_jobs":  5
  },
  "spent_this_cycle":  2153,
  "granted_this_cycle": 15000
}
Cheap call — feel free to hit it on every page load if you're building a dashboard. It's a single Postgres read with no provider round-trip.

Errors

  • 401 KEY_INVALID — bad or missing key
  • 403 TIER_LOCKED — Pro/Ultimate only

Where to next