Account Balance

$0.00
๐Ÿ“ฆ Free Plan
+ Add Funds
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

๐Ÿ“Š View Usage
๐Ÿ“ˆ 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)
๐Ÿ“š 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