Switchpoint Router
Switchpoint AIReleased Jul 11, 2025
Switchpoint AI's router instantly analyzes your request and directs it to the optimal AI from an ever-evolving library. As the world of LLMs advances, our router gets smarter, ensuring you...
- Context window
- 131K tokens
- Input
- text
- Output
- text
- Tokenizer
- Other
- Released
- Jul 11, 2025
- Reasoning
- optional
Pricing
Per 1M tokens. The provider price and our flat 3% fee are separate columns — what you pay is their sum.
| Per 1M tokens | Provider | + 3% fee | You pay |
|---|---|---|---|
| Input | $0.850 | $0.025 | $0.875 |
| Output | $3.40 | $0.102 | $3.50 |
Supported parameters
- include_reasoning
- max_tokens
- reasoning
- response_format
- seed
- stop
- temperature
- top_k
- top_p
Call it
OpenAI-compatible: point your SDK at api.openkey.ai/v1 and use model switchpoint/router.
curl https://api.openkey.ai/v1/chat/completions \
-H "Authorization: Bearer $OPENKEY_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "switchpoint/router",
"messages": [{"role": "user", "content": "Hello"}]
}'import os
from openai import OpenAI
client = OpenAI(
base_url="https://api.openkey.ai/v1",
api_key=os.environ["OPENKEY_API_KEY"],
)
completion = client.chat.completions.create(
model="switchpoint/router",
messages=[{"role": "user", "content": "Hello"}],
)
print(completion.choices[0].message.content)import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.openkey.ai/v1",
apiKey: process.env.OPENKEY_API_KEY,
});
const completion = await client.chat.completions.create({
model: "switchpoint/router",
messages: [{ role: "user", content: "Hello" }],
});
console.log(completion.choices[0].message.content);Questions
- How much does Switchpoint Router cost via API?
- Through OpenKey, Switchpoint Router costs $0.875 per 1M input tokens and $3.50 per 1M output tokens. That is the provider price ($0.850 / $3.40) plus a flat 3% fee — nothing else.
- What is Switchpoint Router's context window?
- Switchpoint Router accepts up to 131K tokens of context.
- Is Switchpoint Router OpenAI-compatible?
- Yes. Send requests to OpenKey's /v1/chat/completions endpoint with model "switchpoint/router" using any OpenAI SDK — only the base URL and API key change.
- What inputs does Switchpoint Router support?
- Switchpoint Router accepts text input and produces text output.