Quick Start Guide
Get up and running in under 2 minutes.
1. Get Your API Key
- Create an account on the platform.
- Top up your balance (starts from $1.50).
- Go to API Keys and create a key — choose General for most models, or Aggregated for our exclusive claude-sonnet-4-6.
- Copy your key (format:
sk-xxxx...xxxx)
2. Base URL
All API requests go through:
http://localhost:3000/api/v1
This is an OpenAI-compatible endpoint. Most SDKs and clients accept it as a drop-in replacement.
3. Make Your First API Call
Test your key with a simple chat completion:
curl http://localhost:3000/api/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer sk-YOUR_KEY_HERE" \
-d '{
"model": "gpt-5.4",
"messages": [{"role": "user", "content": "Hello!"}]
}'4. List Available Models
curl http://localhost:3000/api/v1/models \ -H "Authorization: Bearer sk-YOUR_KEY_HERE"
Returns only the models your API key type has access to.
5. SDK Integration
Use any OpenAI-compatible SDK. Example with Python:
from openai import OpenAI
client = OpenAI(
base_url="http://localhost:3000/api/v1",
api_key="sk-YOUR_KEY_HERE"
)
response = client.chat.completions.create(
model="gpt-5.4",
messages=[{"role": "user", "content": "Hello!"}]
)
print(response.choices[0].message.content)