Skip to content

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.

bash
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.com

Some clients need the /v1 suffix: https://brivionix.com/v1. Try both if unsure.


What models are available?

ModelBest For
gpt-5.5Complex reasoning (1.1M context)
gpt-5.4High-quality output
gpt-5.4-miniEveryday use (best value)
gpt-5.3-codexCoding
gpt-5.2General 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:

  1. API Key is incorrect or incomplete
  2. Token has expired
  3. Token quota is exhausted
  4. 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:

python
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

ChannelLink
💬 Discorddiscord.gg/vCSAJ9ZAa
📧 Emailsupport@brivionix.com

Last updated: