General
What is Routeway?
What is Routeway?
https://api.routeway.ai/v1 and swap models by changing a single string.How is Routeway different from calling providers directly?
How is Routeway different from calling providers directly?
- One API key and one base URL for everything
- Switch between 200+ models without changing your client code
- Single dashboard for usage, spend, and key management
- Access models from providers you may not have a direct account with
Is Routeway OpenAI-compatible?
Is Routeway OpenAI-compatible?
base_url to https://api.routeway.ai/v1 and swap your key. No other code changes required.Anthropic-style requests (/v1/messages) are also supported for models that expose that interface.Which providers and models are available?
Which providers and models are available?
Account & API Keys
How do I get an API key?
How do I get an API key?
- Sign up or log in at routeway.ai/dashboard
- Open the API Keys tab
- Click Create API Key, give it a name, and confirm
- Copy and store the key securely — it won’t be shown again
What does a Routeway API key look like?
What does a Routeway API key look like?
sk- and are 32+ characters long. If your key doesn’t match this format, you may be using a key from a different provider.Can I create multiple API keys?
Can I create multiple API keys?
What should I do if my API key is compromised?
What should I do if my API key is compromised?
Can I restrict what a key can access?
Can I restrict what a key can access?
Models
What is the difference between free and paid models?
What is the difference between free and paid models?
:free appended to their ID (e.g. deepseek-r1:free). They cost $0.00 but are rate-limited to 20 requests/minute and 200 requests/day.Paid (PAYG) models have no suffix and are billed per token with no rate limits at the API level. They require a positive account balance.See Available Models for more detail.Are free models reliable enough for production?
Are free models reliable enough for production?
- They can be removed at any time. Free model availability depends on provider capacity and our ability to continue offering them. A model that exists today may be gone tomorrow without notice.
- They can be unstable. Free tiers are lower priority in our routing stack, so you may see higher error rates, slower response times, and more frequent
502upstream errors compared to PAYG models. - Rate limits are strict and shared. 20 RPM and 200 RPD are hard caps with no way to increase them. Under load, you’ll hit these quickly.
- No SLA. There are no uptime or latency guarantees on free models.
:free suffix). The per-token cost on most models is low enough that real workloads are still very affordable.When does the free model rate limit reset?
When does the free model rate limit reset?
How do I know if a model supports vision, tools, or reasoning?
How do I know if a model supports vision, tools, or reasoning?
/v1/models response includes a capabilities object:How do I know which endpoints a model supports?
How do I know which endpoints a model supports?
endpoints array in the model object lists all supported API paths, e.g.:/v1/images/generations or /v1/images/edits and won’t appear on chat completion routes.A model shows available: false — what does that mean?
A model shows available: false — what does that mean?
Can I use the Anthropic SDK with Routeway?
Can I use the Anthropic SDK with Routeway?
/v1/messages in their endpoints. Point the Anthropic SDK at https://api.routeway.ai/v1/messages and use your Routeway API key.How frequently are new models added?
How frequently are new models added?
Billing & Pricing
How does billing work?
How does billing work?
What are tokens, and how many do I use?
What are tokens, and how many do I use?
- 1,000 tokens ≈ 750 words
- 1M tokens ≈ a full-length novel
Do I need to pre-load credits before using paid models?
Do I need to pre-load credits before using paid models?
What payment methods are accepted?
What payment methods are accepted?
- Credit and debit cards (Visa, Mastercard, Amex, and more)
- Automatic invoicing
Do you support PayPal or other payment methods?
Do you support PayPal or other payment methods?
- Discord: Join discord.gg/RjX2CpdPpd and open a support ticket — this is the fastest way to reach us.
- Email: help@team.routeway.ai
What is the DeepSeek subscription?
What is the DeepSeek subscription?
| Plan | Biweekly | Monthly |
|---|---|---|
| Core | $6.99 · 15M tokens | $15.99 · 35M tokens |
| Core Pro | $12.99 · 28M tokens | $34.99 · 80M tokens |
What happens when my subscription tokens run out?
What happens when my subscription tokens run out?
Does prompt caching cost extra?
Does prompt caching cost extra?
pricing.caching in the model’s API response, or see the Billing — Prompt Caching section for examples.How do I avoid unexpected charges?
How do I avoid unexpected charges?
429 errors for that key until the limit resets or is raised. See Budget Controls.How do I monitor my usage and spend?
How do I monitor my usage and spend?
/v1/account/balance, /v1/account/activity).Can I get a refund?
Can I get a refund?
API & Integration
Which endpoints does Routeway support?
Which endpoints does Routeway support?
| Endpoint | Purpose |
|---|---|
POST /v1/chat/completions | Text generation (OpenAI-compatible) |
POST /v1/responses | OpenAI Responses API |
POST /v1/messages | Anthropic-style messages |
POST /v1/images/generations | Image generation from a text prompt |
POST /v1/images/edits | Image editing with a mask and prompt |
GET /v1/models | List all available models with pricing |
endpoints array.I'm getting a 401 error — what's wrong?
I'm getting a 401 error — what's wrong?
401 means your API key is missing, invalid, or revoked. Check that:- You’re passing the key as
Authorization: Bearer <your-key> - The key starts with
clsk-and was copied in full - The key hasn’t been deleted in the dashboard
I'm getting a 429 error — what does that mean?
I'm getting a 429 error — what does that mean?
429 means you’ve hit a rate limit or spending cap:- Free models: 20 RPM / 200 RPD limit reached — wait for the reset or switch to a PAYG model
- Hard spending limit: your monthly cap was hit — raise or remove it in the dashboard
- Key-level limit: a per-key restriction was triggered — check your key settings
I'm getting a 502 error — is Routeway down?
I'm getting a 502 error — is Routeway down?
502 means the upstream AI provider returned an error or timed out. This is usually temporary. Retry with exponential backoff, or switch to an equivalent model from a different provider. If the issue persists, check Discord for status updates.Does Routeway support streaming?
Does Routeway support streaming?
"stream": true in your request body. The response will be delivered as server-sent events (SSE), identical to OpenAI’s streaming format. To receive usage data in a streaming response, add "stream_options": {"include_usage": true}.Does Routeway support function / tool calling?
Does Routeway support function / tool calling?
capabilities.function_call is true. The request and response format is identical to OpenAI’s tool-calling spec.Can I use Routeway with LangChain, LlamaIndex, or other frameworks?
Can I use Routeway with LangChain, LlamaIndex, or other frameworks?
base_url (or equivalent) to https://api.routeway.ai/v1 and use your Routeway API key. No other changes needed.Can I use Routeway with chat UIs like Lobe Chat or Cline?
Can I use Routeway with chat UIs like Lobe Chat or Cline?
Still stuck?
Can’t find what you’re looking for? Reach out:- Discord: discord.gg/RjX2CpdPpd — fastest response
- Email: help@team.routeway.ai
trace_id from the error response — it lets us find your request instantly.