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.
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.
Add a subdomain you own (e.g. api.yourbrand.com). After we approve it, add one DNS record:
Type: CNAME
Name: api
Target: connect.qubaxlink.comHTTPS is set up automatically, usually within 10 minutes. Full domain guide →
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.
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 →
It works with every OpenAI-compatible SDK and tool. Only the base URL changes:
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).