FAQ
Getting Started
How do I integrate the Brivionix API?
Replace the API endpoint in your app with https://brivionix.com/v1 and use your Brivionix API Key.
curl https://brivionix.com/v1/chat/completions \
-H "Authorization: Bearer sk-your-api-key" \
-H "Content-Type: application/json" \
-d '{"model": "gpt-5.4-mini", "messages": [{"role": "user", "content": "Hello"}]}'TIP
Model availability depends on your token's Group. Ensure your group includes the models you need.
What is the API Base URL?
https://brivionix.comSome clients need the /v1 suffix: https://brivionix.com/v1. Try both if unsure.
What models are available?
| Model | Best For |
|---|---|
| gpt-5.5 | Complex reasoning (1.1M context) |
| gpt-5.4 | High-quality output |
| gpt-5.4-mini | Everyday use (best value) |
| gpt-5.3-codex | Coding |
| gpt-5.2 | General tasks |
See Supported Models for details.
Billing
How does pricing work?
Pay-as-you-go: 0.85 RMB = 1 Credit. You only pay for tokens actually processed. See Billing.
What payment methods are supported?
- Stripe — Visa, Mastercard, and other credit/debit cards ($0.12 USD per credit)
How do I check my balance?
Log in to the Console Dashboard — balance, usage, and stats are shown on the main page.
How do I request a refund?
Email support@brivionix.com. Unused balance is eligible for review. Consumed credits are non-refundable.
What is cache billing?
When the same conversation prefix is sent repeatedly, cached tokens get a ~90% discount. All models support this.
API Usage
Getting 401 Unauthorized?
Common causes:
- API Key is incorrect or incomplete
- Token has expired
- Token quota is exhausted
- Header format error — must be
Authorization: Bearer sk-xxx
Getting 429 Rate Limited?
Reduce request frequency and add retry logic with exponential backoff. Avoid sending many concurrent requests.
Does it support streaming?
Yes. Set "stream": true in your request.
Can I use the OpenAI SDK?
Absolutely. Just set base_url:
from openai import OpenAI
client = OpenAI(api_key="sk-your-key", base_url="https://brivionix.com/v1")How do I read the pricing page?
- Default view shows nominal quota price (for cross-platform comparison)
- Toggle "Top Up price" to see your actual cost after exchange rate
Contact
| Channel | Link |
|---|---|
| 💬 Discord | discord.gg/vCSAJ9ZAa |
| support@brivionix.com |
