Account Balance
$0.00
๐ฆ Free Plan
Monthly Quota (Tokens)
Free plan: 10K tokens/month ยท Resets on the 1st
0 / 10,000 tokens used
10,000 remaining
๐ Your API Key
โ ๏ธ Security Notice: API key is only shown once. Copy and save it now. Never share your key publicly.
Loading...
Use this key in your code to authenticate API requests
๐ Usage Statistics
0
API Calls
0
Tokens Used
$0
Total Cost
๐ Quick Start - Python
# Install OpenAI SDK
pip install openai
# Initialize client with your API key
from openai import OpenAI
client = OpenAI(
base_url="https://llmbridge.io/v1"
)
# Make your first API call
response = client.chat.completions.create(
model="gpt-4o-mini",
messages=[{"role": "user", "content": "Hello!"}]
)
print(response.choices[0].message.content)
pip install openai
# Initialize client with your API key
from openai import OpenAI
client = OpenAI(
base_url="https://llmbridge.io/v1"
)
# Make your first API call
response = client.chat.completions.create(
model="gpt-4o-mini",
messages=[{"role": "user", "content": "Hello!"}]
)
print(response.choices[0].message.content)
๐ API Reference
- GET/v1/models List available models
- POST/v1/chat/completions Chat completion
- GET/api/v1/user/info Get user info
- GET/api/v1/my-quota Check quota status
- GET/api/v1/usage View usage stats
๐ก Rate Limits: Free: 20/min ยท Starter: 30/min ยท Developer: 60/min ยท Business: 200/min