Documentation
sylphx.ai exposes an OpenAI-compatible API. If your code already uses the OpenAI SDK, you need to change exactly one line.
Overview
The sylphx.ai gateway proxies requests to upstream model providers (Anthropic, ZAI, and more). We implement the OpenAI Chat Completions API, so any client library that targets OpenAI — in any language — works with sylphx.ai without modification beyond the base URL and key.
- ✓Full OpenAI Chat Completions API compatibility (/v1/chat/completions)
- ✓Server-sent events streaming
- ✓Multi-turn conversation support
- ✓System prompts, tool use, and vision inputs
- ✓Provider-side prompt cache affinity
Base URL
https://api.sylphx.ai/v1
All endpoints are relative to this base URL. For example, the chat completions endpoint is POST https://api.sylphx.ai/v1/chat/completions.
Authentication
Pass your sylphx.ai API key in the Authorization header as a Bearer token. You can generate and manage API keys from your dashboard.
Authorization: Bearer YOUR_SYLPHX_API_KEY Content-Type: application/json
SYLPHX_API_KEY).Quick Start
Install the OpenAI SDK and point it at the sylphx.ai gateway.
import OpenAI from "openai"
const client = new OpenAI({
apiKey: process.env.SYLPHX_API_KEY,
baseURL: "https://api.sylphx.ai/v1",
})
async function main() {
const response = await client.chat.completions.create({
model: "claude-fable-5",
messages: [
{
role: "user",
content: "Explain the difference between LLMs and diffusion models.",
},
],
})
console.log(response.choices[0].message.content)
}
main()Streaming
sylphx.ai supports server-sent events (SSE) streaming via the standard OpenAI SDK. Pass stream: true to receive chunks as they arrive.
import OpenAI from "openai"
const client = new OpenAI({
apiKey: process.env.SYLPHX_API_KEY,
baseURL: "https://api.sylphx.ai/v1",
})
const stream = await client.chat.completions.create({
model: "glm-5.2",
messages: [
{ role: "user", content: "Write a recursive Fibonacci in TypeScript." }
],
stream: true,
})
for await (const chunk of stream) {
const content = chunk.choices[0]?.delta?.content
if (content) {
process.stdout.write(content)
}
}Model IDs
Pass the model ID as the model field in your request. No provider prefix is needed.
| Model | Model ID |
|---|---|
| Auto (smart routing) | auto |
| OpenAI GPT-5.5 | gpt-5.5 |
| OpenAI GPT-5.5 Pro | gpt-5.5-pro |
| OpenAI GPT-5.4 | gpt-5.4 |
| OpenAI GPT-5.4 Pro | gpt-5.4-pro |
| OpenAI GPT-5.4 Mini | gpt-5.4-mini |
| OpenAI GPT-5.4 Nano | gpt-5.4-nano |
| OpenAI GPT-5.3 Codex | gpt-5.3-codex |
| OpenAI GPT-5.3 Codex Spark | gpt-5.3-codex-spark |
| OpenAI GPT-5.2 | gpt-5.2 |
| OpenAI GPT-5.2 Pro | gpt-5.2-pro |
| OpenAI GPT-5.2 Codex | gpt-5.2-codex |
| OpenAI GPT-5.1 | gpt-5.1 |
| OpenAI GPT-5.1 Codex | gpt-5.1-codex |
| OpenAI GPT-5.1 Codex Max | gpt-5.1-codex-max |
| OpenAI GPT-5.1 Codex Mini | gpt-5.1-codex-mini |
| Sylphx Council | council |
| Sylphx Task | task |
| OpenAI GPT-5 | gpt-5 |
| GLM-5.2 | glm-5.2 |
| OpenAI GPT-5 Pro | gpt-5-pro |
| OpenAI GPT-5 Codex | gpt-5-codex |
| OpenAI GPT-5 Mini | gpt-5-mini |
| OpenAI GPT-5 Nano | gpt-5-nano |
| OpenAI GPT-4.1 | gpt-4.1 |
| OpenAI GPT-4.1 Mini | gpt-4.1-mini |
| OpenAI GPT-4.1 Nano | gpt-4.1-nano |
| MiniMax M3 | minimax-m3 |
| OpenAI text-embedding-3-large | text-embedding-3-large |
| Command R+ | command-r-plus |
| OpenAI text-embedding-3-small | text-embedding-3-small |
| Gemini Embedding 2 | gemini-embedding-2 |
| Anthropic Claude Fable 5 | claude-fable-5 |
| Elephant | elephant-alpha |
| Google: Nano Banana 2 (Gemini 3.1 Flash Image) | gemini-3.1-flash-image |
| Inception: Mercury | mercury |
| Anthropic Claude Opus 4.8 | claude-opus-4-8 |
| Google: Nano Banana Pro (Gemini 3 Pro Image) | gemini-3-pro-image |
| OpenRouter: Fusion | fusion |
| MoonshotAI: Kimi K2.7 Code | kimi-k2.7-code |
| Anthropic: Claude Fable Latest | claude-fable-latest |
| NVIDIA: Nemotron 3 Ultra | nemotron-3-ultra-550b-a55b |
| Qwen: Qwen3.7 Plus | qwen3.7-plus |
| StepFun: Step 3.7 Flash | step-3.7-flash |
| Anthropic: Claude Opus 4.8 (Fast) | claude-opus-4.8-fast |
| Anthropic: Claude Opus 4.8 | claude-opus-4.8 |
| Qwen: Qwen3.7 Max | qwen3.7-max |
| xAI: Grok Build 0.1 | grok-build-0.1 |
| Google: Gemini 3.5 Flash | gemini-3.5-flash |
| Anthropic: Claude Opus 4.7 (Fast) | claude-opus-4.7-fast |
| Perceptron: Perceptron Mk1 | perceptron-mk1 |
| inclusionAI: Ring-2.6-1T | ring-2.6-1t |
| Google: Gemini 3.1 Flash Lite | gemini-3.1-flash-lite |
| OpenAI: GPT Chat Latest | gpt-chat-latest |
| xAI: Grok 4.3 | grok-4.3 |
| Mistral: Mistral Medium 3.5 | mistral-medium-3-5 |
| Owl Alpha | owl-alpha |
| Poolside: Laguna XS.2 | laguna-xs.2 |
| Poolside: Laguna M.1 | laguna-m.1 |
| Anthropic Claude Haiku Latest | claude-haiku-latest |
| OpenAI GPT Mini Latest | gpt-mini-latest |
| Google Gemini Pro Latest | gemini-pro-latest |
| MoonshotAI Kimi Latest | kimi-latest |
| Google Gemini Flash Latest | gemini-flash-latest |
| Anthropic Claude Sonnet Latest | claude-sonnet-latest |
| OpenAI GPT Latest | gpt-latest |
| Qwen: Qwen3.5 Plus 2026-04-20 | qwen3.5-plus-20260420 |
| NVIDIA: Nemotron Nano 12B 2 VL | nemotron-nano-12b-v2-vl |
| Arcee AI: Trinity Large Preview | trinity-large-preview |
| Qwen: Qwen3.6 Flash | qwen3.6-flash |
| Qwen: Qwen3.6 35B A3B | qwen3.6-35b-a3b |
| DeepSeek: DeepSeek V4 Pro | deepseek-v4-pro |
| DeepSeek: DeepSeek V4 Flash | deepseek-v4-flash |
| inclusionAI: Ling-2.6-1T | ling-2.6-1t |
| Tencent: Hy3 preview | hy3-preview |
| Meituan: LongCat Flash Chat | longcat-flash-chat |
| Xiaomi: MiMo-V2.5-Pro | mimo-v2.5-pro |
| Xiaomi: MiMo-V2.5 | mimo-v2.5 |
| OpenAI: GPT-5.4 Image 2 | gpt-5.4-image-2 |
| Anthropic: Claude Opus Latest | claude-opus-latest |
| Pareto Code Router | pareto-code |
| MoonshotAI: Kimi K2.6 | kimi-k2.6 |
| Anthropic: Claude Opus 4.7 | claude-opus-4.7 |
| MiniMax: MiniMax M2-her | minimax-m2-her |
| Mistral: Ministral 3 8B 2512 | ministral-8b-2512 |
| Mistral: Ministral 3 3B 2512 | ministral-3b-2512 |
| Mistral: Mistral Large 3 2512 | mistral-large-2512 |
| Prime Intellect: INTELLECT-3 | intellect-3 |
| Google: Nano Banana Pro (Gemini 3 Pro Image Preview) | gemini-3-pro-image-preview |
| OpenAI: GPT-5.1 Chat | gpt-5.1-chat |
| MoonshotAI: Kimi K2 Thinking | kimi-k2-thinking |
| Perplexity: Sonar Pro Search | sonar-pro-search |
| Mistral: Voxtral Small 24B 2507 | voxtral-small-24b-2507 |
| OpenAI: gpt-oss-safeguard-20b | gpt-oss-safeguard-20b |
| MiniMax: MiniMax M2 | minimax-m2 |
| Qwen: Qwen3 VL 32B Instruct | qwen3-vl-32b-instruct |
| IBM: Granite 4.0 Micro | granite-4.0-h-micro |
| Microsoft: Phi 4 Mini Instruct | phi-4-mini-instruct |
| OpenAI: GPT-5 Image Mini | gpt-5-image-mini |
| Qwen: Qwen3 VL 8B Thinking | qwen3-vl-8b-thinking |
| Qwen: Qwen3 VL 8B Instruct | qwen3-vl-8b-instruct |
| IBM: Granite 4.1 8B | granite-4.1-8b |
| Baidu: Qianfan-OCR-Fast | qianfan-ocr-fast |
| Qwen: Qwen3.6 Max Preview | qwen3.6-max-preview |
| Qwen: Qwen3.6 27B | qwen3.6-27b |
| Mistral: Mistral Small Creative | mistral-small-creative |
| inclusionAI: Ling-2.6-flash | ling-2.6-flash |
| Google: Gemma 4 26B A4B | gemma-4-26b-a4b-it |
| OpenAI: GPT Audio | gpt-audio |
| OpenAI: GPT Audio Mini | gpt-audio-mini |
| MiniMax: MiniMax M2.1 | minimax-m2.1 |
| Google: Gemini 3 Flash Preview | gemini-3-flash-preview |
| NVIDIA: Nemotron 3 Nano 30B A3B | nemotron-3-nano-30b-a3b |
| OpenAI: GPT-5.2 Chat | gpt-5.2-chat |
| Nex AGI: DeepSeek V3.1 Nex N1 | deepseek-v3.1-nex-n1 |
| Mistral: Devstral 2 2512 | devstral-2512 |
| Relace: Relace Search | relace-search |
| EssentialAI: Rnj 1 Instruct | rnj-1-instruct |
| Body Builder (beta) | bodybuilder |
| Mistral: Ministral 3 14B 2512 | ministral-14b-2512 |
| OpenAI: GPT-5 Image | gpt-5-image |
| OpenAI: o3 Deep Research | o3-deep-research |
| OpenAI: o4 Mini Deep Research | o4-mini-deep-research |
| NVIDIA: Llama 3.3 Nemotron Super 49B V1.5 | llama-3.3-nemotron-super-49b-v1.5 |
| Google: Nano Banana (Gemini 2.5 Flash Image) | gemini-2.5-flash-image |
| Qwen: Qwen3 VL 30B A3B Thinking | qwen3-vl-30b-a3b-thinking |
| Google: Gemma 4 31B | gemma-4-31b-it |
| Qwen: Qwen3.6 Plus | qwen3.6-plus |
| Google: Lyria 3 Pro Preview | lyria-3-pro-preview |
| Google: Lyria 3 Clip Preview | lyria-3-clip-preview |
| Kwaipilot: KAT-Coder-Pro V2 | kat-coder-pro-v2 |
| Reka Edge | reka-edge |
| MiniMax: MiniMax M2.7 | minimax-m2.7 |
| Mistral: Mistral Small 4 | mistral-small-2603 |
| NVIDIA: Nemotron 3 Super | nemotron-3-super-120b-a12b |
| Qwen: Qwen3.5-9B | qwen3.5-9b |
| Inception: Mercury 2 | mercury-2 |
| OpenAI: GPT-5.3 Chat | gpt-5.3-chat |
| Gemini 3.1 Flash Lite Preview | gemini-3.1-flash-lite-preview |
| Google: Nano Banana 2 (Gemini 3.1 Flash Image Preview) | gemini-3.1-flash-image-preview |
| Qwen: Qwen3.5-35B-A3B | qwen3.5-35b-a3b |
| Qwen: Qwen3.5-27B | qwen3.5-27b |
| Qwen: Qwen3.5-122B-A10B | qwen3.5-122b-a10b |
| Qwen: Qwen3.5-Flash | qwen3.5-flash-02-23 |
| LiquidAI: LFM2-24B-A2B | lfm-2-24b-a2b |
| Google: Gemini 3.1 Pro Preview Custom Tools | gemini-3.1-pro-preview-customtools |
| Google: Gemini 3.1 Pro Preview | gemini-3.1-pro-preview |
| Qwen: Qwen3.5 Plus 2026-02-15 | qwen3.5-plus-02-15 |
| Qwen: Qwen3.5 397B A17B | qwen3.5-397b-a17b |
| MiniMax: MiniMax M2.5 | minimax-m2.5 |
| Qwen: Qwen3 Max Thinking | qwen3-max-thinking |
| Qwen: Qwen3 Coder Next | qwen3-coder-next |
| Free Models Router | free |
| StepFun: Step 3.5 Flash | step-3.5-flash |
| MoonshotAI: Kimi K2.5 | kimi-k2.5 |
| Qwen: Qwen3 VL 30B A3B Instruct | qwen3-vl-30b-a3b-instruct |
| TheDrummer: Cydonia 24B V4.1 | cydonia-24b-v4.1 |
| Google: Gemini 2.5 Flash Lite Preview 09-2025 | gemini-2.5-flash-lite-preview-09-2025 |
| Baidu: ERNIE 4.5 21B A3B | ernie-4.5-21b-a3b |
| Qwen: Qwen3 VL 235B A22B Thinking | qwen3-vl-235b-a22b-thinking |
| Qwen: Qwen3 VL 235B A22B Instruct | qwen3-vl-235b-a22b-instruct |
| Qwen: Qwen3 Max | qwen3-max |
| Qwen: Qwen3 Coder Plus | qwen3-coder-plus |
| DeepSeek: DeepSeek V3.1 Terminus | deepseek-v3.1-terminus |
| Qwen: Qwen3 Coder Flash | qwen3-coder-flash |
| Qwen: Qwen2.5 Coder 7B Instruct | qwen2.5-coder-7b-instruct |
| Qwen: Qwen Plus 0728 (thinking) | qwen-plus-2025-07-28:thinking |
| Qwen: Qwen Plus 0728 | qwen-plus-2025-07-28 |
| Qwen: Qwen3 30B A3B Thinking 2507 | qwen3-30b-a3b-thinking-2507 |
| Nous: Hermes 4 70B | hermes-4-70b |
| Nous: Hermes 4 405B | hermes-4-405b |
| Mistral: Mistral Medium 3.1 | mistral-medium-3.1 |
| OpenAI: GPT-5 Chat | gpt-5-chat |
| Mistral: Devstral Medium | devstral-medium |
| Mistral: Devstral Small 1.1 | devstral-small |
| OpenAI: gpt-oss-120b | gpt-oss-120b |
| OpenAI: GPT-4o Audio | gpt-4o-audio-preview |
| NVIDIA: Nemotron Nano 9B V2 | nemotron-nano-9b-v2 |
| OpenAI: gpt-oss-20b | gpt-oss-20b |
| Anthropic: Claude Opus 4.1 | claude-opus-4.1 |
| Baidu: ERNIE 4.5 VL 28B A3B | ernie-4.5-vl-28b-a3b |
| Mistral: Codestral 2508 | codestral-2508 |
| Qwen: Qwen3 Coder 30B A3B Instruct | qwen3-coder-30b-a3b-instruct |
| Qwen: Qwen3 30B A3B Instruct 2507 | qwen3-30b-a3b-instruct-2507 |
| Qwen: Qwen3 235B A22B Thinking 2507 | qwen3-235b-a22b-thinking-2507 |
| Qwen: Qwen3 Coder 480B A35B | qwen3-coder |
| ByteDance: UI-TARS 7B | ui-tars-1.5-7b |
| Switchpoint Router | router |
| MoonshotAI: Kimi K2 0711 | kimi-k2 |
| Inception: Mercury Coder | mercury-coder |
| Morph: Morph V3 Large | morph-v3-large |
| Morph: Morph V3 Fast | morph-v3-fast |
| Baidu: ERNIE 4.5 VL 424B A47B | ernie-4.5-vl-424b-a47b |
| Mistral: Mistral Small 3.2 24B | mistral-small-3.2-24b-instruct |
| Qwen: QwQ 32B | qwq-32b |
| MoonshotAI: Kimi K2 0905 | kimi-k2-0905 |
| EleutherAI: Llemma 7b | llemma_7b |
| NVIDIA: Llama 3.1 Nemotron Ultra 253B v1 | llama-3.1-nemotron-ultra-253b-v1 |
| Tencent: Hunyuan A13B Instruct | hunyuan-a13b-instruct |
| MiniMax: MiniMax M1 | minimax-m1 |
| Gemini 2.5 Flash | gemini-2.5-flash |
| Google: Gemini 2.5 Pro Preview 06-05 | gemini-2.5-pro-preview |
| DeepSeek: R1 0528 | deepseek-r1-0528 |
| Anthropic: Claude Opus 4 | claude-opus-4 |
| Anthropic: Claude Sonnet 4 | claude-sonnet-4 |
| Google: Gemma 3n 4B | gemma-3n-e4b-it |
| Mistral: Mistral Medium 3 | mistral-medium-3 |
| Google: Gemini 2.5 Pro Preview 05-06 | gemini-2.5-pro-preview-05-06 |
| Arcee AI: Virtuoso Large | virtuoso-large |
| Arcee AI: Coder Large | coder-large |
| Meta: Llama Guard 4 12B | llama-guard-4-12b |
| Qwen: Qwen3 30B A3B | qwen3-30b-a3b |
| Qwen: Qwen3 8B | qwen3-8b |
| Qwen: Qwen3 14B | qwen3-14b |
| Qwen: Qwen3 32B | qwen3-32b |
| Qwen: Qwen3 235B A22B | qwen3-235b-a22b |
| OpenAI: o4 Mini High | o4-mini-high |
| OpenAI: o3 | o3 |
| o4 Mini | o4-mini |
| Llama 4 Maverick | llama-4-maverick |
| Llama 4 Scout | llama-4-scout |
| Qwen: Qwen2.5 VL 32B Instruct | qwen2.5-vl-32b-instruct |
| Arcee AI: Spotlight | spotlight |
| Arcee AI: Maestro Reasoning | maestro-reasoning |
| DeepSeek V3 | deepseek-chat-v3-0324 |
| OpenAI: o1-pro | o1-pro |
| Anthropic: Claude 3.7 Sonnet | claude-3.7-sonnet |
| Anthropic: Claude 3.7 Sonnet (thinking) | claude-3.7-sonnet:thinking |
| Mistral: Mistral Small 3.1 24B | mistral-small-3.1-24b-instruct |
| Google: Gemini 2.0 Flash Lite | gemini-2.0-flash-lite-001 |
| Google: Gemma 3 4B | gemma-3-4b-it |
| Google: Gemma 3 12B | gemma-3-12b-it |
| Cohere: Command A | command-a |
| OpenAI: GPT-4o-mini Search Preview | gpt-4o-mini-search-preview |
| Google: Gemini 2.5 Flash Lite | gemini-2.5-flash-lite |
| Qwen: Qwen3 235B A22B Instruct 2507 | qwen3-235b-a22b-2507 |
| Baidu: ERNIE 4.5 300B A47B | ernie-4.5-300b-a47b |
| OpenAI: o3 Pro | o3-pro |
| Google: Gemini 2.0 Flash | gemini-2.0-flash-001 |
| OpenAI: GPT-4o Search Preview | gpt-4o-search-preview |
| Reka Flash 3 | reka-flash-3 |
| Google: Gemma 3 27B | gemma-3-27b-it |
| Perplexity: Sonar Reasoning Pro | sonar-reasoning-pro |
| Perplexity: Sonar Deep Research | sonar-deep-research |
| DeepSeek: R1 Distill Qwen 32B | deepseek-r1-distill-qwen-32b |
| Mistral: Saba | mistral-saba |
| Qwen: Qwen2.5 VL 72B Instruct | qwen2.5-vl-72b-instruct |
| Qwen: Qwen-Plus | qwen-plus |
| OpenAI: o3 Mini | o3-mini |
| Mistral: Mistral Small 3 | mistral-small-24b-instruct-2501 |
| Google: Gemma 2 9B | gemma-2-9b-it |
| Perplexity: Sonar | sonar |
| DeepSeek: R1 Distill Llama 70B | deepseek-r1-distill-llama-70b |
| OpenAI: GPT-4o (extended) | gpt-4o:extended |
| Llama Guard 3 8B | llama-guard-3-8b |
| Mistral Large | mistral-large-2411 |
| Qwen: Qwen VL Plus | qwen-vl-plus |
| Qwen: Qwen VL Max | qwen-vl-max |
| Qwen: Qwen-Turbo | qwen-turbo |
| Qwen: Qwen-Max | qwen-max |
| DeepSeek: R1 | deepseek-r1 |
| Mistral: Pixtral Large 2411 | pixtral-large-2411 |
| MiniMax: MiniMax-01 | minimax-01 |
| Microsoft: Phi 4 | phi-4 |
| Sao10K: Llama 3.1 70B Hanami x1 | l3.1-70b-hanami-x1 |
| DeepSeek: DeepSeek V3 | deepseek-chat |
| Sao10K: Llama 3.3 Euryale 70B | l3.3-euryale-70b |
| OpenAI: o1 | o1 |
| NVIDIA: Llama 3.1 Nemotron 70B Instruct | llama-3.1-nemotron-70b-instruct |
| Cohere: Command R7B (12-2024) | command-r7b-12-2024 |
| Meta: Llama 3.3 70B Instruct | llama-3.3-70b-instruct |
| OpenAI: GPT-4o (2024-11-20) | gpt-4o-2024-11-20 |
| OpenAI: GPT-4 Turbo (older v1106) | gpt-4-1106-preview |
| Mistral Large 2407 | mistral-large-2407 |
| Qwen2.5 Coder 32B Instruct | qwen-2.5-coder-32b-instruct |
| Anthropic: Claude 3.5 Haiku | claude-3.5-haiku |
| Magnum v4 72B | magnum-v4-72b |
| Qwen: Qwen2.5 7B Instruct | qwen-2.5-7b-instruct |
| Gemini 2.5 Pro | gemini-2.5-pro |
| Inflection: Inflection 3 Pi | inflection-3-pi |
| Meta: Llama 3.2 3B Instruct | llama-3.2-3b-instruct |
| Sao10k: Llama 3 Euryale 70B v2.1 | l3-euryale-70b |
| NousResearch: Hermes 2 Pro - Llama-3 8B | hermes-2-pro-llama-3-8b |
| Meta: Llama 3 70B Instruct | llama-3-70b-instruct |
| Meta: Llama 3.2 11B Vision Instruct | llama-3.2-11b-vision-instruct |
| Meta: Llama 3.2 1B Instruct | llama-3.2-1b-instruct |
| Qwen2.5 72B Instruct | qwen-2.5-72b-instruct |
| Cohere: Command R+ (08-2024) | command-r-plus-08-2024 |
| Cohere: Command R (08-2024) | command-r-08-2024 |
| Sao10K: Llama 3.1 Euryale 70B v2.2 | l3.1-euryale-70b |
| Nous: Hermes 3 70B Instruct | hermes-3-llama-3.1-70b |
| Nous: Hermes 3 405B Instruct | hermes-3-llama-3.1-405b |
| Sao10K: Llama 3 8B Lunaris | l3-lunaris-8b |
| OpenAI: GPT-4o (2024-08-06) | gpt-4o-2024-08-06 |
| Meta: Llama 3.1 8B Instruct | llama-3.1-8b-instruct |
| Meta: Llama 3.1 70B Instruct | llama-3.1-70b-instruct |
| Mistral: Mistral Nemo | mistral-nemo |
| OpenAI: GPT-4o-mini | gpt-4o-mini |
| OpenAI: GPT-4o-mini (2024-07-18) | gpt-4o-mini-2024-07-18 |
| Google: Gemma 2 27B | gemma-2-27b-it |
| OpenAI: GPT-4o (2024-05-13) | gpt-4o-2024-05-13 |
| OpenAI: GPT-4o | gpt-4o |
| Meta: Llama 3 8B Instruct | llama-3-8b-instruct |
| Mistral: Mixtral 8x22B Instruct | mixtral-8x22b-instruct |
| WizardLM-2 8x22B | wizardlm-2-8x22b |
| OpenAI: GPT-4 Turbo | gpt-4-turbo |
| Anthropic: Claude 3 Haiku | claude-3-haiku |
| Mistral Large | mistral-large |
| OpenAI: GPT-4 Turbo Preview | gpt-4-turbo-preview |
| Mistral: Mixtral 8x7B Instruct | mixtral-8x7b-instruct |
| OpenAI: GPT-3.5 Turbo (older v0613) | gpt-3.5-turbo-0613 |
| Mistral: Mistral 7B Instruct v0.1 | mistral-7b-instruct-v0.1 |
| OpenAI: GPT-4 (older v0314) | gpt-4-0314 |
| Auto Router | auto |
| OpenAI: GPT-3.5 Turbo Instruct | gpt-3.5-turbo-instruct |
| OpenAI: GPT-3.5 Turbo 16k | gpt-3.5-turbo-16k |
| Mancer: Weaver (alpha) | weaver |
| AllenAI: Olmo 3 32B Think | olmo-3-32b-think |
| Amazon: Nova Premier 1.0 | nova-premier-v1 |
| Qwen: Qwen3 Next 80B A3B Thinking | qwen3-next-80b-a3b-thinking |
| Qwen: Qwen3 Next 80B A3B Instruct | qwen3-next-80b-a3b-instruct |
| Tongyi DeepResearch 30B A3B | tongyi-deepresearch-30b-a3b |
| AI21: Jamba Large 1.7 | jamba-large-1.7 |
| Perplexity: Sonar Pro | sonar-pro |
| OpenAI: o3 Mini High | o3-mini-high |
| AionLabs: Aion-1.0 | aion-1.0 |
| AionLabs: Aion-1.0-Mini | aion-1.0-mini |
| AionLabs: Aion-RP 1.0 (8B) | aion-rp-llama-3.1-8b |
| Amazon: Nova Lite 1.0 | nova-lite-v1 |
| Amazon: Nova Micro 1.0 | nova-micro-v1 |
| Amazon: Nova Pro 1.0 | nova-pro-v1 |
| MythoMax 13B | mythomax-l2-13b |
| OpenAI: GPT-4 | gpt-4 |
| Goliath 120B | goliath-120b |
| AllenAI: Olmo 3.1 32B Instruct | olmo-3.1-32b-instruct |
| OpenAI: GPT-3.5 Turbo | gpt-3.5-turbo |
| Cohere: Rerank 4 Pro | rerank-4-pro |
| Cohere: Rerank 4 Fast | rerank-4-fast |
| Cohere: Rerank v3.5 | rerank-v3.5 |
| AllenAI: Olmo 2 32B Instruct | olmo-2-0325-32b-instruct |
| AlfredPros: CodeLLaMa 7B Instruct Solidity | codellama-7b-instruct-solidity |
| Claude Opus 4.7 | claude-opus-4-7 |
| AionLabs: Aion-2.0 | aion-2.0 |
| Amazon: Nova 2 Lite | nova-2-lite-v1 |
| Anthropic: Claude Opus 4.6 (Fast) | claude-opus-4.6-fast |
| Arcee AI: Trinity Large Thinking | trinity-large-thinking |
| ByteDance Seed: Seed-2.0-Lite | seed-2.0-lite |
| ByteDance Seed: Seed-2.0-Mini | seed-2.0-mini |
| Anthropic: Claude Sonnet 4.6 | claude-sonnet-4.6 |
| Anthropic: Claude Opus 4.6 | claude-opus-4.6 |
| ByteDance Seed: Seed 1.6 Flash | seed-1.6-flash |
| ByteDance Seed: Seed 1.6 | seed-1.6 |
| Arcee AI: Trinity Mini | trinity-mini |
| DeepSeek: DeepSeek V3.2 Speciale | deepseek-v3.2-speciale |
| DeepSeek: DeepSeek V3.2 | deepseek-v3.2 |
| Anthropic: Claude Opus 4.5 | claude-opus-4.5 |
| Deep Cogito: Cogito v2.1 671B | cogito-v2.1-671b |
| Anthropic: Claude Haiku 4.5 | claude-haiku-4.5 |
| Anthropic: Claude Sonnet 4.5 | claude-sonnet-4.5 |
| DeepSeek: DeepSeek V3.2 Exp | deepseek-v3.2-exp |
| Relace: Relace Apply 3 | relace-apply-3 |
| DeepSeek: DeepSeek V3.1 | deepseek-chat-v3.1 |
| Inflection: Inflection 3 Productivity | inflection-3-productivity |
| Claude Opus 4 | claude-opus-4-20250514 |
| Claude Sonnet 4 | claude-sonnet-4-20250514 |
| Baidu: ERNIE 4.5 21B A3B Thinking | ernie-4.5-21b-a3b-thinking |
| Claude Sonnet 4.6 | claude-sonnet-4-6 |
| Claude Opus 4.6 | claude-opus-4-6 |
| Claude Opus 4.5 | claude-opus-4-5-20251101 |
| Claude Haiku 3 | claude-3-haiku-20240307 |
| Claude Haiku 4.5 | claude-haiku-4-5-20251001 |
| Claude Sonnet 4.5 | claude-sonnet-4-5-20250929 |
| Claude Opus 4.1 | claude-opus-4-1-20250805 |
| Xiaomi: MiMo-V2-Flash | mimo-v2-flash |
| Z.ai: GLM 5V Turbo | glm-5v-turbo |
| Z.ai: GLM 4.5V | glm-4.5v |
| Z.ai: GLM 4.5 | glm-4.5 |
| Z.ai: GLM 4.5 Air | glm-4.5-air |
| TheDrummer: Skyfall 36B V2 | skyfall-36b-v2 |
| TheDrummer: UnslopNemo 12B | unslopnemo-12b |
| TheDrummer: Rocinante 12B | rocinante-12b |
| ReMM SLERP 13B | remm-slerp-l2-13b |
| Grok 4.1 Fast | grok-4.1-fast |
| Z.ai: GLM 4 32B | glm-4-32b |
| TNG: DeepSeek R1T2 Chimera | deepseek-r1t2-chimera |
| Xiaomi: MiMo-V2-Omni | mimo-v2-omni |
| Xiaomi: MiMo-V2-Pro | mimo-v2-pro |
| xAI: Grok 3 Mini Beta | grok-3-mini-beta |
| xAI: Grok 3 Beta | grok-3-beta |
| Grok 4 Fast | grok-4-fast |
| xAI: Grok Code Fast 1 | grok-code-fast-1 |
| Grok 4 | grok-4 |
| xAI: Grok 3 Mini | grok-3-mini |
| Grok 3 | grok-3 |
| GLM-5.1 | glm-5.1 |
| Grok 4.20 Multi-Agent | grok-4.20-multi-agent |
| Grok 4.20 | grok-4.20 |
| Z.ai: GLM 5 Turbo | glm-5-turbo |
| Z.ai: GLM 5 | glm-5 |
| Upstage: Solar Pro 3 | solar-pro-3 |
| Writer: Palmyra X5 | palmyra-x5 |
| Z.ai: GLM 4.7 Flash | glm-4.7-flash |
| Z.ai: GLM 4.7 | glm-4.7 |
| Z.ai: GLM 4.6V | glm-4.6v |
| Z.ai: GLM 4.6 | glm-4.6 |
Error Codes
sylphx.ai returns standard OpenAI-format error responses. HTTP status codes follow REST conventions.
| Status | Meaning |
|---|---|
| 401 | Invalid or missing API key |
| 403 | Key does not have access to this model |
| 404 | Model not found |
| 429 | Rate limit exceeded — retry with backoff |
| 502 | Upstream provider error — automatic failover triggered |
| 503 | All upstream providers unavailable |