OpenAI-compatible inference API powered by DeepSeek, Qwen, and GLM. Same quality, fraction of the cost. Deploy in 30 seconds.
Per 1M input tokens
Average latency
Tokens served
Production models
How It Works
From signup to your first API call in under 2 minutes.
Sign up in 10 seconds. No credit card required. Get 100K free tokens instantly.
Generate your API key from the dashboard. One key for all models.
Drop in any OpenAI SDK. Just change the base_url. That's it — you're live.
Models
Access the most powerful open-source models through a single, unified API.
Pricing
No hidden fees. Pay for what you use.
Buying for your team?
👥 Team Plans — Get 15% OffFAQ
Enter your username and email to receive a verification code
Get started with 100K free tokens
Dashboard
Manage your API keys and monitor usage.
Billing
Add tokens to your account. More tokens = more API calls.
Team Plans
Get 15% off when you purchase as a team. More seats, bigger savings.
Documentation
Drop-in replacement for OpenAI. Just change the base URL and API key.
Base URL: http://47.82.164.254:3000/v1
import openai client = openai.OpenAI( api_key="sk-YOUR_API_KEY", base_url="http://47.82.164.254:3000/v1" ) response = client.chat.completions.create( model="deepseek-ai/DeepSeek-V3", messages=[{"role": "user", "content": "Hello!"}] ) print(response.choices[0].message.content)
curl http://47.82.164.254:3000/v1/chat/completions \ -H "Content-Type: application/json" \ -H "Authorization: Bearer sk-YOUR_API_KEY" \ -d '{"model":"deepseek-ai/DeepSeek-V3","messages":[{"role":"user","content":"Hello!"}]}'
const resp = await fetch("http://47.82.164.254:3000/v1/chat/completions", { method: "POST", headers: { "Content-Type": "application/json", "Authorization": "Bearer sk-YOUR_API_KEY" }, body: JSON.stringify({ model:"deepseek-ai/DeepSeek-V3", messages:[{role:"user",content:"Hello!"}] }) }); const data = await resp.json(); console.log(data.choices[0].message.content);
import OpenAI from 'openai'; const client = new OpenAI({ apiKey:"sk-YOUR_API_KEY", baseURL:"http://47.82.164.254:3000/v1" }); const r = await client.chat.completions.create({ model:"deepseek-ai/DeepSeek-V3", messages:[{role:"user",content:"Hello!"}] }); console.log(r.choices[0].message.content);
Playground
Send a message and see the response in real time.