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
Any issues any issue at all join our discord or use the feedback system and report it we will solve it faster than you think ̲𝖢̲𝗅̲𝗂̲𝖼̲𝗄̲ ̲𝗁̲𝖾̲𝗋̲𝖾̲ it will redirect to discord server.
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