Skip to content

Get Started

Console Overview

After logging in at brivionix.com, you'll see the main navigation and the console sidebar.

Top Navigation

Menu ItemDescription
HomeReturn to the main website
ConsoleEnter the user console
PricingView model pricing (login required)
AboutLearn about the platform

Console Sidebar

Menu ItemFunction
PlaygroundInteractive API testing — select model, parameters, and test live
ChatBuilt-in chat conversation interface
DashboardAccount overview: balance, usage stats, model analytics
Token ManagementCreate, edit, disable, and delete API Keys
Usage LogsPer-request details: tokens, model, latency, cost, IP
Drawing LogsImage generation task history
Task LogsAsync task execution history
Wallet ManagementTop up, billing history, redemption codes, invite rewards
Personal SettingsAccount info, linked accounts, and preferences

Dashboard

The Dashboard is your daily entry point:

SectionPurpose
Account DataCurrent balance, top-up entry, total spent
Usage StatisticsTotal request count
Resource ConsumptionQuota and token usage
Performance IndicatorsAverage RPM and TPM
Model Data AnalysisSpend breakdown, call trends, model rankings
API InformationOfficial API endpoint and speed test
System NoticePlatform announcements
FAQQuick help links

Create Your First Token

  1. Go to Token ManagementCreate token
  2. Set a name (e.g., "dev-test")
  3. (Optional) Set quota limit, allowed models, expiration
  4. Click Create — copy and save the key immediately

Test the API

bash
curl https://brivionix.com/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer sk-your-api-key" \
  -d '{"model": "gpt-5.4-mini", "messages": [{"role": "user", "content": "Hello!"}]}'
  1. Top up in Wallet Management (Stripe, min 10 Credits)
  2. Create an API Key in Token Management
  3. Test your model and parameters in Playground
  4. Integrate https://brivionix.com/v1 into your app
  5. Check Usage Logs for call details and errors
PageURL
Homehttps://brivionix.com
Pricinghttps://brivionix.com/pricing (login required)
Consolehttps://brivionix.com/console
Playgroundhttps://brivionix.com/console/playground
Token Managementhttps://brivionix.com/console/token
Wallet Managementhttps://brivionix.com/console/topup
Personal Settingshttps://brivionix.com/console/personal

Next Steps