Dashboard

Loading... ยท Member since -

Requests Today
-
This Month
-
Tokens Used
-
Balance Left
-

๐Ÿค– Chat Playground

Qwen Plus
Qwen 131K context

Balanced performance & speed ยท Recommended for most use cases

๐Ÿ’ฌ
Select a model and start chatting to test the API
Ready ยท Qwen Plus

Your API Key

Loading...

Created: - ยท Keep this key secret!

Quick Start โ€” Python Example
from openai import OpenAI

client = OpenAI(
    api_key=YOUR_API_KEY,
    base_url="https://aibridge-api.com/v1",
)

response = client.chat.completions.create(
    model="qwen-plus",
    messages=[{"role": "user", "content": "Hello!"}],
)
print(response.choices[0].message.content)
cURL Example
curl https://aibridge-api.com/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "model": "qwen-plus",
    "messages": [{"role": "user", "content": "Hello!"}]
  }'
Recent API Calls
ModelTimeTokensStatus
Loading...

Account Settings

Manage your account data and preferences.

๐Ÿ“ฅ Export My Data: Download all your account data, orders, and API usage history as a JSON file.
๐Ÿ—‘๏ธ Delete Account: Permanently delete your account and all associated data. This action cannot be undone.