Reseller Tutorial

Sell AI to your own customers, under your own brand, on your own domain — for example api.yourbrand.com. Your customers never see our name. You choose the price, we run the models, servers and billing records.

How the money works

  • You pay our normal public price from your Qubax credit for every request your customers make.
  • Your customers pay you — our price plus your margin (default +10%, you can change it any time).
  • You collect from your customers any way you like (Stripe, invoice, crypto). We never contact them.
  • Free to join. No subscription, no monthly fee.
ℹ️
Example: a request costs $1.00 at our price. With 10% margin your customer is charged $1.10, $1.00 is taken from your credit, and you keep $0.10.

Step 1 — Apply

Top up at least $50 in Billing, then open Re Sell and fill in the short form. We review every application, usually within 24 hours, and email you the result.

Step 2 — Connect your domain

Add a subdomain you own (e.g. api.yourbrand.com). After we approve it, add one DNS record:

Text
Type:   CNAME
Name:   api
Target: connect.qubaxlink.com

HTTPS is set up automatically, usually within 10 minutes. Full domain guide →

Step 3 — Set your price

Pick one margin for all models, or a different margin per model, in Resell → Prices & Models. You can also hide models. Your price can never be below ours.

Step 4 — Add a customer and give them a key

Each customer gets their own API key and either a prepaid balance (requests stop at $0) or a spend limit (you invoice them later). How billing works →

Step 5 — Your customer calls your API

It works with every OpenAI-compatible SDK and tool. Only the base URL changes:

Python
from openai import OpenAI

client = OpenAI(base_url="https://api.yourbrand.com/v1", api_key="sk-...")
stream = client.chat.completions.create(
    model="gpt-5.1-mini",
    messages=[{"role": "user", "content": "Hello!"}],
    stream=True,
)
for chunk in stream:
    print(chunk.choices[0].delta.content or "", end="")

Supported on your domain: chat completions, responses, messages (Anthropic format), embeddings, images, audio and /v1/models (shows your prices).

Important to know

  • Keep your credit topped up. When your credit reaches $0, all your customers stop. We email you when it drops below $10, and you can get a webhook.
  • Customer keys only work on your domain. Your normal Qubax keys do not work on your domain.
  • We never store prompts or answers in your dashboard — only usage numbers.
  • You are responsible for how your customers use the API (our terms apply to them too).
  • Automate everything with the Reseller API.
Reseller Tutorial — Sell AI Under Your Own Brand · Qubax AI