OpenAI-compatible endpoint. 400+ AI models from 59 providers via OpenRouter — GPT, Claude, Gemini, DeepSeek, Qwen, GLM and more. One API key.
curl -X POST https://arliwork.com/api/register \ -H "Content-Type: application/json" \ -d '{"email":"dev@company.com","password":"your_password","name":"Your Name"}'
Returns your api_key (arli-*) and litellm_key (sk-*). Both work. $1 free credit.
curl https://arliwork.com/v1/models \ -H "Authorization: Bearer YOUR_API_KEY"
curl https://arliwork.com/v1/chat/completions \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "model": "deepseek-v4-flash", "messages": [{"role": "user", "content": "Hello"}] }'
| Endpoint | Method | Description |
|---|---|---|
/v1/models | GET | List all available models |
/v1/chat/completions | POST | OpenAI-compatible chat completion |
/v1/agent/run beta | POST | Autonomous agent task execution |
/api/register | POST | Developer registration (returns API key) |
| Provider | Models | Pricing (input / output per 1M tokens) |
|---|---|---|
| DeepSeek | v4-pro, v4-flash, r1, v3.2, chat | $0.10 – $0.70 / $0.20 – $2.50 |
| Qwen (Alibaba) | 3.7-max, 3.7-plus, 3-max, coder, coder-plus | $0.07 – $1.48 / $0.26 – $4.42 |
| GLM (Zhipu) | 5.2, 5.1, 5, 4.7, 4.6, vision | $0.06 – $0.97 / $0.40 – $3.04 |
| Kimi (Moonshot) | k3, k2.7-code, k2.6, k2.5 | $0.57 – $3.00 / $2.30 – $15.00 |
| MiniMax | m3, m2.7, m2.5, m1 | $0.15 – $0.55 / $0.90 – $2.20 |
| ByteDance (Seed) | 2.0-lite, 1.6, 1.6-flash | $0.07 – $0.25 / $0.30 – $2.00 |
| Baidu (ERNIE) | 4.5 | $0.42 / $1.25 |
| Tencent (Hunyuan) | hy3, a13b | $0.06 – $0.20 / $0.21 – $0.80 |
| Xiaomi (Mimo) | v2.5-pro, v2.5 | $0.14 – $0.44 / $0.28 – $0.87 |
| Kwaipilot | kat-coder-pro-v2.5, v2 | $0.30 – $0.74 / $1.20 – $2.96 |
| Inception | mercury-2 | $0.25 / $0.75 |
| Aion Labs | 3.0 | $3.00 / $6.00 |
| StepFun | 3.7-flash | $0.20 / $1.15 |
| Plan | Price | API Spend | Rate Limit | SLA |
|---|---|---|---|---|
| Developer | $500/mo | Up to $2,000 | 100 req/min | 24h email |
| Growth | $2,500/mo | Up to $15,000 | 1,000 req/min | 4h Slack, 99.5% |
| Enterprise | $10,000/mo | Custom | 10,000 req/min | 1h phone, 99.9% |
All requests require a Bearer token. Two key types are supported:
arli-* — Platform API keys (full access: models, agents, sandbox)sk-* — LiteLLM keys (model access only, OpenAI-compatible)Get your key at arliwork.com/app/register.
Drop-in replacement — just change the base URL:
# Python from openai import OpenAI client = OpenAI( api_key="YOUR_API_KEY", base_url="https://arliwork.com/v1" ) response = client.chat.completions.create( model="deepseek-v4-flash", messages=[{"role": "user", "content": "Hello"}] )
Enterprise: enterprise@arliwork.com
Developer: Join our Discord (coming soon)
API Status: status.arliwork.com