Quickstart
Three steps to your first response: create a key, set the HTTPS base URL, send a request. The API speaks the OpenAI Chat Completions format, so existing OpenAI clients work by changing two lines.
Create an API key
Sign in and open the API keys page to mint a key. The secret is shown once at creation — copy it immediately and store it securely. Keys begin with the prefix sk-sqr-.
Open API keys →Set the base URL
Send all requests to the gateway base URL over HTTPS in production. The chat endpoint lives at /chat/completions. Never send your key over plain HTTP.
https://router.web-annonces.net/v1
Send your first request
Use cURL or any OpenAI-compatible SDK. Pass a model alias (see Models), your messages, and your key as a Bearer token. Leave stream unset or false on the default gateway.
curl https://router.web-annonces.net/v1/chat/completions \
-H "Authorization: Bearer sk-sqr-xxxxxxxx" \
-H "Content-Type: application/json" \
-d '{
"model": "blaze/deepseek-v4-pro",
"messages": [
{ "role": "user", "content": "Hello!" }
]
}'
from openai import OpenAI
client = OpenAI(
api_key="sk-sqr-xxxxxxxx",
base_url="https://router.web-annonces.net/v1",
)
response = client.chat.completions.create(
model="blaze/deepseek-v4-pro",
messages=[{"role": "user", "content": "Hello!"}],
)
print(response.choices[0].message.content)
const response = await fetch("https://router.web-annonces.net/v1/chat/completions", {
method: "POST",
headers: {
Authorization: "Bearer sk-sqr-xxxxxxxx",
"Content-Type": "application/json",
},
body: JSON.stringify({
model: "blaze/deepseek-v4-pro",
messages: [{ role: "user", content: "Hello!" }],
}),
});
const data = await response.json();
Because the API is OpenAI-compatible, the official OpenAI SDKs work unchanged apart from the base URL and key — no provider-specific client required. Call the gateway only; never put upstream provider keys in your app.
Authentication & keys
Every request to the API must carry your secret key in the Authorization header as a Bearer token.
Authorization header
Authorization: Bearer sk-sqr-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Key format
Keys are prefixed with sk-sqr- followed by a random secret. The full secret is returned only once, at creation or rotation; afterwards only a masked form is shown.
Rotation & revocation
Manage keys from the dashboard. You can rotate a key (issue a new secret and invalidate the old one), revoke a key, or delete it. Rotated and revoked secrets stop working immediately.
Keep keys secret
Treat keys like passwords. Never embed them in client-side code, mobile apps, or public repositories. Use server-side environment variables and rotate any key you suspect is exposed.
Use HTTPS
In production, always use an https:// base URL for /v1. Sending sk-sqr- keys over unencrypted HTTP exposes them to interception.
Free plan & Telegram
When Telegram verification is enabled by the administrator, Free-plan API calls may return 403 until you link Telegram (and join any required channel) in Settings. Open Settings →
Chat completions
Send a list of messages and receive a model response. This is the primary endpoint and follows the OpenAI Chat Completions schema.
Endpoint
POST https://router.web-annonces.net/v1/chat/completions
Request parameters
The default PHP gateway accepts and uses model and messages, plus optional temperature and max_tokens. Other body fields are not forwarded. Setting stream to true returns 400 validation_error on this gateway.
| Parameter | Type | Required | Description |
|---|---|---|---|
model |
string | Yes | A model alias from the Models list. Determines routing and which plan tier may use it. |
messages |
array | Yes | Message objects with role (system, user, assistant) and content. At least one message is required. |
stream |
boolean | No | Not supported on the default PHP gateway. If true, the API returns 400 validation_error. Keep false or omit. |
temperature |
number | No | Sampling temperature between 0 and 2. Optional; forwarded when provided. |
max_tokens |
integer | No | Upper bound on output tokens. Integer from 1 to 8192. |
Request
{
"model": "blaze/deepseek-v4-pro",
"messages": [
{ "role": "system", "content": "You are helpful." },
{ "role": "user", "content": "Hello!" }
],
"temperature": 0.7,
"max_tokens": 256
}
Response
{
"id": "chatcmpl-...",
"object": "chat.completion",
"model": "blaze/deepseek-v4-pro",
"choices": [
{
"index": 0,
"message": { "role": "assistant", "content": "Hello! How can I help?" },
"finish_reason": "stop"
}
],
"usage": { "prompt_tokens": 18, "completion_tokens": 8, "total_tokens": 26 }
}
On success you receive a standard chat completion object. The model field in the response is the public alias you requested.
Streaming
Streaming (stream: true / Server-Sent Events) is not available on the default PHP gateway at /v1.
If you send stream: true to the default gateway, the request is rejected with 400 validation_error. Use non-streaming chat completions instead.
SSE streaming may be available only when an administrator points proxy_base_url at a separately deployed Python proxy that supports it. That is not the default install path — do not assume paste-and-run SSE examples work unless your operator confirmed that setup.
For the default gateway, omit stream or set it to false and use the chat completions examples above.
Models
Pass a model alias in the model field. The list below is loaded from your active catalog. The authenticated GET /v1/models endpoint returns exactly the aliases your own plan entitles.
GET https://router.web-annonces.net/v1/models
Capabilities
261 resultsblaze/deepseek-v4-pro
v4-pro — BlazeAPI free Standard (-compatible) · Very economical
blaze/minimax-m3
MiniMax-M3 — BlazeAPI free Standard (-compatible) · Very economical
bluesminds/adept/fuyu-8b
Fuyu 8B — BluesMinds (chat) · default group
Paid
bluesminds/aisingapore/sea-lion-7b-instruct
SEA-LION 7B Instruct — BluesMinds (chat) · default group
Paid
bluesminds/baai/bge-m3
BGE M3 — BluesMinds (embeddings) · default group
Paid
bluesminds/bigcode/starcoder2-15b-instruct
StarCoder2 15B Instruct — BluesMinds (chat) · default group
Paid
bluesminds/bytedance/seed-oss-36b-instruct
Seed OSS 36B Instruct — BluesMinds (chat) · default group
Paid
bluesminds/google/codegemma-2b-instruct
CodeGemma 2B Instruct — BluesMinds (chat) · default group
Paid
bluesminds/google/codegemma-7b-instruct
CodeGemma 7B Instruct — BluesMinds (chat) · default group
Paid
bluesminds/google/deplot
DePlot — BluesMinds (chat) · VIP group
Paid
Beta
bluesminds/google/gemma-2-2b
Gemma 2 2B — BluesMinds (chat) · default group
Paid
bluesminds/google/gemma-2b
Gemma 2B — BluesMinds (chat) · default group
Paid
bluesminds/google/gemma-3-12b-it
Gemma 3 12B IT — BluesMinds (chat) · default group
Paid
bluesminds/google/gemma-3-27b-it
Gemma 3 27B IT — BluesMinds (chat) · default group
Paid
bluesminds/google/gemma-3-4b-it
Gemma 3 4B IT — BluesMinds (chat) · default group
Paid
bluesminds/google/gemma-4-31b-it
Gemma 4 31B IT — BluesMinds (chat) · default group
Paid
bluesminds/google/recurrentgemma-2b
RecurrentGemma 2B — BluesMinds (chat) · default group
Paid
bluesminds/gpt-oss-20b
GPT-OSS 20B — BluesMinds (chat) · VIP group
Paid
Beta
bluesminds/hy3
HY3 — BluesMinds (chat) · default group
Paid
bluesminds/ibm/granite-3.0-2b-instruct
Granite 3.0 2B Instruct — BluesMinds (chat) · default group
Paid
bluesminds/ibm/granite-3.0-8b-instruct
Granite 3.0 8B Instruct — BluesMinds (chat) · default group
Paid
bluesminds/ibm/granite-34b-code-instruct
Granite 34B Code Instruct — BluesMinds (chat) · default group
Paid
bluesminds/ibm/granite-8b-code-instruct
Granite 8B Code Instruct — BluesMinds (chat) · default group
Paid
bluesminds/kimi-k2.5
Kimi K2.5 — BluesMinds (chat) · default group
Paid
bluesminds/meta/llama-3.1-8b-instruct
Llama 3.1 8B Instruct — BluesMinds (chat) · default group
Paid
bluesminds/meta/llama-3.2-1b
Llama 3.2 1B — BluesMinds (chat) · default group
Paid
bluesminds/meta/llama-3.2-1b-instruct
Llama 3.2 1B Instruct — BluesMinds (chat) · default group
Paid
bluesminds/meta/llama-3.2-3b-instruct
Llama 3.2 3B Instruct — BluesMinds (chat) · default group
Paid
bluesminds/meta/llama-3.3-70b-instruct
Llama 3.3 70B Instruct — BluesMinds (chat) · default group
Paid
bluesminds/meta/llama-4-maverick-17b-128e-instruct
Llama 4 Maverick 17B — BluesMinds (chat) · default group
Paid
bluesminds/meta/llama-guard-3-8b
Llama Guard 3 8B — BluesMinds (chat) · default group
Paid
bluesminds/microsoft/kosmos-2
Kosmos 2 — BluesMinds (chat) · default group
Paid
bluesminds/microsoft/phi-3-mini-128k-instruct
Phi-3 Mini 128K Instruct — BluesMinds (chat) · default group
Paid
bluesminds/microsoft/phi-3-mini-4k-instruct
Phi-3 Mini 4K Instruct — BluesMinds (chat) · default group
Paid
bluesminds/microsoft/phi-4-mini-instruct
Phi-4 Mini Instruct — BluesMinds (chat) · default group
Paid
bluesminds/microsoft/phi-4-multimodal-instruct
Phi-4 Multimodal Instruct — BluesMinds (chat) · default group
Paid
bluesminds/mimo-v2.5
MiMo v2.5 — BluesMinds (chat) · default group
Paid
bluesminds/minimaxai/minimax-m1
MiniMax M1 — BluesMinds (chat) · default group
Paid
bluesminds/mistralai/codestral-2501
Codestral 2501 — BluesMinds (chat) · default group
Paid
bluesminds/mistralai/ministral-8b-instruct
Ministral 8B Instruct — BluesMinds (chat) · default group
Paid
bluesminds/mistralai/mistral-7b-instruct-v0.3
Mistral 7B Instruct v0.3 — BluesMinds (chat) · default group
Paid
bluesminds/mistralai/mistral-large-2411
Mistral Large 2411 — BluesMinds (chat) · default group
Paid
bluesminds/mistralai/mistral-nemo-12b-instruct
Mistral Nemo 12B Instruct — BluesMinds (chat) · default group
Paid
bluesminds/mistralai/mistral-small-2503
Mistral Small 2503 — BluesMinds (chat) · default group
Paid
bluesminds/mistralai/mixtral-8x22b-instruct-v0.1
Mixtral 8x22B Instruct — BluesMinds (chat) · default group
Paid
bluesminds/moonshotai/kimi-k1.5
Kimi K1.5 — BluesMinds (chat) · default group
Paid
bluesminds/nv-mistralai/mistral-large-2-instruct
Mistral Large 2 Instruct — BluesMinds (chat) · default group
Paid
bluesminds/nv-mistralai/mistral-nemo-12b-instruct
Mistral Nemo 12B Instruct (NV) — BluesMinds (chat) · VIP group
Paid
Beta
bluesminds/nvidia/ai-synthetic-gen-llm-8b
AI Synthetic Gen LLM 8B — BluesMinds (chat) · default group
Paid
bluesminds/nvidia/cosmos-reason1-7b
Cosmos Reason1 7B — BluesMinds (chat) · default group
Paid
bluesminds/nvidia/embed-qa-4
Embed QA 4 — BluesMinds (embeddings) · default group
Paid
bluesminds/nvidia/gliner-pii
GLiNER PII — BluesMinds (chat) · default group
Paid
bluesminds/nvidia/ising-calculator-8b
Ising Calculator 8B — BluesMinds (chat) · default group
Paid
bluesminds/nvidia/llama-3.1-70b-instruct
Llama 3.1 70B Instruct — BluesMinds (chat) · default group
Paid
bluesminds/nvidia/llama-3.1-8b-instruct
Llama 3.1 8B Instruct — BluesMinds (chat) · default group
Paid
bluesminds/nvidia/llama-3.1-nemotron-70b-instruct
Llama 3.1 Nemotron 70B Instruct — BluesMinds (chat) · default group
Paid
bluesminds/nvidia/llama-3.1-nemotron-nano-8b-v1
Llama 3.1 Nemotron Nano 8B v1 — BluesMinds (chat) · default group
Paid
bluesminds/nvidia/llama-3.1-swiftkv-8b-instruct
Llama 3.1 SwiftKV 8B Instruct — BluesMinds (chat) · default group
Paid
bluesminds/nvidia/llama-3.2-1b-instruct
Llama 3.2 1B Instruct — BluesMinds (chat) · default group
Paid
bluesminds/nvidia/llama-3.2-3b
Llama 3.2 3B — BluesMinds (chat) · default group
Paid
bluesminds/nvidia/llama-3.2-3b-instruct
Llama 3.2 3B Instruct — BluesMinds (chat) · default group
Paid
bluesminds/nvidia/llama-3.3-70b-instruct
Llama 3.3 70B Instruct (NV) — BluesMinds (chat) · default group
Paid
bluesminds/nvidia/llama-nemotron-3-8b
Llama Nemotron 3 8B — BluesMinds (chat) · VIP group
Paid
Beta
bluesminds/nvidia/llama-nemotron-3-8b-reward
Llama Nemotron 3 8B Reward — BluesMinds (chat) · default group
Paid
bluesminds/nvidia/llama3-chatqa-1-8b-v1
Llama3 ChatQA 1 8B v1 — BluesMinds (chat) · default group
Paid
bluesminds/nvidia/nemoretrieval-embedding-1
NeMo Retrieval Embedding 1 — BluesMinds (embeddings) · default group
Paid
bluesminds/nvidia/nemotron-3-8b-chat
Nemotron 3 8B Chat — BluesMinds (chat) · default group
Paid
bluesminds/nvidia/nemotron-4-340b-instruct
Nemotron 4 340B Instruct — BluesMinds (chat) · default group
Paid
bluesminds/nvidia/nemotron-4-340b-reward
Nemotron 4 340B Reward — BluesMinds (chat) · default group
Paid
bluesminds/nvidia/nemotron-70b-instruct
Nemotron 70B Instruct — BluesMinds (chat) · default group
Paid
bluesminds/nvidia/nemotron-mini-4b-instruct
Nemotron Mini 4B Instruct — BluesMinds (chat) · default group
Paid
bluesminds/nvidia/neva-22b
NeVA 22B — BluesMinds (chat) · default group
Paid
bluesminds/nvidia/nv-embed-v2
NV Embed v2 — BluesMinds (embeddings) · default group
Paid
bluesminds/nvidia/nv-embedqa-e5-v5
NV EmbedQA E5 v5 — BluesMinds (embeddings) · default group
Paid
bluesminds/nvidia/nv-embedqa-mistral-7b-v2
NV EmbedQA Mistral 7B v2 — BluesMinds (embeddings) · default group
Paid
bluesminds/nvidia/nvclip
NVClip — BluesMinds (chat) · default group
Paid
bluesminds/nvidia/riva-translation-en-es
Riva Translation EN→ES — BluesMinds (chat) · default group
Paid
bluesminds/nvidia/riva-translation-en-fr
Riva Translation EN→FR — BluesMinds (chat) · default group
Paid
bluesminds/nvidia/vila-1.5-8b
VILA 1.5 8B — BluesMinds (chat) · default group
Paid
bluesminds/openai/gpt-4o-mini
GPT-4o Mini — BluesMinds (chat) · default group
Paid
bluesminds/openai/gpt-5-mini
GPT-5 Mini — BluesMinds (chat) · default group
Paid
bluesminds/openai/gpt-o3-mini-2025-01-31
GPT o3 mini (2025-01-31) — BluesMinds (chat) · default group
Paid
bluesminds/qwen/qwen3-next-80b-a3b-instruct
Qwen3 Next 80B A3B Instruct — BluesMinds (chat) · default group
Paid
bluesminds/qwen2.5
Qwen2.5 — BluesMinds (chat) · default group
Paid
bluesminds/sarvamai/sarvam-mistral-7b-instruct
Sarvam Mistral 7B Instruct — BluesMinds (chat) · default group
Paid
bluesminds/snowflake/arctic-embed-m-v1.5
Arctic Embed M v1.5 — BluesMinds (embeddings) · default group
Paid
bluesminds/stepfun-ai/step-1-128k
Step-1 128K — BluesMinds (chat) · default group
Paid
bluesminds/upstage/solar-10.7b-instruct
Solar 10.7B Instruct — BluesMinds (chat) · default group
Paid
bluesminds/z-ai/glm-4.7
GLM 4.7 — BluesMinds (chat) · default group
Paid
bluesminds/z-ai/glm-5
GLM 5 — BluesMinds (chat) · default group
Paid
bluesminds/z-ai/glm-5.1
GLM 5.1 — BluesMinds (chat) · default group
Paid
bluesminds/zyphra/zamba2-7b-instruct
Zamba2 7B Instruct — BluesMinds (chat) · default group
Paid
bytez/dreamlike-anime-1.0
Dreamlike Anime 1.0 — Bytez Free open text-to-image (SD ≤~1B · under Free ≤7B)
bytez/dreamlike-photoreal-2.0
Dreamlike Photoreal 2.0 — Bytez Free open text-to-image (SD ≤~1B · under Free ≤7B)
bytez/openjourney
Openjourney — Bytez Free open text-to-image (SD ≤~1B · under Free ≤7B)
bytez/sd-turbo
SD Turbo — Bytez Free open text-to-image (SD ≤~1B · under Free ≤7B)
bytez/sd-v1-4
Stable Diffusion v1.4 — Bytez Free open text-to-image (SD ≤~1B · under Free ≤7B)
bytez/sd-v1-5
Stable Diffusion v1.5 — Bytez Free open text-to-image (SD ≤~1B · under Free ≤7B)
cipher
Chat / coding / reasoning via api.atomesus.com. Image gen not on public gateway — use Admin Image Lab probe.
cloudflare/flux
Higher quality images via FLUX.1 schnell
cloudflare/image
Fast stable covers via Workers AI Lightning
cloudflare/sdxl
Classic SDXL base image generation
cohere/command-a
Command A — Cohere Compatibility API (chat) · Economical
cohere/command-a-plus
Command A+ — Cohere Compatibility API (chat) · mid
cohere/command-r7b
Command R7B — Cohere Compatibility API (chat) · Very economical
cohere/embed-v4
Embed v4.0 — Cohere Compatibility API (embeddings) · Very economical
dahl/glm-5.2
GLM 5.2 — Very economical
dahl/kimi-k2.6
Kimi K2.6 — Very economical
dahl/minimax-m2.7
MiniMax M2.7 — Very economical
deepseek-chat
Chat
swift/gemini-2.5-flash
Serial queue: only one Gemini request at a time across all clients; others wait.
swift/gemini-2.5-flash-lite
Serial queue: only one Gemini request at a time across all clients; others wait.
swift/gemini-2.5-pro
Serial queue: only one Gemini request at a time across all clients; others wait.
image
Queued Gemini image gen. SouqRouter price $0; Google AI Studio Billing/Prepay required (image Free Tier = Not available).
image-2
Queued quality Gemini image gen. SouqRouter price $0; Google Billing required for image models.
image-lite
Queued volume Gemini image gen. SouqRouter price $0; Google Billing required for image models.
groq/gpt-oss-120b-fast
GPT-OSS 120B Fast — Groq free tier · Economical · list $0.15/$0.6 per 1M · free caps ~30 RPM / 1000 RPD / 8000 TPM / 200000 TPD
Paid
groq/gpt-oss-20b-fast
GPT-OSS 20B Fast — Groq free tier · Economical · list $0.075/$0.3 per 1M · free caps ~30 RPM / 1000 RPD / 8000 TPM / 200000 TPD
Paid
groq/gpt-oss-safeguard-20b
GPT-OSS Safeguard 20B — Groq free tier · Economical · list $0.075/$0.3 per 1M · free caps ~30 RPM / 1000 RPD / 8000 TPM / 200000 TPD
Paid
Beta
groq/llama-3.1-8b
Llama 3.1 8B — Groq free tier · Very economical · list $0.05/$0.08 per 1M · free caps ~30 RPM / 14400 RPD / 6000 TPM / 500000 TPD
Paid
groq/llama-3.3-70b-fast
Llama 3.3 70B Fast — Groq free tier · Medium cost · list $0.59/$0.79 per 1M · free caps ~30 RPM / 1000 RPD / 12000 TPM / 100000 TPD
Paid
groq/qwen3.6-27b
Qwen3.6 27B — Groq free tier · Medium cost · list $0.6/$3 per 1M · free caps ~30 RPM / 1000 RPD / 8000 TPM / 200000 TPD
Paid
Beta
hallorouter/claude-opus-4.7
hallo/claude-opus-4.7 — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
hallorouter/claude-sonnet-4.6
hallo/claude-sonnet-4.6 — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
hallorouter/deepseek-v4-flash
hallo/-v4-flash — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
hallorouter/deepseek-v4-pro
hallo/-v4-pro — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
hallorouter/gemini-3-flash
hallo/gemini-3-flash — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
hallorouter/gemini-3-flash-agent
hallo/gemini-3-flash-agent — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
hallorouter/gemini-3.1-pro-low
hallo/gemini-3.1-pro-low — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
hallorouter/gemini-3.5-flash-extra-low
hallo/gemini-3.5-flash-extra-low — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
hallorouter/gemini-3.5-flash-low
hallo/gemini-3.5-flash-low — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
hallorouter/gemini-3.6-flash-low
hallo/gemini-3.6-flash-low — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
hallorouter/gemini-3.7-flash-low
hallo/gemini-3.7-flash-low — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
hallorouter/glm-5.2
hallo/glm-5.2 — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
hallorouter/gpt-5.4
hallo/gpt-5.4 — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
hallorouter/gpt-5.4-mini
hallo/gpt-5.4-mini — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
hallorouter/gpt-5.5
hallo/gpt-5.5 — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
hallorouter/gpt-5.6-luna
hallo/gpt-5.6-luna — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
hallorouter/gpt-5.6-sol
hallo/gpt-5.6-sol — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
hallorouter/gpt-5.6-sol-max
hallo/gpt-5.6-sol-max — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
hallorouter/gpt-5.6-terra
hallo/gpt-5.6-terra — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
hallorouter/kimi-k2.7-code
hallo/kimi-k2.7-code — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
hallorouter/qwen-3.7-max
hallo/qwen-3.7-max — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
hallorouter/qwen-3.7-plus
hallo/qwen-3.7-plus — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
hcnsec/auto
Auto Router — HCNSEC (chat) · Very economical
Paid
hcnsec/qwen3.6-27b
Qwen3.6 27B — HCNSEC (chat) · Economical
Paid
hcnsec/sensenova-6.7-flash
SenseNova 6.7 Flash — HCNSEC (chat) · Medium cost
Paid
hcnsec/sensenova-u1-fast
SenseNova U1 Fast — HCNSEC (chat) · Economical
Paid
hcnsec/step-3.5-flash
Step 3.5 Flash — HCNSEC (chat) · Economical
Paid
hcnsec/step-3.5-flash-2603
Step 3.5 Flash 2603 — HCNSEC (chat) · Medium cost
Paid
hcnsec/step-image-edit-2
Same as hcnsec/image.
Paid
hcnsec/stepaudio-2.5-chat
StepAudio 2.5 Chat — HCNSEC (chat) · Economical
Paid
hcnsec/stepaudio-2.5-tts
StepAudio 2.5 TTS — HCNSEC (chat) · Economical
Paid
huggingface/apertus-8b
Apertus 8B — Very economical
huggingface/llama-3.1-8b-hf
Llama 3.1 8B — Very economical
huggingface/olmo-3-7b
OLMo 3 7B — Very economical
huggingface/phi-4
Phi-4 — Very economical
huggingface/qwen2.5-coder-3b
Qwen2.5 Coder 3B — Very economical
huggingface/qwen2.5-coder-7b
Qwen2.5 Coder 7B — Very economical
huggingface/qwen3-4b
Qwen3 4B — Very economical
huggingface/qwen3-4b-thinking
Qwen3 4B Thinking — Very economical
Beta
llm7/codestral-latest
codestral-latest — LLM7 free (turbo) · Very economical · list $0.01/$0.02 per 1M · Free token caps ~40 RPM / 1M TPD
Paid
llm7/gemma4-31b
gemma4:31b — LLM7 free (turbo) · Very economical · list $0.03/$0.08 per 1M · Free token caps ~40 RPM / 1M TPD
Paid
llm7/gpt-oss-20b
gpt-oss:20b — LLM7 free (turbo) · Very economical · list $0.04/$0.06 per 1M · Free token caps ~40 RPM / 1M TPD
Paid
llm7/minimax-m2.7
minimax-m2.7 — LLM7 free (turbo) · Very economical · list $0.03/$0.05 per 1M · Free token caps ~40 RPM / 1M TPD
Paid
llm7/mistral-nemo-instruct-2407
mistral-Nemo-Instruct-2407 — LLM7 free (turbo) · Very economical · list $0.03/$0.03 per 1M · Free token caps ~40 RPM / 1M TPD
Paid
mistral/codestral
Codestral — Very economical
Paid
mistral/devstral
Devstral — Very economical
Beta
mistral/image
Generate images via Mistral Agents image_generation tool
Beta
mistral/magistral-small
Magistral Small — Very economical
Beta
mistral/ministral-14b
Ministral 14B — Very economical
mistral/ministral-3b
Ministral 3B — Very economical
mistral/ministral-8b
Ministral 8B — Very economical
mistral/mistral-large-api
Mistral Large — Very economical
Beta
mistral/mistral-medium-api
Mistral Medium — Very economical
Paid
mistral/mistral-nemo
Mistral Nemo — Very economical
mistral/mistral-small
Mistral Small — Very economical
nararouter/hy3-c
HY3 — Very economical
nararouter/mistral-large
Mistral Large — Very economical
nararouter/mistral-medium
Mistral Medium 3.5 — Very economical
nimb/deepseek-ai-deepseek-v4-flash-0731
ai/-v4-flash-0731 — NVIDIA Build free NIM chat · -ai · Free · Free Endpoint tier · ~40 RPM
nimb/google-gemma-4-31b-it
google/gemma-4-31b-it — NVIDIA Build free NIM chat · google · Free · Free Endpoint tier · ~40 RPM
nimb/meta-llama-3.1-70b-instruct
meta/llama-3.1-70b-instruct — NVIDIA Build free NIM chat · meta · Free · Free Endpoint tier · ~40 RPM
nimb/meta-llama-3.1-8b-instruct
meta/llama-3.1-8b-instruct — NVIDIA Build free NIM chat · meta · Free · Free Endpoint tier · ~40 RPM
nimb/meta-llama-3.2-1b-instruct
meta/llama-3.2-1b-instruct — NVIDIA Build free NIM chat · meta · Free · Free Endpoint tier · ~40 RPM
nimb/meta-llama-3.2-3b-instruct
meta/llama-3.2-3b-instruct — NVIDIA Build free NIM chat · meta · Free · Free Endpoint tier · ~40 RPM
nimb/meta-llama-3.3-70b-instruct
meta/llama-3.3-70b-instruct — NVIDIA Build free NIM chat · meta · Free · Free Endpoint tier · ~40 RPM
nimb/minimaxai-minimax-m3
minimaxai/minimax-m3 — NVIDIA Build free NIM chat · minimaxai · Free · Free Endpoint tier · ~40 RPM
nimb/mistralai-mistral-nemotron
mistralai/mistral-nemotron — NVIDIA Build free NIM chat · mistralai · Free · Free Endpoint tier · ~40 RPM
nimb/nvidia-llama-3.1-nemotron-nano-8b-v1
nvidia/llama-3.1-nemotron-nano-8b-v1 — NVIDIA Build free NIM chat · nvidia · Free · Free Endpoint tier · ~40 RPM
nimb/nvidia-llama-3.3-nemotron-super-49b-v1
nvidia/llama-3.3-nemotron-super-49b-v1 — NVIDIA Build free NIM chat · nvidia · Free · Free Endpoint tier · ~40 RPM
nimb/nvidia-llama-3.3-nemotron-super-49b-v1.5
nvidia/llama-3.3-nemotron-super-49b-v1.5 — NVIDIA Build free NIM chat · nvidia · Free · Free Endpoint tier · ~40 RPM
nimb/nvidia-nemotron-3-nano-30b-a3b
nvidia/nemotron-3-nano-30b-a3b — NVIDIA Build free NIM chat · nvidia · Free · Free Endpoint tier · ~40 RPM
nimb/nvidia-nemotron-3-super-120b-a12b
nvidia/nemotron-3-super-120b-a12b — NVIDIA Build free NIM chat · nvidia · Free · Free Endpoint tier · ~40 RPM
nimb/nvidia-nemotron-3-ultra-550b-a55b
nvidia/nemotron-3-ultra-550b-a55b — NVIDIA Build free NIM chat · nvidia · Free · Free Endpoint tier · ~40 RPM
nimb/nvidia-nemotron-mini-4b-instruct
nvidia/nemotron-mini-4b-instruct — NVIDIA Build free NIM chat · nvidia · Free · Free Endpoint tier · ~40 RPM
nimb/nvidia-nemotron-nano-12b-v2-vl
nvidia/nemotron-nano-12b-v2-vl — NVIDIA Build free NIM chat · nvidia · Free · Free Endpoint tier · ~40 RPM
nimb/nvidia-nvidia-nemotron-nano-9b-v2
nvidia/nvidia-nemotron-nano-9b-v2 — NVIDIA Build free NIM chat · nvidia · Free · Free Endpoint tier · ~40 RPM
nimb/openai-gpt-oss-120b
/gpt-oss-120b — NVIDIA Build free NIM chat · · Free · Free Endpoint tier · ~40 RPM
nimb/openai-gpt-oss-20b
/gpt-oss-20b — NVIDIA Build free NIM chat · · Free · Free Endpoint tier · ~40 RPM
nimb/poolside-laguna-xs-2.1
poolside/laguna-xs-2.1 — NVIDIA Build free NIM chat · poolside · Free · Free Endpoint tier · ~40 RPM
nimb/stepfun-ai-step-3.7-flash
stepfun-ai/step-3.7-flash — NVIDIA Build free NIM chat · stepfun-ai · Free · Free Endpoint tier · ~40 RPM
nimb/thinkingmachines-inkling
thinkingmachines/inkling — NVIDIA Build free NIM chat · thinkingmachines · Free · Free Endpoint tier · ~40 RPM
nimb/writer-palmyra-creative-122b
writer/palmyra-creative-122b — NVIDIA Build free NIM chat · writer · Free · Free Endpoint tier · ~40 RPM
nimb/writer-palmyra-fin-70b-32k
writer/palmyra-fin-70b-32k — NVIDIA Build free NIM chat · writer · Free · Free Endpoint tier · ~40 RPM
nimb/writer-palmyra-med-70b
writer/palmyra-med-70b — NVIDIA Build free NIM chat · writer · Free · Free Endpoint tier · ~40 RPM
nimb/writer-palmyra-med-70b-32k
writer/palmyra-med-70b-32k — NVIDIA Build free NIM chat · writer · Free · Free Endpoint tier · ~40 RPM
nimb/z-ai-glm-5.2
z-ai/glm-5.2 — NVIDIA Build free NIM chat · z-ai · Free · Free Endpoint tier · ~40 RPM
nimb/zyphra-zamba2-7b-instruct
zyphra/zamba2-7b-instruct — NVIDIA Build free NIM chat · zyphra · Free · Free Endpoint tier · ~40 RPM
nvidia/flux
Higher quality FLUX.1 Dev via NVIDIA NIM.
nvidia/image
Fast high-quality covers via NVIDIA cloud GenAI. Free Trial limited on build.nvidia.com.
nvidia/qwen
Multilingual text rendering in images via Qwen-Image.
nvidia/sd35
SD 3.5 Large text-to-image via NVIDIA NIM.
ollama/deepseek-v4-flash
V4 Flash — Ollama Cloud (chat) · Economical
ollama/gemma4-31b
Gemma 4 31B — Ollama Cloud (chat) · Economical
ollama/gpt-oss-120b
GPT-OSS 120B — Ollama Cloud (chat) · mid
ollama/gpt-oss-20b
GPT-OSS 20B — Ollama Cloud (chat) · Very economical
ollama/minimax-m2.7
MiniMax M2.7 — Ollama Cloud (chat) · mid
openrouter/auto
Free Auto — Very economical
openrouter/command-r7b-12-2024
Command R7B 12-2024 (Cohere) — Paid · RAG / tools / agents · 128K context
Paid
openrouter/gemma-3-4b-it
Gemma 3 4B IT (Google) — Paid · multimodal · tools · 131K context
Paid
openrouter/gemma-3n-e4b-it
Gemma 3n E4B IT (Google) — Paid · multimodal · efficient · 33K context
Paid
openrouter/gpt-oss-20b-paid
GPT-OSS 20B () — Paid · 21B MoE / ~3.6B active · tools & structured · 131K context
Paid
openrouter/granite-4.0-h-micro
Granite 4.0 H Micro (IBM) — Paid · 3B · long-context tool calling · 131K context
Paid
openrouter/granite-4.1-8b
Granite 4.1 8B (IBM) — Paid · tools / RAG / code · multilingual · 131K context
Paid
openrouter/l3-lunaris-8b
Llama 3 8B Lunaris (Sao10K) — Paid · generalist / roleplay · 8K context
Paid
openrouter/laguna-xs
Laguna XS — Very economical
openrouter/laguna-xs-2.1
Laguna XS 2.1 (Poolside) — Paid · coding agent · tools · 262K context
Paid
openrouter/ling-2.6-flash
Ling 2.6 Flash (inclusionAI) — Paid · ~104B MoE / 7.4B active · 262K context
Paid
openrouter/ling-3.0-flash
Ling 3.0 Flash (inclusionAI) — Paid · 124B MoE / ~5.1B active · agentic · 262K context
Paid
openrouter/llama-3.1-8b-instruct
Llama 3.1 8B Instruct (Meta) — Paid · fast instruct · 131K context
Paid
openrouter/ministral-3b-2512
Ministral 3 3B 2512 (Mistral) — Paid · tiny + vision · 131K context
Paid
openrouter/ministral-8b-2512
Ministral 3 8B 2512 (Mistral) — Paid · balanced + vision · 262K context
Paid
openrouter/mistral-nemo
Mistral Nemo (12B · Mistral + NVIDIA) — Paid · multilingual · tools · 131K context
Paid
openrouter/mistral-small-24b-instruct-2501
Mistral Small 3 (24B) — Paid · low-latency instruct · 33K context
Paid
openrouter/mythomax-l2-13b
MythoMax 13B (Gryphe) — Paid · Llama 2 fine-tune · roleplay · 8K context
Paid
openrouter/nemotron-3-nano
Nemotron 3 Nano — Very economical
openrouter/nemotron-3-omni
Nemotron 3 Omni — Very economical
openrouter/nemotron-3-super
Nemotron 3 Super — Very economical
openrouter/nemotron-3-ultra
Nemotron 3 Ultra — Very economical
openrouter/nemotron-nano-9b
Nemotron Nano 9B — Very economical
openrouter/nex-n2-mini
Nex-N2-Mini (Nex AGI) — Paid · agentic MoE · text+image · coding/tools · 262K context
Paid
openrouter/north-mini-code
North Mini Code — Very economical
openrouter/nova-micro-v1
Nova Micro 1.0 (Amazon) — Paid · low-latency text · summarization/chat · 128K context
Paid
openrouter/phi-4
Phi 4 (Microsoft) — Paid · 14B · reasoning · English-focused · 16K context
Paid
openrouter/qwen3.5-9b
Qwen3.5-9B (Alibaba) — Paid · multimodal · reasoning/coding · 262K context
Paid
openrouter/qwen3.7-flash
Qwen3.7 Flash (Alibaba) — Paid · vision-language · multimodal agents · 1M context
Paid
openrouter/reka-edge
Reka Edge (Reka) — Paid · 7B multimodal · vision/video · tools · 16K context
Paid
openrouter/solar-pro4
Solar Pro 4 (Upstage) — Paid · long-horizon / agentic · docs & coding · 524K context
Paid
plugsky/lite
Plugsky Lite — Plugsky free tier (-compatible) · Very economical
plugsky/micro
Plugsky Micro — Plugsky free tier (-compatible) · Very economical
runware/flux
Was FLUX.1 Schnell; now klein 4B so every cover stays ≤ ~$0.0006 @ ≤1024.
runware/image
Ultra-cheap stable covers (~$0.0006/img @ ≤1024). Best default for high volume.
runware/twinflow
Same upstream as z-turbo · display alias (~$0.0006/img @ ≤1024 · 4 steps).
runware/z-turbo
Photorealistic budget alternative (~$0.0006/img @ ≤1024 · 4 steps).
siliconflow/deepseek-r1-7b
R1 Distill 7B — Very economical
siliconflow/qwen3-8b
Qwen3 8B — Very economical
tf/deepseek-v4-flash
Chat via TokenFaucet daily claim wallet (modelType=free)
tf/gpt-5.6-terra
Chat via TokenFaucet daily claim wallet (modelType=free)
tf/mimo-v2.5
Chat via TokenFaucet daily claim wallet (modelType=free)
tf/mimo-v2.5-pro
Chat via TokenFaucet daily claim wallet (modelType=free)
Auto-routing aliases such as auto/fast, auto/cheap, auto/smart, and auto/ru appear when eligible models exist on your plan.
Image generation
Generate one image per request with POST /v1/images/generations. The response shape follows OpenAI Images (b64_json). This is separate from chat completions — do not send image prompts to /chat/completions.
Use a public IMAGE_GEN alias: mistral/image (often beta), or Cloudflare Workers AI aliases cloudflare/image (Lightning, default), cloudflare/flux, cloudflare/sdxl (not beta by default). Your plan must allow the alias. If a model is beta, your API key needs beta access from the dashboard or an administrator.
Safe usage
- Call the gateway only with your sk-sqr- key over HTTPS. Never put the key in browsers, mobile apps, public repos, or client-side JavaScript.
- Store sk-sqr- in server environment variables. Do not log the full Authorization header, raw prompts that contain secrets, or large base64 payloads.
- Decode data[0].b64_json on your server and serve the image to end users. Do not expose gateway errors or request_id internals beyond what your users need.
- Respect daily image quotas (counted per account across all of your API keys) and your plan RPM. Retry 429/502 with backoff; do not hammer the endpoint.
- Keep prompts lawful and appropriate. Only n=1 and response_format=b64_json are supported. Prompt length is capped (about 2000 characters).
Endpoint
POST https://router.web-annonces.net/v1/images/generations
Authorization: Bearer sk-sqr-xxxxxxxx
Content-Type: application/json
Request parameters
Body is JSON. Unknown fields are ignored. Validation failures return 400 validation_error.
| Parameter | Type | Required | Description |
|---|---|---|---|
model |
string | Yes | Model alias with IMAGE_GEN capability. Use mistral/image, cloudflare/image, cloudflare/flux, or cloudflare/sdxl. The gateway maps Cloudflare aliases to Workers AI model ids internally. |
prompt |
string | Yes | Text description of the image. Required. Max length about 2000 characters after stripping HTML. |
n |
integer | No | Number of images. Must be 1. |
size |
string | No | Optional WxH string (e.g. 1024x1024). Each side is clamped between 256 and 2048. Some upstream Workers ignore size and use a fixed output. |
response_format |
string | No | Must be b64_json (default). URL mode is not supported. Even when an upstream Worker returns raw PNG/JPEG bytes, the gateway always responds with b64_json. |
Request body
{
"model": "mistral/image",
"prompt": "a flat illustration of a modern coworking space",
"n": 1,
"size": "1024x1024",
"response_format": "b64_json"
}
Tip: write clear visual prompts (subject, style, composition). Avoid embedding passwords or personal data in the prompt text. Examples below use mistral/image; swap model to cloudflare/image, cloudflare/flux, or cloudflare/sdxl when enabled on your plan.
Code examples
curl https://router.web-annonces.net/v1/images/generations \
-H "Authorization: Bearer sk-sqr-xxxxxxxx" \
-H "Content-Type: application/json" \
-d '{
"model": "mistral/image",
"prompt": "a flat illustration of a modern coworking space",
"n": 1,
"size": "1024x1024",
"response_format": "b64_json"
}'
import base64
import os
import requests
API_KEY = os.environ["SQR_API_KEY"] # sk-sqr-... — server only
url = "https://router.web-annonces.net/v1/images/generations"
resp = requests.post(
url,
headers={
"Authorization": "Bearer " + API_KEY,
"Content-Type": "application/json",
},
json={
"model": "mistral/image",
"prompt": "a flat illustration of a modern coworking space",
"n": 1,
"size": "1024x1024",
"response_format": "b64_json",
},
timeout=180,
)
resp.raise_for_status()
payload = resp.json()
img_bytes = base64.b64decode(payload["data"][0]["b64_json"])
with open("out.png", "wb") as f:
f.write(img_bytes)
// Node.js / server runtime only — never ship sk-sqr- to browsers
import fs from "node:fs";
const API_KEY = process.env.SQR_API_KEY;
const response = await fetch("https://router.web-annonces.net/v1/images/generations", {
method: "POST",
headers: {
Authorization: `Bearer ${API_KEY}`,
"Content-Type": "application/json",
},
body: JSON.stringify({
model: "mistral/image",
prompt: "a flat illustration of a modern coworking space",
n: 1,
size: "1024x1024",
response_format: "b64_json",
}),
});
if (!response.ok) {
const err = await response.json();
throw new Error(err.error?.type || response.statusText);
}
const data = await response.json();
fs.writeFileSync("out.png", Buffer.from(data.data[0].b64_json, "base64"));
Response
On success you receive created, model, data[0].b64_json, usage.images = 1, and image_quota (limit/used/remaining/reset_at UTC). Decode base64 to obtain PNG/JPEG/WebP.
{
"created": 1710000000,
"model": "mistral/image",
"data": [
{ "b64_json": "iVBORw0KGgoAAA..." }
],
"usage": { "images": 1, "prompt_tokens": 0, "completion_tokens": 0, "total_tokens": 0 },
"gateway": "php",
"request_id": "req_..."
}
SouqRouter enforces the image cap configured on your plan, per user across all API keys. The window resets at 00:00 UTC; 0 means unlimited. RPM and Telegram rules still apply. Upstream quotas are separate.
Image-specific errors
- 429 image_daily_cap — your plan image quota is exhausted. The response includes limit, used, remaining and reset_at (UTC).
- 429 image_provider_busy — upstream image provider rate-limited the request. Wait 30–120s and retry with backoff (do not spam).
- 502 image_upstream — generation failed for a non-quota reason. Retry later with backoff.
- 503 image_disabled — the operator turned image generation off on this gateway.
- 403 beta_not_allowed — the requested image model is beta and your key has no beta access (common with mistral/image). Cloudflare aliases (cloudflare/image|flux|sdxl) are not beta by default.
Always authenticate with Authorization: Bearer sk-sqr-…. Create keys in the dashboard; never ask end users for upstream provider API keys. Open API keys →
Rate limits & quotas
Limits depend on your plan. Each tier sets a per-minute request rate, a daily token quota, and a concurrency ceiling.
Request rate (per minute)
Each plan sets a maximum number of requests per minute. Exceeding it returns 429 with a rate_limited error. The window resets every minute.
Daily token quota
Plans count successful input + output tokens against a daily quota. Usage before the start of your current subscription period does not count toward that period’s quota window. When the plan cap is reached and PAYG cannot cover the request, the API returns 429 with type daily_cap.
If PAYG is enabled and your credit balance is sufficient, requests can continue past the plan daily cap by spending prepaid credit. Manage balance and PAYG in Billing →
Concurrency
Plans also bound how many requests may run at once. Excess concurrent requests are rejected with 429; retry once an in-flight request completes.
Free tier defaults
- 80,000,000 tokens / day
- 200 requests / minute
- 10 concurrent requests
See live per-plan limits in the Pricing on the home page.
Errors
Errors use a single, stable JSON envelope. Switch on the type field rather than parsing the message. The request_id helps correlate a failure with server logs.
Error shape
{
"error": {
"type": "rate_limited",
"message": "Rate limit exceeded. Please retry later.",
"request_id": "req_..."
}
}
Status codes
| Status | Type | Meaning |
|---|---|---|
| 400 | validation_error | Malformed or invalid request body (including stream: true on the default gateway). |
| 401 | invalid_api_key | Missing or invalid API key (type invalid_api_key). |
| 403 | forbidden | Plan does not include the requested model, or account is suspended. |
| 403 | beta_not_allowed | Beta model without beta access on the API key. |
| 403 | telegram_required | Free plan requires Telegram verification before API access. |
| 403 | telegram_channel_required | Free plan requires joining the configured Telegram channel. |
| 404 | not_found / model_not_found | Unknown model alias or endpoint. |
| 413 | payload_too_large | Request body exceeds the size limit. |
| 429 | rate_limited | Requests-per-minute limit exceeded. |
| 429 | daily_cap | Daily plan token quota exceeded (and PAYG did not cover the request). |
| 429 | image_daily_cap | Daily image generation quota exceeded for your account (all API keys share the same day window). |
| 429 | image_provider_busy | Upstream image provider rate-limited the request (image_provider_busy). Retry after 30–120 seconds. |
| 501 | not_implemented | Feature or route not available on this gateway. |
| 502 | upstream_error / upstream_5xx / image_upstream | Upstream AI or image generation failed (image_upstream). Retry with backoff; messages stay generic by design. |
| 503 | service_unavailable / maintenance / image_disabled | Maintenance, temporary unavailability, or image generation disabled (image_disabled). Retry with backoff when appropriate. |
| 504 | upstream_timeout | Upstream AI provider timed out. Retry later. |
| 500 | internal_error | Unexpected error. Retry; contact support with request_id if it persists. |
Plans & pricing
Each tier grants token quotas, request rate, and concurrency limits. Paid checkout uses Stripe when enabled by the administrator.
Pro
119.99 USD / week
- 80,000,000 tokens / day
- 200 req / min
- 10 concurrent
Model pricing
Reference list prices per 1M tokens for models marked as publicly priced in the admin catalog.
| Model | Tier | Input / 1M | Output / 1M |
|---|---|---|---|
bytez/dreamlike-anime-1.0
Dreamlike Anime 1.0 — Bytez Free open text-to-image (SD ≤~1B · under Free ≤7B)
|
Very economical | $0.00 | $0.00 |
bytez/dreamlike-photoreal-2.0
Dreamlike Photoreal 2.0 — Bytez Free open text-to-image (SD ≤~1B · under Free ≤7B)
|
Very economical | $0.00 | $0.00 |
bytez/openjourney
Openjourney — Bytez Free open text-to-image (SD ≤~1B · under Free ≤7B)
|
Very economical | $0.00 | $0.00 |
bytez/sd-turbo
SD Turbo — Bytez Free open text-to-image (SD ≤~1B · under Free ≤7B)
|
Very economical | $0.00 | $0.00 |
bytez/sd-v1-4
Stable Diffusion v1.4 — Bytez Free open text-to-image (SD ≤~1B · under Free ≤7B)
|
Very economical | $0.00 | $0.00 |
bytez/sd-v1-5
Stable Diffusion v1.5 — Bytez Free open text-to-image (SD ≤~1B · under Free ≤7B)
|
Very economical | $0.00 | $0.00 |
dahl/glm-5.2
GLM 5.2 — Very economical
|
Very economical | $0.00 | $0.00 |
dahl/kimi-k2.6
Kimi K2.6 — Very economical
|
Very economical | $0.00 | $0.00 |
dahl/minimax-m2.7
MiniMax M2.7 — Very economical
|
Very economical | $0.00 | $0.00 |
swift/gemini-2.5-flash
Free · Gemini 2.5 Flash (AI Studio) · serial queue (1 concurrent)
|
Free | $0.00 | $0.00 |
swift/gemini-2.5-flash-lite
Free · Gemini 2.5 Flash-Lite (AI Studio) · serial queue (1 concurrent)
|
Free | $0.00 | $0.00 |
swift/gemini-2.5-pro
Free · Gemini 2.5 Pro (AI Studio) · serial queue (1 concurrent, low daily cap)
|
Free | $0.00 | $0.00 |
image
Gemini 2.5 Flash Image · needs Google Billing · serial queue (1 concurrent)
|
Free | $0.00 | $0.00 |
image-2
Gemini 3.1 Flash Image · needs Google Billing · serial queue (1 concurrent)
|
Free | $0.00 | $0.00 |
image-lite
Gemini 3.1 Flash Lite Image · needs Google Billing · serial queue (1 concurrent)
|
Free | $0.00 | $0.00 |
hallorouter/claude-opus-4.7
hallo/claude-opus-4.7 — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
|
Economical | $0.00 | $0.00 |
hallorouter/claude-sonnet-4.6
hallo/claude-sonnet-4.6 — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
|
Economical | $0.00 | $0.00 |
hallorouter/deepseek-v4-flash
hallo/-v4-flash — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
|
Economical | $0.00 | $0.00 |
hallorouter/deepseek-v4-pro
hallo/-v4-pro — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
|
Economical | $0.00 | $0.00 |
hallorouter/gemini-3-flash
hallo/gemini-3-flash — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
|
Economical | $0.00 | $0.00 |
hallorouter/gemini-3-flash-agent
hallo/gemini-3-flash-agent — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
|
Economical | $0.00 | $0.00 |
hallorouter/gemini-3.1-pro-low
hallo/gemini-3.1-pro-low — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
|
Economical | $0.00 | $0.00 |
hallorouter/gemini-3.5-flash-extra-low
hallo/gemini-3.5-flash-extra-low — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
|
Economical | $0.00 | $0.00 |
hallorouter/gemini-3.5-flash-low
hallo/gemini-3.5-flash-low — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
|
Economical | $0.00 | $0.00 |
hallorouter/gemini-3.6-flash-low
hallo/gemini-3.6-flash-low — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
|
Economical | $0.00 | $0.00 |
hallorouter/gemini-3.7-flash-low
hallo/gemini-3.7-flash-low — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
|
Economical | $0.00 | $0.00 |
hallorouter/glm-5.2
hallo/glm-5.2 — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
|
Economical | $0.00 | $0.00 |
hallorouter/gpt-5.4
hallo/gpt-5.4 — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
|
Economical | $0.00 | $0.00 |
hallorouter/gpt-5.4-mini
hallo/gpt-5.4-mini — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
|
Economical | $0.00 | $0.00 |
hallorouter/gpt-5.5
hallo/gpt-5.5 — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
|
Economical | $0.00 | $0.00 |
hallorouter/gpt-5.6-luna
hallo/gpt-5.6-luna — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
|
Economical | $0.00 | $0.00 |
hallorouter/gpt-5.6-sol
hallo/gpt-5.6-sol — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
|
Economical | $0.00 | $0.00 |
hallorouter/gpt-5.6-sol-max
hallo/gpt-5.6-sol-max — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
|
Economical | $0.00 | $0.00 |
hallorouter/gpt-5.6-terra
hallo/gpt-5.6-terra — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
|
Economical | $0.00 | $0.00 |
hallorouter/kimi-k2.7-code
hallo/kimi-k2.7-code — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
|
Economical | $0.00 | $0.00 |
hallorouter/qwen-3.7-max
hallo/qwen-3.7-max — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
|
Economical | $0.00 | $0.00 |
hallorouter/qwen-3.7-plus
hallo/qwen-3.7-plus — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
|
Economical | $0.00 | $0.00 |
huggingface/apertus-8b
Apertus 8B — Very economical
|
Very economical | $0.00 | $0.00 |
huggingface/llama-3.1-8b-hf
Llama 3.1 8B — Very economical
|
Very economical | $0.00 | $0.00 |
huggingface/olmo-3-7b
OLMo 3 7B — Very economical
|
Very economical | $0.00 | $0.00 |
huggingface/phi-4
Phi-4 — Very economical
|
Very economical | $0.00 | $0.00 |
huggingface/qwen2.5-coder-3b
Qwen2.5 Coder 3B — Very economical
|
Very economical | $0.00 | $0.00 |
huggingface/qwen2.5-coder-7b
Qwen2.5 Coder 7B — Very economical
|
Very economical | $0.00 | $0.00 |
huggingface/qwen3-4b
Qwen3 4B — Very economical
|
Very economical | $0.00 | $0.00 |
huggingface/qwen3-4b-thinking
Beta
Qwen3 4B Thinking — Very economical
|
Very economical | $0.00 | $0.00 |
mistral/devstral
Beta
Devstral — Very economical
|
Very economical | $0.00 | $0.00 |
mistral/magistral-small
Beta
Magistral Small — Very economical
|
Very economical | $0.00 | $0.00 |
mistral/ministral-14b
Ministral 14B — Very economical
|
Very economical | $0.00 | $0.00 |
mistral/ministral-3b
Ministral 3B — Very economical
|
Very economical | $0.00 | $0.00 |
mistral/ministral-8b
Ministral 8B — Very economical
|
Very economical | $0.00 | $0.00 |
mistral/mistral-large-api
Beta
Mistral Large — Very economical
|
Very economical | $0.00 | $0.00 |
mistral/mistral-nemo
Mistral Nemo — Very economical
|
Very economical | $0.00 | $0.00 |
mistral/mistral-small
Mistral Small — Very economical
|
Very economical | $0.00 | $0.00 |
nararouter/hy3-c
HY3 — Very economical
|
Very economical | $0.00 | $0.00 |
nararouter/mistral-large
Mistral Large — Very economical
|
Very economical | $0.00 | $0.00 |
nararouter/mistral-medium
Mistral Medium 3.5 — Very economical
|
Very economical | $0.00 | $0.00 |
nimb/deepseek-ai-deepseek-v4-flash-0731
ai/-v4-flash-0731 — NVIDIA Build free NIM chat · -ai · Free · Free Endpoint tier · ~40 RPM
|
Free | $0.00 | $0.00 |
nimb/google-gemma-4-31b-it
google/gemma-4-31b-it — NVIDIA Build free NIM chat · google · Free · Free Endpoint tier · ~40 RPM
|
Free | $0.00 | $0.00 |
nimb/meta-llama-3.1-70b-instruct
meta/llama-3.1-70b-instruct — NVIDIA Build free NIM chat · meta · Free · Free Endpoint tier · ~40 RPM
|
Free | $0.00 | $0.00 |
nimb/meta-llama-3.1-8b-instruct
meta/llama-3.1-8b-instruct — NVIDIA Build free NIM chat · meta · Free · Free Endpoint tier · ~40 RPM
|
Free | $0.00 | $0.00 |
nimb/meta-llama-3.2-1b-instruct
meta/llama-3.2-1b-instruct — NVIDIA Build free NIM chat · meta · Free · Free Endpoint tier · ~40 RPM
|
Free | $0.00 | $0.00 |
nimb/meta-llama-3.2-3b-instruct
meta/llama-3.2-3b-instruct — NVIDIA Build free NIM chat · meta · Free · Free Endpoint tier · ~40 RPM
|
Free | $0.00 | $0.00 |
nimb/meta-llama-3.3-70b-instruct
meta/llama-3.3-70b-instruct — NVIDIA Build free NIM chat · meta · Free · Free Endpoint tier · ~40 RPM
|
Free | $0.00 | $0.00 |
nimb/minimaxai-minimax-m3
minimaxai/minimax-m3 — NVIDIA Build free NIM chat · minimaxai · Free · Free Endpoint tier · ~40 RPM
|
Free | $0.00 | $0.00 |
nimb/mistralai-mistral-nemotron
mistralai/mistral-nemotron — NVIDIA Build free NIM chat · mistralai · Free · Free Endpoint tier · ~40 RPM
|
Free | $0.00 | $0.00 |
nimb/nvidia-llama-3.1-nemotron-nano-8b-v1
nvidia/llama-3.1-nemotron-nano-8b-v1 — NVIDIA Build free NIM chat · nvidia · Free · Free Endpoint tier · ~40 RPM
|
Free | $0.00 | $0.00 |
nimb/nvidia-llama-3.3-nemotron-super-49b-v1
nvidia/llama-3.3-nemotron-super-49b-v1 — NVIDIA Build free NIM chat · nvidia · Free · Free Endpoint tier · ~40 RPM
|
Free | $0.00 | $0.00 |
nimb/nvidia-llama-3.3-nemotron-super-49b-v1.5
nvidia/llama-3.3-nemotron-super-49b-v1.5 — NVIDIA Build free NIM chat · nvidia · Free · Free Endpoint tier · ~40 RPM
|
Free | $0.00 | $0.00 |
nimb/nvidia-nemotron-3-nano-30b-a3b
nvidia/nemotron-3-nano-30b-a3b — NVIDIA Build free NIM chat · nvidia · Free · Free Endpoint tier · ~40 RPM
|
Free | $0.00 | $0.00 |
nimb/nvidia-nemotron-3-super-120b-a12b
nvidia/nemotron-3-super-120b-a12b — NVIDIA Build free NIM chat · nvidia · Free · Free Endpoint tier · ~40 RPM
|
Free | $0.00 | $0.00 |
nimb/nvidia-nemotron-3-ultra-550b-a55b
nvidia/nemotron-3-ultra-550b-a55b — NVIDIA Build free NIM chat · nvidia · Free · Free Endpoint tier · ~40 RPM
|
Free | $0.00 | $0.00 |
nimb/nvidia-nemotron-mini-4b-instruct
nvidia/nemotron-mini-4b-instruct — NVIDIA Build free NIM chat · nvidia · Free · Free Endpoint tier · ~40 RPM
|
Free | $0.00 | $0.00 |
nimb/nvidia-nemotron-nano-12b-v2-vl
nvidia/nemotron-nano-12b-v2-vl — NVIDIA Build free NIM chat · nvidia · Free · Free Endpoint tier · ~40 RPM
|
Free | $0.00 | $0.00 |
nimb/nvidia-nvidia-nemotron-nano-9b-v2
nvidia/nvidia-nemotron-nano-9b-v2 — NVIDIA Build free NIM chat · nvidia · Free · Free Endpoint tier · ~40 RPM
|
Free | $0.00 | $0.00 |
nimb/openai-gpt-oss-120b
/gpt-oss-120b — NVIDIA Build free NIM chat · · Free · Free Endpoint tier · ~40 RPM
|
Free | $0.00 | $0.00 |
nimb/openai-gpt-oss-20b
/gpt-oss-20b — NVIDIA Build free NIM chat · · Free · Free Endpoint tier · ~40 RPM
|
Free | $0.00 | $0.00 |
nimb/poolside-laguna-xs-2.1
poolside/laguna-xs-2.1 — NVIDIA Build free NIM chat · poolside · Free · Free Endpoint tier · ~40 RPM
|
Free | $0.00 | $0.00 |
nimb/stepfun-ai-step-3.7-flash
stepfun-ai/step-3.7-flash — NVIDIA Build free NIM chat · stepfun-ai · Free · Free Endpoint tier · ~40 RPM
|
Free | $0.00 | $0.00 |
nimb/thinkingmachines-inkling
thinkingmachines/inkling — NVIDIA Build free NIM chat · thinkingmachines · Free · Free Endpoint tier · ~40 RPM
|
Free | $0.00 | $0.00 |
nimb/writer-palmyra-creative-122b
writer/palmyra-creative-122b — NVIDIA Build free NIM chat · writer · Free · Free Endpoint tier · ~40 RPM
|
Free | $0.00 | $0.00 |
nimb/writer-palmyra-fin-70b-32k
writer/palmyra-fin-70b-32k — NVIDIA Build free NIM chat · writer · Free · Free Endpoint tier · ~40 RPM
|
Free | $0.00 | $0.00 |
nimb/writer-palmyra-med-70b
writer/palmyra-med-70b — NVIDIA Build free NIM chat · writer · Free · Free Endpoint tier · ~40 RPM
|
Free | $0.00 | $0.00 |
nimb/writer-palmyra-med-70b-32k
writer/palmyra-med-70b-32k — NVIDIA Build free NIM chat · writer · Free · Free Endpoint tier · ~40 RPM
|
Free | $0.00 | $0.00 |
nimb/z-ai-glm-5.2
z-ai/glm-5.2 — NVIDIA Build free NIM chat · z-ai · Free · Free Endpoint tier · ~40 RPM
|
Free | $0.00 | $0.00 |
nimb/zyphra-zamba2-7b-instruct
zyphra/zamba2-7b-instruct — NVIDIA Build free NIM chat · zyphra · Free · Free Endpoint tier · ~40 RPM
|
Free | $0.00 | $0.00 |
nvidia/flux
Trial · NVIDIA NIM – FLUX.1 Dev
|
trial | $0.00 | $0.00 |
nvidia/image
Trial · NVIDIA NIM – FLUX.1 Schnell (default covers)
|
trial | $0.00 | $0.00 |
nvidia/qwen
Trial · NVIDIA NIM – Qwen-Image
|
trial | $0.00 | $0.00 |
nvidia/sd35
Trial · NVIDIA NIM – Stable Diffusion 3.5 Large
|
trial | $0.00 | $0.00 |
openrouter/auto
Free Auto — Very economical
|
Very economical | $0.00 | $0.00 |
openrouter/laguna-xs
Laguna XS — Very economical
|
Very economical | $0.00 | $0.00 |
openrouter/nemotron-3-nano
Nemotron 3 Nano — Very economical
|
Very economical | $0.00 | $0.00 |
openrouter/nemotron-3-omni
Nemotron 3 Omni — Very economical
|
Very economical | $0.00 | $0.00 |
openrouter/nemotron-3-super
Nemotron 3 Super — Very economical
|
Very economical | $0.00 | $0.00 |
openrouter/nemotron-3-ultra
Nemotron 3 Ultra — Very economical
|
Very economical | $0.00 | $0.00 |
openrouter/nemotron-nano-9b
Nemotron Nano 9B — Very economical
|
Very economical | $0.00 | $0.00 |
openrouter/north-mini-code
North Mini Code — Very economical
|
Very economical | $0.00 | $0.00 |
runware/flux
Budget · remapped to FLUX.2 klein 4B (Schnell disabled)
|
budget | $0.00 | $0.00 |
runware/image
Budget · Runware – FLUX.2 klein 4B (default covers)
|
budget | $0.00 | $0.00 |
runware/twinflow
Budget · Runware – TwinFlow Z-Image-Turbo
|
budget | $0.00 | $0.00 |
runware/z-turbo
Budget · Runware – Z-Image-Turbo
|
budget | $0.00 | $0.00 |
siliconflow/deepseek-r1-7b
R1 Distill 7B — Very economical
|
Very economical | $0.00 | $0.00 |
siliconflow/qwen3-8b
Qwen3 8B — Very economical
|
Very economical | $0.00 | $0.00 |
tf/deepseek-v4-flash
V4-Flash — TokenFaucet free (daily claim wallet) ·
|
Very economical | $0.00 | $0.00 |
tf/gpt-5.6-terra
gpt-5.6-terra — TokenFaucet free (daily claim wallet) ·
|
Very economical | $0.00 | $0.00 |
tf/mimo-v2.5
mimo-v2.5 — TokenFaucet free (daily claim wallet) · mimo
|
Very economical | $0.00 | $0.00 |
tf/mimo-v2.5-pro
mimo-v2.5-pro — TokenFaucet free (daily claim wallet) · mimo
|
Very economical | $0.00 | $0.00 |
llm7/codestral-latest
Paid
codestral-latest — LLM7 free (turbo) · Very economical · list $0.01/$0.02 per 1M · Free token caps ~40 RPM / 1M TPD
|
Very economical | $0.01 | $0.02 |
openrouter/ling-2.6-flash
Paid
Ling 2.6 Flash (inclusionAI) — Paid · ~104B MoE / 7.4B active · 262K context
|
Economical | $0.01 | $0.03 |
openrouter/mistral-nemo
Paid
Mistral Nemo (12B · Mistral + NVIDIA) — Paid · multilingual · tools · 131K context
|
Economical | $0.02 | $0.03 |
llm7/mistral-nemo-instruct-2407
Paid
mistral-Nemo-Instruct-2407 — LLM7 free (turbo) · Very economical · list $0.03/$0.03 per 1M · Free token caps ~40 RPM / 1M TPD
|
Very economical | $0.03 | $0.03 |
openrouter/llama-3.1-8b-instruct
Paid
Llama 3.1 8B Instruct (Meta) — Paid · fast instruct · 131K context
|
Economical | $0.02 | $0.04 |
bluesminds/openai/gpt-o3-mini-2025-01-31
Paid
GPT o3 mini (2025-01-31) — BluesMinds (chat) · default group
|
Very economical | $0.06 | $0.0072 |
llm7/minimax-m2.7
Paid
minimax-m2.7 — LLM7 free (turbo) · Very economical · list $0.03/$0.05 per 1M · Free token caps ~40 RPM / 1M TPD
|
Very economical | $0.03 | $0.05 |
bluesminds/baai/bge-m3
Paid
BGE M3 — BluesMinds (embeddings) · default group
|
Economical | $0.08 | $0.0032 |
bluesminds/snowflake/arctic-embed-m-v1.5
Paid
Arctic Embed M v1.5 — BluesMinds (embeddings) · default group
|
Economical | $0.08 | $0.0032 |
openrouter/ling-3.0-flash
Paid
Ling 3.0 Flash (inclusionAI) — Paid · 124B MoE / ~5.1B active · agentic · 262K context
|
Economical | $0.02 | $0.06 |
bluesminds/google/gemma-2-2b
Paid
Gemma 2 2B — BluesMinds (chat) · default group
|
Economical | $0.08 | $0.0064 |
bluesminds/google/gemma-2b
Paid
Gemma 2B — BluesMinds (chat) · default group
|
Economical | $0.08 | $0.0064 |
bluesminds/google/recurrentgemma-2b
Paid
RecurrentGemma 2B — BluesMinds (chat) · default group
|
Economical | $0.08 | $0.0064 |
bluesminds/ibm/granite-3.0-2b-instruct
Paid
Granite 3.0 2B Instruct — BluesMinds (chat) · default group
|
Economical | $0.08 | $0.0064 |
bluesminds/meta/llama-3.2-1b
Paid
Llama 3.2 1B — BluesMinds (chat) · default group
|
Economical | $0.08 | $0.0064 |
bluesminds/nvidia/embed-qa-4
Paid
Embed QA 4 — BluesMinds (embeddings) · default group
|
Economical | $0.08 | $0.0064 |
bluesminds/nvidia/llama-3.2-1b-instruct
Paid
Llama 3.2 1B Instruct — BluesMinds (chat) · default group
|
Economical | $0.08 | $0.0064 |
bluesminds/nvidia/llama-3.2-3b
Paid
Llama 3.2 3B — BluesMinds (chat) · default group
|
Economical | $0.08 | $0.0064 |
bluesminds/nvidia/llama-3.2-3b-instruct
Paid
Llama 3.2 3B Instruct — BluesMinds (chat) · default group
|
Economical | $0.08 | $0.0064 |
bluesminds/nvidia/llama-nemotron-3-8b
Paid
Beta
Llama Nemotron 3 8B — BluesMinds (chat) · VIP group
|
Economical | $0.08 | $0.0064 |
bluesminds/nvidia/llama-nemotron-3-8b-reward
Paid
Llama Nemotron 3 8B Reward — BluesMinds (chat) · default group
|
Economical | $0.08 | $0.0064 |
bluesminds/nvidia/nv-embed-v2
Paid
NV Embed v2 — BluesMinds (embeddings) · default group
|
Economical | $0.08 | $0.0064 |
bluesminds/nvidia/nvclip
Paid
NVClip — BluesMinds (chat) · default group
|
Economical | $0.08 | $0.0064 |
openrouter/l3-lunaris-8b
Paid
Llama 3 8B Lunaris (Sao10K) — Paid · generalist / roleplay · 8K context
|
Economical | $0.04 | $0.05 |
llm7/gpt-oss-20b
Paid
gpt-oss:20b — LLM7 free (turbo) · Very economical · list $0.04/$0.06 per 1M · Free token caps ~40 RPM / 1M TPD
|
Very economical | $0.04 | $0.06 |
llm7/gemma4-31b
Paid
gemma4:31b — LLM7 free (turbo) · Very economical · list $0.03/$0.08 per 1M · Free token caps ~40 RPM / 1M TPD
|
Very economical | $0.03 | $0.08 |
openrouter/mythomax-l2-13b
Paid
MythoMax 13B (Gryphe) — Paid · Llama 2 fine-tune · roleplay · 8K context
|
Economical | $0.06 | $0.06 |
openrouter/nex-n2-mini
Paid
Nex-N2-Mini (Nex AGI) — Paid · agentic MoE · text+image · coding/tools · 262K context
|
Economical | $0.03 | $0.10 |
openrouter/granite-4.0-h-micro
Paid
Granite 4.0 H Micro (IBM) — Paid · 3B · long-context tool calling · 131K context
|
Economical | $0.02 | $0.11 |
groq/llama-3.1-8b
Paid
Llama 3.1 8B — Groq free tier · Very economical · list $0.05/$0.08 per 1M · free caps ~30 RPM / 14400 RPD / 6000 TPM / 500000 TPD
|
Very economical | $0.05 | $0.08 |
openrouter/mistral-small-24b-instruct-2501
Paid
Mistral Small 3 (24B) — Paid · low-latency instruct · 33K context
|
Economical | $0.05 | $0.08 |
bluesminds/google/gemma-3-27b-it
Paid
Gemma 3 27B IT — BluesMinds (chat) · default group
|
Medium cost | $0.12 | $0.01 |
bluesminds/google/gemma-3-4b-it
Paid
Gemma 3 4B IT — BluesMinds (chat) · default group
|
Medium cost | $0.12 | $0.01 |
bluesminds/meta/llama-3.2-3b-instruct
Paid
Llama 3.2 3B Instruct — BluesMinds (chat) · default group
|
Medium cost | $0.12 | $0.01 |
openrouter/gemma-3-4b-it
Paid
Gemma 3 4B IT (Google) — Paid · multimodal · tools · 131K context
|
Economical | $0.05 | $0.10 |
openrouter/granite-4.1-8b
Paid
Granite 4.1 8B (IBM) — Paid · tools / RAG / code · multilingual · 131K context
|
Economical | $0.05 | $0.10 |
openrouter/solar-pro4
Paid
Solar Pro 4 (Upstage) — Paid · long-horizon / agentic · docs & coding · 524K context
|
Economical | $0.03 | $0.12 |
openrouter/gpt-oss-20b-paid
Paid
GPT-OSS 20B () — Paid · 21B MoE / ~3.6B active · tools & structured · 131K context
|
Economical | $0.03 | $0.13 |
openrouter/qwen3.7-flash
Paid
Qwen3.7 Flash (Alibaba) — Paid · vision-language · multimodal agents · 1M context
|
Economical | $0.03 | $0.13 |
openrouter/nova-micro-v1
Paid
Nova Micro 1.0 (Amazon) — Paid · low-latency text · summarization/chat · 128K context
|
Economical | $0.04 | $0.14 |
openrouter/gemma-3n-e4b-it
Paid
Gemma 3n E4B IT (Google) — Paid · multimodal · efficient · 33K context
|
Economical | $0.06 | $0.12 |
openrouter/laguna-xs-2.1
Paid
Laguna XS 2.1 (Poolside) — Paid · coding agent · tools · 262K context
|
Economical | $0.06 | $0.12 |
bluesminds/adept/fuyu-8b
Paid
Fuyu 8B — BluesMinds (chat) · default group
|
Highest cost | $0.16 | $0.03 |
bluesminds/aisingapore/sea-lion-7b-instruct
Paid
SEA-LION 7B Instruct — BluesMinds (chat) · default group
|
Highest cost | $0.16 | $0.03 |
bluesminds/google/codegemma-2b-instruct
Paid
CodeGemma 2B Instruct — BluesMinds (chat) · default group
|
Highest cost | $0.16 | $0.03 |
bluesminds/google/codegemma-7b-instruct
Paid
CodeGemma 7B Instruct — BluesMinds (chat) · default group
|
Highest cost | $0.16 | $0.03 |
bluesminds/ibm/granite-3.0-8b-instruct
Paid
Granite 3.0 8B Instruct — BluesMinds (chat) · default group
|
Highest cost | $0.16 | $0.03 |
bluesminds/ibm/granite-8b-code-instruct
Paid
Granite 8B Code Instruct — BluesMinds (chat) · default group
|
Highest cost | $0.16 | $0.03 |
bluesminds/nvidia/nemotron-mini-4b-instruct
Paid
Nemotron Mini 4B Instruct — BluesMinds (chat) · default group
|
Highest cost | $0.16 | $0.03 |
bluesminds/nvidia/nv-embedqa-e5-v5
Paid
NV EmbedQA E5 v5 — BluesMinds (embeddings) · default group
|
Highest cost | $0.16 | $0.03 |
bluesminds/nvidia/nv-embedqa-mistral-7b-v2
Paid
NV EmbedQA Mistral 7B v2 — BluesMinds (embeddings) · default group
|
Highest cost | $0.16 | $0.03 |
bluesminds/nvidia/riva-translation-en-es
Paid
Riva Translation EN→ES — BluesMinds (chat) · default group
|
Highest cost | $0.16 | $0.03 |
bluesminds/nvidia/riva-translation-en-fr
Paid
Riva Translation EN→FR — BluesMinds (chat) · default group
|
Highest cost | $0.16 | $0.03 |
bluesminds/zyphra/zamba2-7b-instruct
Paid
Zamba2 7B Instruct — BluesMinds (chat) · default group
|
Highest cost | $0.16 | $0.03 |
openrouter/command-r7b-12-2024
Paid
Command R7B 12-2024 (Cohere) — Paid · RAG / tools / agents · 128K context
|
Economical | $0.04 | $0.15 |
openrouter/ministral-3b-2512
Paid
Ministral 3 3B 2512 (Mistral) — Paid · tiny + vision · 131K context
|
Economical | $0.10 | $0.10 |
openrouter/reka-edge
Paid
Reka Edge (Reka) — Paid · 7B multimodal · vision/video · tools · 16K context
|
Economical | $0.10 | $0.10 |
openrouter/phi-4
Paid
Phi 4 (Microsoft) — Paid · 14B · reasoning · English-focused · 16K context
|
Economical | $0.07 | $0.14 |
bluesminds/google/deplot
Paid
Beta
DePlot — BluesMinds (chat) · VIP group
|
Highest cost | $0.20 | $0.02 |
bluesminds/microsoft/kosmos-2
Paid
Kosmos 2 — BluesMinds (chat) · default group
|
Highest cost | $0.20 | $0.02 |
bluesminds/microsoft/phi-3-mini-128k-instruct
Paid
Phi-3 Mini 128K Instruct — BluesMinds (chat) · default group
|
Highest cost | $0.20 | $0.02 |
bluesminds/microsoft/phi-3-mini-4k-instruct
Paid
Phi-3 Mini 4K Instruct — BluesMinds (chat) · default group
|
Highest cost | $0.20 | $0.02 |
bluesminds/microsoft/phi-4-mini-instruct
Paid
Phi-4 Mini Instruct — BluesMinds (chat) · default group
|
Highest cost | $0.20 | $0.02 |
bluesminds/microsoft/phi-4-multimodal-instruct
Paid
Phi-4 Multimodal Instruct — BluesMinds (chat) · default group
|
Highest cost | $0.20 | $0.02 |
bluesminds/bigcode/starcoder2-15b-instruct
Paid
StarCoder2 15B Instruct — BluesMinds (chat) · default group
|
Highest cost | $0.20 | $0.04 |
bluesminds/google/gemma-3-12b-it
Paid
Gemma 3 12B IT — BluesMinds (chat) · default group
|
Highest cost | $0.20 | $0.04 |
bluesminds/meta/llama-3.1-8b-instruct
Paid
Llama 3.1 8B Instruct — BluesMinds (chat) · default group
|
Highest cost | $0.20 | $0.04 |
bluesminds/nv-mistralai/mistral-nemo-12b-instruct
Paid
Beta
Mistral Nemo 12B Instruct (NV) — BluesMinds (chat) · VIP group
|
Highest cost | $0.20 | $0.04 |
bluesminds/nvidia/ai-synthetic-gen-llm-8b
Paid
AI Synthetic Gen LLM 8B — BluesMinds (chat) · default group
|
Highest cost | $0.20 | $0.04 |
bluesminds/nvidia/cosmos-reason1-7b
Paid
Cosmos Reason1 7B — BluesMinds (chat) · default group
|
Highest cost | $0.20 | $0.04 |
bluesminds/nvidia/gliner-pii
Paid
GLiNER PII — BluesMinds (chat) · default group
|
Highest cost | $0.20 | $0.04 |
bluesminds/nvidia/llama-3.1-nemotron-70b-instruct
Paid
Llama 3.1 Nemotron 70B Instruct — BluesMinds (chat) · default group
|
Highest cost | $0.20 | $0.04 |
bluesminds/nvidia/llama-3.1-nemotron-nano-8b-v1
Paid
Llama 3.1 Nemotron Nano 8B v1 — BluesMinds (chat) · default group
|
Highest cost | $0.20 | $0.04 |
bluesminds/nvidia/llama-3.1-swiftkv-8b-instruct
Paid
Llama 3.1 SwiftKV 8B Instruct — BluesMinds (chat) · default group
|
Highest cost | $0.20 | $0.04 |
bluesminds/nvidia/nemoretrieval-embedding-1
Paid
NeMo Retrieval Embedding 1 — BluesMinds (embeddings) · default group
|
Highest cost | $0.20 | $0.04 |
bluesminds/nvidia/nemotron-3-8b-chat
Paid
Nemotron 3 8B Chat — BluesMinds (chat) · default group
|
Highest cost | $0.20 | $0.04 |
bluesminds/nvidia/nemotron-4-340b-reward
Paid
Nemotron 4 340B Reward — BluesMinds (chat) · default group
|
Highest cost | $0.20 | $0.04 |
bluesminds/nvidia/nemotron-70b-instruct
Paid
Nemotron 70B Instruct — BluesMinds (chat) · default group
|
Highest cost | $0.20 | $0.04 |
bluesminds/nvidia/vila-1.5-8b
Paid
VILA 1.5 8B — BluesMinds (chat) · default group
|
Highest cost | $0.20 | $0.04 |
bluesminds/sarvamai/sarvam-mistral-7b-instruct
Paid
Sarvam Mistral 7B Instruct — BluesMinds (chat) · default group
|
Highest cost | $0.20 | $0.04 |
openrouter/qwen3.5-9b
Paid
Qwen3.5-9B (Alibaba) — Paid · multimodal · reasoning/coding · 262K context
|
Economical | $0.10 | $0.15 |
bluesminds/mistralai/mistral-7b-instruct-v0.3
Paid
Mistral 7B Instruct v0.3 — BluesMinds (chat) · default group
|
Highest cost | $0.20 | $0.06 |
bluesminds/mistralai/mistral-nemo-12b-instruct
Paid
Mistral Nemo 12B Instruct — BluesMinds (chat) · default group
|
Highest cost | $0.20 | $0.06 |
bluesminds/meta/llama-3.2-1b-instruct
Paid
Llama 3.2 1B Instruct — BluesMinds (chat) · default group
|
Highest cost | $0.24 | $0.06 |
bluesminds/gpt-oss-20b
Paid
Beta
GPT-OSS 20B — BluesMinds (chat) · VIP group
|
Medium cost | $0.10 | $0.20 |
openrouter/ministral-8b-2512
Paid
Ministral 3 8B 2512 (Mistral) — Paid · balanced + vision · 262K context
|
Economical | $0.15 | $0.15 |
bluesminds/nv-mistralai/mistral-large-2-instruct
Paid
Mistral Large 2 Instruct — BluesMinds (chat) · default group
|
Highest cost | $0.28 | $0.08 |
groq/gpt-oss-20b-fast
Paid
GPT-OSS 20B Fast — Groq free tier · Economical · list $0.075/$0.3 per 1M · free caps ~30 RPM / 1000 RPD / 8000 TPM / 200000 TPD
|
Economical | $0.08 | $0.30 |
groq/gpt-oss-safeguard-20b
Paid
Beta
GPT-OSS Safeguard 20B — Groq free tier · Economical · list $0.075/$0.3 per 1M · free caps ~30 RPM / 1000 RPD / 8000 TPM / 200000 TPD
|
Economical | $0.08 | $0.30 |
bluesminds/mimo-v2.5
Paid
MiMo v2.5 — BluesMinds (chat) · default group
|
Medium cost | $0.10 | $0.28 |
bluesminds/hy3
Paid
HY3 — BluesMinds (chat) · default group
|
Highest cost | $0.20 | $0.20 |
bluesminds/kimi-k2.5
Paid
Kimi K2.5 — BluesMinds (chat) · default group
|
Highest cost | $0.28 | $0.15 |
bluesminds/moonshotai/kimi-k1.5
Paid
Kimi K1.5 — BluesMinds (chat) · default group
|
Highest cost | $0.28 | $0.15 |
bluesminds/openai/gpt-4o-mini
Paid
GPT-4o Mini — BluesMinds (chat) · default group
|
Highest cost | $0.30 | $0.18 |
bluesminds/z-ai/glm-4.7
Paid
GLM 4.7 — BluesMinds (chat) · default group
|
Highest cost | $0.40 | $0.08 |
bluesminds/bytedance/seed-oss-36b-instruct
Paid
Seed OSS 36B Instruct — BluesMinds (chat) · default group
|
Highest cost | $0.40 | $0.16 |
bluesminds/google/gemma-4-31b-it
Paid
Gemma 4 31B IT — BluesMinds (chat) · default group
|
Highest cost | $0.40 | $0.16 |
bluesminds/meta/llama-guard-3-8b
Paid
Llama Guard 3 8B — BluesMinds (chat) · default group
|
Highest cost | $0.40 | $0.16 |
bluesminds/nvidia/ising-calculator-8b
Paid
Ising Calculator 8B — BluesMinds (chat) · default group
|
Highest cost | $0.40 | $0.16 |
bluesminds/nvidia/nemotron-4-340b-instruct
Paid
Nemotron 4 340B Instruct — BluesMinds (chat) · default group
|
Highest cost | $0.40 | $0.16 |
bluesminds/nvidia/neva-22b
Paid
NeVA 22B — BluesMinds (chat) · default group
|
Highest cost | $0.40 | $0.16 |
bluesminds/stepfun-ai/step-1-128k
Paid
Step-1 128K — BluesMinds (chat) · default group
|
Highest cost | $0.40 | $0.16 |
bluesminds/upstage/solar-10.7b-instruct
Paid
Solar 10.7B Instruct — BluesMinds (chat) · default group
|
Highest cost | $0.40 | $0.16 |
bluesminds/mistralai/ministral-8b-instruct
Paid
Ministral 8B Instruct — BluesMinds (chat) · default group
|
Highest cost | $0.40 | $0.24 |
bluesminds/mistralai/mixtral-8x22b-instruct-v0.1
Paid
Mixtral 8x22B Instruct — BluesMinds (chat) · default group
|
Highest cost | $0.40 | $0.24 |
groq/gpt-oss-120b-fast
Paid
GPT-OSS 120B Fast — Groq free tier · Economical · list $0.15/$0.6 per 1M · free caps ~30 RPM / 1000 RPD / 8000 TPM / 200000 TPD
|
Economical | $0.15 | $0.60 |
bluesminds/z-ai/glm-5
Paid
GLM 5 — BluesMinds (chat) · default group
|
Highest cost | $0.60 | $0.18 |
bluesminds/z-ai/glm-5.1
Paid
GLM 5.1 — BluesMinds (chat) · default group
|
Highest cost | $0.60 | $0.18 |
mistral/codestral
Paid
Codestral — Very economical
|
Economical | $0.30 | $0.50 |
bluesminds/minimaxai/minimax-m1
Paid
MiniMax M1 — BluesMinds (chat) · default group
|
Highest cost | $0.40 | $0.44 |
bluesminds/mistralai/codestral-2501
Paid
Codestral 2501 — BluesMinds (chat) · default group
|
Highest cost | $0.60 | $0.54 |
bluesminds/qwen2.5
Paid
Qwen2.5 — BluesMinds (chat) · default group
|
Highest cost | $0.20 | $1.00 |
groq/llama-3.3-70b-fast
Paid
Llama 3.3 70B Fast — Groq free tier · Medium cost · list $0.59/$0.79 per 1M · free caps ~30 RPM / 1000 RPD / 12000 TPM / 100000 TPD
|
Medium cost | $0.59 | $0.79 |
bluesminds/ibm/granite-34b-code-instruct
Paid
Granite 34B Code Instruct — BluesMinds (chat) · default group
|
Highest cost | $0.80 | $0.64 |
bluesminds/meta/llama-3.3-70b-instruct
Paid
Llama 3.3 70B Instruct — BluesMinds (chat) · default group
|
Highest cost | $0.80 | $0.64 |
bluesminds/meta/llama-4-maverick-17b-128e-instruct
Paid
Llama 4 Maverick 17B — BluesMinds (chat) · default group
|
Highest cost | $0.80 | $0.64 |
bluesminds/nvidia/llama-3.1-70b-instruct
Paid
Llama 3.1 70B Instruct — BluesMinds (chat) · default group
|
Highest cost | $0.80 | $0.64 |
bluesminds/nvidia/llama-3.1-8b-instruct
Paid
Llama 3.1 8B Instruct — BluesMinds (chat) · default group
|
Highest cost | $0.80 | $0.64 |
bluesminds/nvidia/llama-3.3-70b-instruct
Paid
Llama 3.3 70B Instruct (NV) — BluesMinds (chat) · default group
|
Highest cost | $0.80 | $0.64 |
bluesminds/nvidia/llama3-chatqa-1-8b-v1
Paid
Llama3 ChatQA 1 8B v1 — BluesMinds (chat) · default group
|
Highest cost | $0.80 | $0.64 |
mistral/mistral-medium-api
Paid
Mistral Medium — Very economical
|
Medium cost | $0.71 | $0.90 |
bluesminds/mistralai/mistral-large-2411
Paid
Mistral Large 2411 — BluesMinds (chat) · default group
|
Highest cost | $0.80 | $0.96 |
bluesminds/mistralai/mistral-small-2503
Paid
Mistral Small 2503 — BluesMinds (chat) · default group
|
Highest cost | $0.80 | $0.96 |
bluesminds/qwen/qwen3-next-80b-a3b-instruct
Paid
Qwen3 Next 80B A3B Instruct — BluesMinds (chat) · default group
|
Highest cost | $0.80 | $1.28 |
hcnsec/auto
Paid
Auto Router — HCNSEC (chat) · Very economical
|
Very economical | $1.21 | $1.21 |
groq/qwen3.6-27b
Paid
Beta
Qwen3.6 27B — Groq free tier · Medium cost · list $0.6/$3 per 1M · free caps ~30 RPM / 1000 RPD / 8000 TPM / 200000 TPD
|
Medium cost | $0.60 | $3.00 |
bluesminds/openai/gpt-5-mini
Paid
GPT-5 Mini — BluesMinds (chat) · default group
|
Highest cost | $0.50 | $4.00 |
hcnsec/qwen3.6-27b
Paid
Qwen3.6 27B — HCNSEC (chat) · Economical
|
Economical | $2.52 | $2.52 |
hcnsec/sensenova-u1-fast
Paid
SenseNova U1 Fast — HCNSEC (chat) · Economical
|
Economical | $2.52 | $2.52 |
hcnsec/step-3.5-flash
Paid
Step 3.5 Flash — HCNSEC (chat) · Economical
|
Economical | $3.02 | $3.02 |
hcnsec/stepaudio-2.5-chat
Paid
StepAudio 2.5 Chat — HCNSEC (chat) · Economical
|
Economical | $3.02 | $3.02 |
hcnsec/stepaudio-2.5-tts
Paid
StepAudio 2.5 TTS — HCNSEC (chat) · Economical
|
Economical | $3.02 | $3.02 |
hcnsec/sensenova-6.7-flash
Paid
SenseNova 6.7 Flash — HCNSEC (chat) · Medium cost
|
Medium cost | $4.03 | $4.03 |
hcnsec/step-3.5-flash-2603
Paid
Step 3.5 Flash 2603 — HCNSEC (chat) · Medium cost
|
Medium cost | $5.03 | $5.03 |
hcnsec/step-image-edit-2
Paid
HCNSEC · Step Image Edit 2 (explicit upstream id)
|
paid | $22.15 | $22.15 |
These are reference rates for comparison. Billing follows your subscription plan quotas.