Make your first API request in under a minute. Qubax AI is fully OpenAI-compatible — if you've used the OpenAI API before, you already know how to use Qubax.
Sign up at qubax.ai/register with email, Google, or a crypto wallet. Takes 30 seconds.
Go to Billing and top up with USDT or USDC on Ethereum, Tron, or Solana. Minimum $5. Credits never expire.
Go to API Keys and click "Create API Key". Your key starts with qbx_live_. Copy it — you won't see it again.
Using the OpenAI Python SDK:
from openai import OpenAI
client = OpenAI(
base_url="https://api.qubax.ai/v1",
api_key="qbx_live_..."
)
response = client.chat.completions.create(
model="claude-opus-4.8",
messages=[
{"role": "user", "content": "Hello! What can you do?"}
]
)
print(response.choices[0].message.content)Or with cURL:
curl https://api.qubax.ai/v1/chat/completions \
-H "Authorization: Bearer qbx_live_..." \
-H "Content-Type: application/json" \
-d '{
"model": "claude-opus-4.8",
"messages": [
{"role": "user", "content": "Hello!"}
]
}'