Models Hub
User GuideUser Console

Getting Started

Sign-up, console tour, billing units and how charges work — from registration to your first successful call.

Edit this page

This page takes you from sign-up to your first successful call. If you just want a working key as fast as possible, the quickstart below is enough.

Five-minute quickstart

  1. Sign up — Click Sign up in the top-right corner, register with your email and complete email verification.
  2. Add credit — Go to Wallet in the left menu and either pay online or enter a redemption code. Calls fail at zero balance.
  3. Create a key — Go to API KeysNew, enter a name, leave everything else at defaults, and copy the sk- key immediately after creation.
  4. Make your first call — Replace the domain with the site you are using and the key with the one you just copied:
curl https://<your-site-domain>/v1/chat/completions \
  -H "Authorization: Bearer sk-xxxxxxxx" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "gpt-5.5",
    "messages": [{"role": "user", "content": "Hello"}]
  }'

The API base URL is simply the domain you are currently visiting — no api. prefix, no port change. If you reached the platform through a partner's own domain, use that domain; the request paths are identical.

Sign up and log in

The platform uses email + password registration with email verification enabled:

  1. Click Sign up and enter your email and password.
  2. Click Get code, retrieve the verification code from your inbox and enter it.
  3. Submit to complete registration, then log in.

Verification codes expire. If one does not arrive, check your spam / promotions folder first — some corporate mail systems block system email, in which case try a common public email provider.

Forgot your password? Use "Forgot password" on the login page to reset via your registered email.

Account security: change your password on the Profile page. When your account is accessed from a new IP or device, the system emails you an alert. If it was not you, change your password immediately and review your API Keys list for keys you do not recognise.

Console tour

The left menu is grouped by purpose. Here is what you will use day to day.

Chat

MenuPurpose
PlaygroundTalk to models directly in the browser, no code required. See Playground & Model Catalog
Storyboard StudioVisual workspace for storyboard-to-video creation
ChatPreset third-party chat clients, launched with your key

General

MenuPurpose
OverviewAccount summary: balance, recent spend, call volume trend, model mix
DashboardDeeper usage analysis by model and over time
API KeysCreate and manage credentials. See API Key Management
Usage LogsPer-call detail and charges. See Usage & Logs
Task LogsExecution records for asynchronous tasks such as image and video generation
ChangelogPlatform updates; the menu flags new entries

Personal

MenuPurpose
WalletTop-ups, redemption codes, balance and order history. See Wallet & Top-up
BillingMonthly statements and reconciliation
SuppliersModels and measured performance per supplier route
ProfilePassword, notification preferences

Available menus vary by site — administrators can hide modules. If you cannot see one of the above, that feature is not enabled on your site.

Billing units

Internally the platform bills in a unit called quota, with a fixed conversion:

500,000 quota = $1

The interface normally shows currency amounts, so you rarely need to think about quota. It does appear in a few places (raw API fields, exported log details) — convert using the ratio above.

The platform accounts in USD. If you see local-currency amounts, those are display values converted at a unified reference rate; accounting itself remains in USD.

How charges are deducted

Understanding this prevents most billing confusion:

  • Your account balance is the single pool of money; every call is ultimately deducted from it.
  • A key's quota is not separate money. It is a spending cap for that key, used to limit how much a given workload, environment or colleague can spend.
  • So: a key with a $10 quota against a $3 account balance can still only spend $3.

Charging works as pre-deduct then settle: an estimate is held when the request starts and reconciled against actual usage when the response completes. If the upstream call fails, the held amount is fully refunded — you never pay for failed requests.

Next steps

On this page