Web Annonces Router AI Gateway

Developer docs

Build on the Web Annonces Router API

One stable, OpenAI-compatible endpoint across leading models. Point any OpenAI SDK at our base URL, authenticate with your key, and ship.

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.

1

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 →
2

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.

text
https://router.web-annonces.net/v1
3

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!" }
    ]
  }'

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

http
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

http
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

json
{
  "model": "blaze/deepseek-v4-pro",
  "messages": [
    { "role": "system", "content": "You are helpful." },
    { "role": "user", "content": "Hello!" }
  ],
  "temperature": 0.7,
  "max_tokens": 256
}

Response

json
{
  "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.

http
GET https://router.web-annonces.net/v1/models

Capabilities

261 results
blaze/deepseek-v4-pro
TEXT
v4-pro — BlazeAPI free Standard (-compatible) · Very economical
blaze/minimax-m3
TEXT
MiniMax-M3 — BlazeAPI free Standard (-compatible) · Very economical
bluesminds/adept/fuyu-8b
TEXT VISION
Fuyu 8B — BluesMinds (chat) · default group Paid
bluesminds/aisingapore/sea-lion-7b-instruct
TEXT
SEA-LION 7B Instruct — BluesMinds (chat) · default group Paid
bluesminds/baai/bge-m3
EMBEDDING
BGE M3 — BluesMinds (embeddings) · default group Paid
bluesminds/bigcode/starcoder2-15b-instruct
TEXT
StarCoder2 15B Instruct — BluesMinds (chat) · default group Paid
bluesminds/bytedance/seed-oss-36b-instruct
TEXT
Seed OSS 36B Instruct — BluesMinds (chat) · default group Paid
bluesminds/google/codegemma-2b-instruct
TEXT
CodeGemma 2B Instruct — BluesMinds (chat) · default group Paid
bluesminds/google/codegemma-7b-instruct
TEXT
CodeGemma 7B Instruct — BluesMinds (chat) · default group Paid
bluesminds/google/deplot
TEXT VISION
DePlot — BluesMinds (chat) · VIP group Paid Beta
bluesminds/google/gemma-2-2b
TEXT
Gemma 2 2B — BluesMinds (chat) · default group Paid
bluesminds/google/gemma-2b
TEXT
Gemma 2B — BluesMinds (chat) · default group Paid
bluesminds/google/gemma-3-12b-it
TEXT
Gemma 3 12B IT — BluesMinds (chat) · default group Paid
bluesminds/google/gemma-3-27b-it
TEXT
Gemma 3 27B IT — BluesMinds (chat) · default group Paid
bluesminds/google/gemma-3-4b-it
TEXT
Gemma 3 4B IT — BluesMinds (chat) · default group Paid
bluesminds/google/gemma-4-31b-it
TEXT
Gemma 4 31B IT — BluesMinds (chat) · default group Paid
bluesminds/google/recurrentgemma-2b
TEXT
RecurrentGemma 2B — BluesMinds (chat) · default group Paid
bluesminds/gpt-oss-20b
TEXT
GPT-OSS 20B — BluesMinds (chat) · VIP group Paid Beta
bluesminds/hy3
TEXT
HY3 — BluesMinds (chat) · default group Paid
bluesminds/ibm/granite-3.0-2b-instruct
TEXT
Granite 3.0 2B Instruct — BluesMinds (chat) · default group Paid
bluesminds/ibm/granite-3.0-8b-instruct
TEXT
Granite 3.0 8B Instruct — BluesMinds (chat) · default group Paid
bluesminds/ibm/granite-34b-code-instruct
TEXT
Granite 34B Code Instruct — BluesMinds (chat) · default group Paid
bluesminds/ibm/granite-8b-code-instruct
TEXT
Granite 8B Code Instruct — BluesMinds (chat) · default group Paid
bluesminds/kimi-k2.5
TEXT
Kimi K2.5 — BluesMinds (chat) · default group Paid
bluesminds/meta/llama-3.1-8b-instruct
TEXT
Llama 3.1 8B Instruct — BluesMinds (chat) · default group Paid
bluesminds/meta/llama-3.2-1b
TEXT
Llama 3.2 1B — BluesMinds (chat) · default group Paid
bluesminds/meta/llama-3.2-1b-instruct
TEXT
Llama 3.2 1B Instruct — BluesMinds (chat) · default group Paid
bluesminds/meta/llama-3.2-3b-instruct
TEXT
Llama 3.2 3B Instruct — BluesMinds (chat) · default group Paid
bluesminds/meta/llama-3.3-70b-instruct
TEXT
Llama 3.3 70B Instruct — BluesMinds (chat) · default group Paid
bluesminds/meta/llama-4-maverick-17b-128e-instruct
TEXT
Llama 4 Maverick 17B — BluesMinds (chat) · default group Paid
bluesminds/meta/llama-guard-3-8b
TEXT
Llama Guard 3 8B — BluesMinds (chat) · default group Paid
bluesminds/microsoft/kosmos-2
TEXT VISION
Kosmos 2 — BluesMinds (chat) · default group Paid
bluesminds/microsoft/phi-3-mini-128k-instruct
TEXT
Phi-3 Mini 128K Instruct — BluesMinds (chat) · default group Paid
bluesminds/microsoft/phi-3-mini-4k-instruct
TEXT
Phi-3 Mini 4K Instruct — BluesMinds (chat) · default group Paid
bluesminds/microsoft/phi-4-mini-instruct
TEXT
Phi-4 Mini Instruct — BluesMinds (chat) · default group Paid
bluesminds/microsoft/phi-4-multimodal-instruct
TEXT VISION
Phi-4 Multimodal Instruct — BluesMinds (chat) · default group Paid
bluesminds/mimo-v2.5
TEXT
MiMo v2.5 — BluesMinds (chat) · default group Paid
bluesminds/minimaxai/minimax-m1
TEXT
MiniMax M1 — BluesMinds (chat) · default group Paid
bluesminds/mistralai/codestral-2501
TEXT
Codestral 2501 — BluesMinds (chat) · default group Paid
bluesminds/mistralai/ministral-8b-instruct
TEXT
Ministral 8B Instruct — BluesMinds (chat) · default group Paid
bluesminds/mistralai/mistral-7b-instruct-v0.3
TEXT
Mistral 7B Instruct v0.3 — BluesMinds (chat) · default group Paid
bluesminds/mistralai/mistral-large-2411
TEXT
Mistral Large 2411 — BluesMinds (chat) · default group Paid
bluesminds/mistralai/mistral-nemo-12b-instruct
TEXT
Mistral Nemo 12B Instruct — BluesMinds (chat) · default group Paid
bluesminds/mistralai/mistral-small-2503
TEXT
Mistral Small 2503 — BluesMinds (chat) · default group Paid
bluesminds/mistralai/mixtral-8x22b-instruct-v0.1
TEXT
Mixtral 8x22B Instruct — BluesMinds (chat) · default group Paid
bluesminds/moonshotai/kimi-k1.5
TEXT
Kimi K1.5 — BluesMinds (chat) · default group Paid
bluesminds/nv-mistralai/mistral-large-2-instruct
TEXT
Mistral Large 2 Instruct — BluesMinds (chat) · default group Paid
bluesminds/nv-mistralai/mistral-nemo-12b-instruct
TEXT
Mistral Nemo 12B Instruct (NV) — BluesMinds (chat) · VIP group Paid Beta
bluesminds/nvidia/ai-synthetic-gen-llm-8b
TEXT
AI Synthetic Gen LLM 8B — BluesMinds (chat) · default group Paid
bluesminds/nvidia/cosmos-reason1-7b
TEXT
Cosmos Reason1 7B — BluesMinds (chat) · default group Paid
bluesminds/nvidia/embed-qa-4
EMBEDDING
Embed QA 4 — BluesMinds (embeddings) · default group Paid
bluesminds/nvidia/gliner-pii
TEXT
GLiNER PII — BluesMinds (chat) · default group Paid
bluesminds/nvidia/ising-calculator-8b
TEXT
Ising Calculator 8B — BluesMinds (chat) · default group Paid
bluesminds/nvidia/llama-3.1-70b-instruct
TEXT
Llama 3.1 70B Instruct — BluesMinds (chat) · default group Paid
bluesminds/nvidia/llama-3.1-8b-instruct
TEXT
Llama 3.1 8B Instruct — BluesMinds (chat) · default group Paid
bluesminds/nvidia/llama-3.1-nemotron-70b-instruct
TEXT
Llama 3.1 Nemotron 70B Instruct — BluesMinds (chat) · default group Paid
bluesminds/nvidia/llama-3.1-nemotron-nano-8b-v1
TEXT
Llama 3.1 Nemotron Nano 8B v1 — BluesMinds (chat) · default group Paid
bluesminds/nvidia/llama-3.1-swiftkv-8b-instruct
TEXT
Llama 3.1 SwiftKV 8B Instruct — BluesMinds (chat) · default group Paid
bluesminds/nvidia/llama-3.2-1b-instruct
TEXT
Llama 3.2 1B Instruct — BluesMinds (chat) · default group Paid
bluesminds/nvidia/llama-3.2-3b
TEXT
Llama 3.2 3B — BluesMinds (chat) · default group Paid
bluesminds/nvidia/llama-3.2-3b-instruct
TEXT
Llama 3.2 3B Instruct — BluesMinds (chat) · default group Paid
bluesminds/nvidia/llama-3.3-70b-instruct
TEXT
Llama 3.3 70B Instruct (NV) — BluesMinds (chat) · default group Paid
bluesminds/nvidia/llama-nemotron-3-8b
TEXT
Llama Nemotron 3 8B — BluesMinds (chat) · VIP group Paid Beta
bluesminds/nvidia/llama-nemotron-3-8b-reward
TEXT
Llama Nemotron 3 8B Reward — BluesMinds (chat) · default group Paid
bluesminds/nvidia/llama3-chatqa-1-8b-v1
TEXT
Llama3 ChatQA 1 8B v1 — BluesMinds (chat) · default group Paid
bluesminds/nvidia/nemoretrieval-embedding-1
EMBEDDING
NeMo Retrieval Embedding 1 — BluesMinds (embeddings) · default group Paid
bluesminds/nvidia/nemotron-3-8b-chat
TEXT
Nemotron 3 8B Chat — BluesMinds (chat) · default group Paid
bluesminds/nvidia/nemotron-4-340b-instruct
TEXT
Nemotron 4 340B Instruct — BluesMinds (chat) · default group Paid
bluesminds/nvidia/nemotron-4-340b-reward
TEXT
Nemotron 4 340B Reward — BluesMinds (chat) · default group Paid
bluesminds/nvidia/nemotron-70b-instruct
TEXT
Nemotron 70B Instruct — BluesMinds (chat) · default group Paid
bluesminds/nvidia/nemotron-mini-4b-instruct
TEXT
Nemotron Mini 4B Instruct — BluesMinds (chat) · default group Paid
bluesminds/nvidia/neva-22b
TEXT VISION
NeVA 22B — BluesMinds (chat) · default group Paid
bluesminds/nvidia/nv-embed-v2
EMBEDDING
NV Embed v2 — BluesMinds (embeddings) · default group Paid
bluesminds/nvidia/nv-embedqa-e5-v5
EMBEDDING
NV EmbedQA E5 v5 — BluesMinds (embeddings) · default group Paid
bluesminds/nvidia/nv-embedqa-mistral-7b-v2
EMBEDDING
NV EmbedQA Mistral 7B v2 — BluesMinds (embeddings) · default group Paid
bluesminds/nvidia/nvclip
TEXT VISION
NVClip — BluesMinds (chat) · default group Paid
bluesminds/nvidia/riva-translation-en-es
TEXT
Riva Translation EN→ES — BluesMinds (chat) · default group Paid
bluesminds/nvidia/riva-translation-en-fr
TEXT
Riva Translation EN→FR — BluesMinds (chat) · default group Paid
bluesminds/nvidia/vila-1.5-8b
TEXT VISION
VILA 1.5 8B — BluesMinds (chat) · default group Paid
bluesminds/openai/gpt-4o-mini
TEXT
GPT-4o Mini — BluesMinds (chat) · default group Paid
bluesminds/openai/gpt-5-mini
TEXT
GPT-5 Mini — BluesMinds (chat) · default group Paid
bluesminds/openai/gpt-o3-mini-2025-01-31
TEXT
GPT o3 mini (2025-01-31) — BluesMinds (chat) · default group Paid
bluesminds/qwen/qwen3-next-80b-a3b-instruct
TEXT
Qwen3 Next 80B A3B Instruct — BluesMinds (chat) · default group Paid
bluesminds/qwen2.5
TEXT
Qwen2.5 — BluesMinds (chat) · default group Paid
bluesminds/sarvamai/sarvam-mistral-7b-instruct
TEXT
Sarvam Mistral 7B Instruct — BluesMinds (chat) · default group Paid
bluesminds/snowflake/arctic-embed-m-v1.5
EMBEDDING
Arctic Embed M v1.5 — BluesMinds (embeddings) · default group Paid
bluesminds/stepfun-ai/step-1-128k
TEXT
Step-1 128K — BluesMinds (chat) · default group Paid
bluesminds/upstage/solar-10.7b-instruct
TEXT
Solar 10.7B Instruct — BluesMinds (chat) · default group Paid
bluesminds/z-ai/glm-4.7
TEXT
GLM 4.7 — BluesMinds (chat) · default group Paid
bluesminds/z-ai/glm-5
TEXT
GLM 5 — BluesMinds (chat) · default group Paid
bluesminds/z-ai/glm-5.1
TEXT
GLM 5.1 — BluesMinds (chat) · default group Paid
bluesminds/zyphra/zamba2-7b-instruct
TEXT
Zamba2 7B Instruct — BluesMinds (chat) · default group Paid
bytez/dreamlike-anime-1.0
IMAGE_GEN
Dreamlike Anime 1.0 — Bytez Free open text-to-image (SD ≤~1B · under Free ≤7B)
bytez/dreamlike-photoreal-2.0
IMAGE_GEN
Dreamlike Photoreal 2.0 — Bytez Free open text-to-image (SD ≤~1B · under Free ≤7B)
bytez/openjourney
IMAGE_GEN
Openjourney — Bytez Free open text-to-image (SD ≤~1B · under Free ≤7B)
bytez/sd-turbo
IMAGE_GEN
SD Turbo — Bytez Free open text-to-image (SD ≤~1B · under Free ≤7B)
bytez/sd-v1-4
IMAGE_GEN
Stable Diffusion v1.4 — Bytez Free open text-to-image (SD ≤~1B · under Free ≤7B)
bytez/sd-v1-5
IMAGE_GEN
Stable Diffusion v1.5 — Bytez Free open text-to-image (SD ≤~1B · under Free ≤7B)
cipher
TEXT CODING REASONING
Chat / coding / reasoning via api.atomesus.com. Image gen not on public gateway — use Admin Image Lab probe.
cloudflare/flux
IMAGE_GEN
Higher quality images via FLUX.1 schnell
cloudflare/image
IMAGE_GEN
Fast stable covers via Workers AI Lightning
cloudflare/sdxl
IMAGE_GEN
Classic SDXL base image generation
cohere/command-a
TEXT
Command A — Cohere Compatibility API (chat) · Economical
cohere/command-a-plus
TEXT
Command A+ — Cohere Compatibility API (chat) · mid
cohere/command-r7b
TEXT
Command R7B — Cohere Compatibility API (chat) · Very economical
cohere/embed-v4
EMBEDDING
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
IMAGE_GEN
Queued Gemini image gen. SouqRouter price $0; Google AI Studio Billing/Prepay required (image Free Tier = Not available).
image-2
IMAGE_GEN
Queued quality Gemini image gen. SouqRouter price $0; Google Billing required for image models.
image-lite
IMAGE_GEN
Queued volume Gemini image gen. SouqRouter price $0; Google Billing required for image models.
groq/gpt-oss-120b-fast
TEXT
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
TEXT
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
TEXT
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
TEXT
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
TEXT
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
TEXT
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
TEXT
hallo/claude-opus-4.7 — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
hallorouter/claude-sonnet-4.6
TEXT
hallo/claude-sonnet-4.6 — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
hallorouter/deepseek-v4-flash
TEXT
hallo/-v4-flash — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
hallorouter/deepseek-v4-pro
TEXT
hallo/-v4-pro — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
hallorouter/gemini-3-flash
TEXT
hallo/gemini-3-flash — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
hallorouter/gemini-3-flash-agent
TEXT
hallo/gemini-3-flash-agent — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
hallorouter/gemini-3.1-pro-low
TEXT
hallo/gemini-3.1-pro-low — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
hallorouter/gemini-3.5-flash-extra-low
TEXT
hallo/gemini-3.5-flash-extra-low — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
hallorouter/gemini-3.5-flash-low
TEXT
hallo/gemini-3.5-flash-low — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
hallorouter/gemini-3.6-flash-low
TEXT
hallo/gemini-3.6-flash-low — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
hallorouter/gemini-3.7-flash-low
TEXT
hallo/gemini-3.7-flash-low — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
hallorouter/glm-5.2
TEXT
hallo/glm-5.2 — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
hallorouter/gpt-5.4
TEXT
hallo/gpt-5.4 — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
hallorouter/gpt-5.4-mini
TEXT
hallo/gpt-5.4-mini — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
hallorouter/gpt-5.5
TEXT
hallo/gpt-5.5 — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
hallorouter/gpt-5.6-luna
TEXT
hallo/gpt-5.6-luna — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
hallorouter/gpt-5.6-sol
TEXT
hallo/gpt-5.6-sol — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
hallorouter/gpt-5.6-sol-max
TEXT
hallo/gpt-5.6-sol-max — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
hallorouter/gpt-5.6-terra
TEXT
hallo/gpt-5.6-terra — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
hallorouter/kimi-k2.7-code
TEXT
hallo/kimi-k2.7-code — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
hallorouter/qwen-3.7-max
TEXT
hallo/qwen-3.7-max — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
hallorouter/qwen-3.7-plus
TEXT
hallo/qwen-3.7-plus — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
hcnsec/auto
TEXT REASONING TOOLS
Auto Router — HCNSEC (chat) · Very economical Paid
hcnsec/qwen3.6-27b
TEXT REASONING TOOLS
Qwen3.6 27B — HCNSEC (chat) · Economical Paid
hcnsec/sensenova-6.7-flash
TEXT
SenseNova 6.7 Flash — HCNSEC (chat) · Medium cost Paid
hcnsec/sensenova-u1-fast
TEXT
SenseNova U1 Fast — HCNSEC (chat) · Economical Paid
hcnsec/step-3.5-flash
TEXT REASONING TOOLS
Step 3.5 Flash — HCNSEC (chat) · Economical Paid
hcnsec/step-3.5-flash-2603
TEXT REASONING TOOLS
Step 3.5 Flash 2603 — HCNSEC (chat) · Medium cost Paid
hcnsec/step-image-edit-2
IMAGE_GEN
Same as hcnsec/image. Paid
hcnsec/stepaudio-2.5-chat
TEXT
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
TEXT
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
TEXT
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
TEXT
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
TEXT
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
TEXT
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
TEXT CODING REASONING VISION LIGHTWEIGHT EMBEDDING OCR TOOLS AGENTIC
Codestral — Very economical Paid
mistral/devstral Devstral — Very economical Beta
mistral/image
IMAGE_GEN
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
TEXT IMAGE_GEN
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
TEXT CODING REASONING VISION LIGHTWEIGHT EMBEDDING OCR TOOLS AGENTIC
Mistral Medium 3.5 — Very economical
nimb/deepseek-ai-deepseek-v4-flash-0731
TEXT
ai/-v4-flash-0731 — NVIDIA Build free NIM chat · -ai · Free · Free Endpoint tier · ~40 RPM
nimb/google-gemma-4-31b-it
TEXT
google/gemma-4-31b-it — NVIDIA Build free NIM chat · google · Free · Free Endpoint tier · ~40 RPM
nimb/meta-llama-3.1-70b-instruct
TEXT
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
TEXT
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
TEXT
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
TEXT
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
TEXT
meta/llama-3.3-70b-instruct — NVIDIA Build free NIM chat · meta · Free · Free Endpoint tier · ~40 RPM
nimb/minimaxai-minimax-m3
TEXT
minimaxai/minimax-m3 — NVIDIA Build free NIM chat · minimaxai · Free · Free Endpoint tier · ~40 RPM
nimb/mistralai-mistral-nemotron
TEXT
mistralai/mistral-nemotron — NVIDIA Build free NIM chat · mistralai · Free · Free Endpoint tier · ~40 RPM
nimb/nvidia-llama-3.1-nemotron-nano-8b-v1
TEXT
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
TEXT
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
TEXT
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
TEXT
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
TEXT
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
TEXT
nvidia/nemotron-3-ultra-550b-a55b — NVIDIA Build free NIM chat · nvidia · Free · Free Endpoint tier · ~40 RPM
nimb/nvidia-nemotron-mini-4b-instruct
TEXT
nvidia/nemotron-mini-4b-instruct — NVIDIA Build free NIM chat · nvidia · Free · Free Endpoint tier · ~40 RPM
nimb/nvidia-nemotron-nano-12b-v2-vl
TEXT
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
TEXT
nvidia/nvidia-nemotron-nano-9b-v2 — NVIDIA Build free NIM chat · nvidia · Free · Free Endpoint tier · ~40 RPM
nimb/openai-gpt-oss-120b
TEXT
/gpt-oss-120b — NVIDIA Build free NIM chat · · Free · Free Endpoint tier · ~40 RPM
nimb/openai-gpt-oss-20b
TEXT
/gpt-oss-20b — NVIDIA Build free NIM chat · · Free · Free Endpoint tier · ~40 RPM
nimb/poolside-laguna-xs-2.1
TEXT
poolside/laguna-xs-2.1 — NVIDIA Build free NIM chat · poolside · Free · Free Endpoint tier · ~40 RPM
nimb/stepfun-ai-step-3.7-flash
TEXT
stepfun-ai/step-3.7-flash — NVIDIA Build free NIM chat · stepfun-ai · Free · Free Endpoint tier · ~40 RPM
nimb/thinkingmachines-inkling
TEXT
thinkingmachines/inkling — NVIDIA Build free NIM chat · thinkingmachines · Free · Free Endpoint tier · ~40 RPM
nimb/writer-palmyra-creative-122b
TEXT
writer/palmyra-creative-122b — NVIDIA Build free NIM chat · writer · Free · Free Endpoint tier · ~40 RPM
nimb/writer-palmyra-fin-70b-32k
TEXT
writer/palmyra-fin-70b-32k — NVIDIA Build free NIM chat · writer · Free · Free Endpoint tier · ~40 RPM
nimb/writer-palmyra-med-70b
TEXT
writer/palmyra-med-70b — NVIDIA Build free NIM chat · writer · Free · Free Endpoint tier · ~40 RPM
nimb/writer-palmyra-med-70b-32k
TEXT
writer/palmyra-med-70b-32k — NVIDIA Build free NIM chat · writer · Free · Free Endpoint tier · ~40 RPM
nimb/z-ai-glm-5.2
TEXT
z-ai/glm-5.2 — NVIDIA Build free NIM chat · z-ai · Free · Free Endpoint tier · ~40 RPM
nimb/zyphra-zamba2-7b-instruct
TEXT
zyphra/zamba2-7b-instruct — NVIDIA Build free NIM chat · zyphra · Free · Free Endpoint tier · ~40 RPM
nvidia/flux
IMAGE_GEN
Higher quality FLUX.1 Dev via NVIDIA NIM.
nvidia/image
IMAGE_GEN
Fast high-quality covers via NVIDIA cloud GenAI. Free Trial limited on build.nvidia.com.
nvidia/qwen
IMAGE_GEN
Multilingual text rendering in images via Qwen-Image.
nvidia/sd35
IMAGE_GEN
SD 3.5 Large text-to-image via NVIDIA NIM.
ollama/deepseek-v4-flash
TEXT REASONING
V4 Flash — Ollama Cloud (chat) · Economical
ollama/gemma4-31b
TEXT
Gemma 4 31B — Ollama Cloud (chat) · Economical
ollama/gpt-oss-120b
TEXT
GPT-OSS 120B — Ollama Cloud (chat) · mid
ollama/gpt-oss-20b
TEXT LIGHTWEIGHT
GPT-OSS 20B — Ollama Cloud (chat) · Very economical
ollama/minimax-m2.7
TEXT
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
TEXT
Plugsky Lite — Plugsky free tier (-compatible) · Very economical
plugsky/micro
TEXT
Plugsky Micro — Plugsky free tier (-compatible) · Very economical
runware/flux
IMAGE_GEN
Was FLUX.1 Schnell; now klein 4B so every cover stays ≤ ~$0.0006 @ ≤1024.
runware/image
IMAGE_GEN
Ultra-cheap stable covers (~$0.0006/img @ ≤1024). Best default for high volume.
runware/twinflow
IMAGE_GEN
Same upstream as z-turbo · display alias (~$0.0006/img @ ≤1024 · 4 steps).
runware/z-turbo
IMAGE_GEN
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
TEXT
Chat via TokenFaucet daily claim wallet (modelType=free)
tf/gpt-5.6-terra
TEXT
Chat via TokenFaucet daily claim wallet (modelType=free)
tf/mimo-v2.5
TEXT
Chat via TokenFaucet daily claim wallet (modelType=free)
tf/mimo-v2.5-pro
TEXT
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

http
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

json
{
  "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"
  }'

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.

json
{
  "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

json
{
  "error": {
    "type": "rate_limited",
    "message": "Rate limit exceeded. Please retry later.",
    "request_id": "req_..."
  }
}

Status codes

Status Type Meaning
400validation_errorMalformed or invalid request body (including stream: true on the default gateway).
401invalid_api_keyMissing or invalid API key (type invalid_api_key).
403forbiddenPlan does not include the requested model, or account is suspended.
403beta_not_allowedBeta model without beta access on the API key.
403telegram_requiredFree plan requires Telegram verification before API access.
403telegram_channel_requiredFree plan requires joining the configured Telegram channel.
404not_found / model_not_foundUnknown model alias or endpoint.
413payload_too_largeRequest body exceeds the size limit.
429rate_limitedRequests-per-minute limit exceeded.
429daily_capDaily plan token quota exceeded (and PAYG did not cover the request).
429image_daily_capDaily image generation quota exceeded for your account (all API keys share the same day window).
429image_provider_busyUpstream image provider rate-limited the request (image_provider_busy). Retry after 30–120 seconds.
501not_implementedFeature or route not available on this gateway.
502upstream_error / upstream_5xx / image_upstreamUpstream AI or image generation failed (image_upstream). Retry with backoff; messages stay generic by design.
503service_unavailable / maintenance / image_disabledMaintenance, temporary unavailability, or image generation disabled (image_disabled). Retry with backoff when appropriate.
504upstream_timeoutUpstream AI provider timed out. Retry later.
500internal_errorUnexpected 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.

View full pricing →

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)
IMAGE_GEN
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)
IMAGE_GEN
Very economical $0.00 $0.00
bytez/openjourney
Openjourney — Bytez Free open text-to-image (SD ≤~1B · under Free ≤7B)
IMAGE_GEN
Very economical $0.00 $0.00
bytez/sd-turbo
SD Turbo — Bytez Free open text-to-image (SD ≤~1B · under Free ≤7B)
IMAGE_GEN
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)
IMAGE_GEN
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)
IMAGE_GEN
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)
IMAGE_GEN
Free $0.00 $0.00
image-2
Gemini 3.1 Flash Image · needs Google Billing · serial queue (1 concurrent)
IMAGE_GEN
Free $0.00 $0.00
image-lite
Gemini 3.1 Flash Lite Image · needs Google Billing · serial queue (1 concurrent)
IMAGE_GEN
Free $0.00 $0.00
hallorouter/claude-opus-4.7
hallo/claude-opus-4.7 — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
TEXT
Economical $0.00 $0.00
hallorouter/claude-sonnet-4.6
hallo/claude-sonnet-4.6 — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
TEXT
Economical $0.00 $0.00
hallorouter/deepseek-v4-flash
hallo/-v4-flash — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
TEXT
Economical $0.00 $0.00
hallorouter/deepseek-v4-pro
hallo/-v4-pro — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
TEXT
Economical $0.00 $0.00
hallorouter/gemini-3-flash
hallo/gemini-3-flash — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
TEXT
Economical $0.00 $0.00
hallorouter/gemini-3-flash-agent
hallo/gemini-3-flash-agent — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
TEXT
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)
TEXT
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)
TEXT
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)
TEXT
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)
TEXT
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)
TEXT
Economical $0.00 $0.00
hallorouter/glm-5.2
hallo/glm-5.2 — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
TEXT
Economical $0.00 $0.00
hallorouter/gpt-5.4
hallo/gpt-5.4 — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
TEXT
Economical $0.00 $0.00
hallorouter/gpt-5.4-mini
hallo/gpt-5.4-mini — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
TEXT
Economical $0.00 $0.00
hallorouter/gpt-5.5
hallo/gpt-5.5 — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
TEXT
Economical $0.00 $0.00
hallorouter/gpt-5.6-luna
hallo/gpt-5.6-luna — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
TEXT
Economical $0.00 $0.00
hallorouter/gpt-5.6-sol
hallo/gpt-5.6-sol — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
TEXT
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)
TEXT
Economical $0.00 $0.00
hallorouter/gpt-5.6-terra
hallo/gpt-5.6-terra — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
TEXT
Economical $0.00 $0.00
hallorouter/kimi-k2.7-code
hallo/kimi-k2.7-code — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
TEXT
Economical $0.00 $0.00
hallorouter/qwen-3.7-max
hallo/qwen-3.7-max — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
TEXT
Economical $0.00 $0.00
hallorouter/qwen-3.7-plus
hallo/qwen-3.7-plus — HalloRouter chat · hallorouter · Economical · wallet billing (actual × multiplier)
TEXT
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
TEXT CODING REASONING VISION LIGHTWEIGHT EMBEDDING OCR TOOLS AGENTIC
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
TEXT
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
TEXT
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
TEXT
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
TEXT
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
TEXT
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
TEXT
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
TEXT
Free $0.00 $0.00
nimb/minimaxai-minimax-m3
minimaxai/minimax-m3 — NVIDIA Build free NIM chat · minimaxai · Free · Free Endpoint tier · ~40 RPM
TEXT
Free $0.00 $0.00
nimb/mistralai-mistral-nemotron
mistralai/mistral-nemotron — NVIDIA Build free NIM chat · mistralai · Free · Free Endpoint tier · ~40 RPM
TEXT
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
TEXT
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
TEXT
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
TEXT
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
TEXT
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
TEXT
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
TEXT
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
TEXT
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
TEXT
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
TEXT
Free $0.00 $0.00
nimb/openai-gpt-oss-120b
/gpt-oss-120b — NVIDIA Build free NIM chat · · Free · Free Endpoint tier · ~40 RPM
TEXT
Free $0.00 $0.00
nimb/openai-gpt-oss-20b
/gpt-oss-20b — NVIDIA Build free NIM chat · · Free · Free Endpoint tier · ~40 RPM
TEXT
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
TEXT
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
TEXT
Free $0.00 $0.00
nimb/thinkingmachines-inkling
thinkingmachines/inkling — NVIDIA Build free NIM chat · thinkingmachines · Free · Free Endpoint tier · ~40 RPM
TEXT
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
TEXT
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
TEXT
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
TEXT
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
TEXT
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
TEXT
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
TEXT
Free $0.00 $0.00
nvidia/flux
Trial · NVIDIA NIM – FLUX.1 Dev
IMAGE_GEN
trial $0.00 $0.00
nvidia/image
Trial · NVIDIA NIM – FLUX.1 Schnell (default covers)
IMAGE_GEN
trial $0.00 $0.00
nvidia/qwen
Trial · NVIDIA NIM – Qwen-Image
IMAGE_GEN
trial $0.00 $0.00
nvidia/sd35
Trial · NVIDIA NIM – Stable Diffusion 3.5 Large
IMAGE_GEN
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)
IMAGE_GEN
budget $0.00 $0.00
runware/image
Budget · Runware – FLUX.2 klein 4B (default covers)
IMAGE_GEN
budget $0.00 $0.00
runware/twinflow
Budget · Runware – TwinFlow Z-Image-Turbo
IMAGE_GEN
budget $0.00 $0.00
runware/z-turbo
Budget · Runware – Z-Image-Turbo
IMAGE_GEN
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) ·
TEXT
Very economical $0.00 $0.00
tf/gpt-5.6-terra
gpt-5.6-terra — TokenFaucet free (daily claim wallet) ·
TEXT
Very economical $0.00 $0.00
tf/mimo-v2.5
mimo-v2.5 — TokenFaucet free (daily claim wallet) · mimo
TEXT
Very economical $0.00 $0.00
tf/mimo-v2.5-pro
mimo-v2.5-pro — TokenFaucet free (daily claim wallet) · mimo
TEXT
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
TEXT
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
TEXT
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
TEXT
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
TEXT
Very economical $0.03 $0.05
bluesminds/baai/bge-m3 Paid
BGE M3 — BluesMinds (embeddings) · default group
EMBEDDING
Economical $0.08 $0.0032
bluesminds/snowflake/arctic-embed-m-v1.5 Paid
Arctic Embed M v1.5 — BluesMinds (embeddings) · default group
EMBEDDING
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
TEXT
Economical $0.08 $0.0064
bluesminds/google/gemma-2b Paid
Gemma 2B — BluesMinds (chat) · default group
TEXT
Economical $0.08 $0.0064
bluesminds/google/recurrentgemma-2b Paid
RecurrentGemma 2B — BluesMinds (chat) · default group
TEXT
Economical $0.08 $0.0064
bluesminds/ibm/granite-3.0-2b-instruct Paid
Granite 3.0 2B Instruct — BluesMinds (chat) · default group
TEXT
Economical $0.08 $0.0064
bluesminds/meta/llama-3.2-1b Paid
Llama 3.2 1B — BluesMinds (chat) · default group
TEXT
Economical $0.08 $0.0064
bluesminds/nvidia/embed-qa-4 Paid
Embed QA 4 — BluesMinds (embeddings) · default group
EMBEDDING
Economical $0.08 $0.0064
bluesminds/nvidia/llama-3.2-1b-instruct Paid
Llama 3.2 1B Instruct — BluesMinds (chat) · default group
TEXT
Economical $0.08 $0.0064
bluesminds/nvidia/llama-3.2-3b Paid
Llama 3.2 3B — BluesMinds (chat) · default group
TEXT
Economical $0.08 $0.0064
bluesminds/nvidia/llama-3.2-3b-instruct Paid
Llama 3.2 3B Instruct — BluesMinds (chat) · default group
TEXT
Economical $0.08 $0.0064
bluesminds/nvidia/llama-nemotron-3-8b Paid Beta
Llama Nemotron 3 8B — BluesMinds (chat) · VIP group
TEXT
Economical $0.08 $0.0064
bluesminds/nvidia/llama-nemotron-3-8b-reward Paid
Llama Nemotron 3 8B Reward — BluesMinds (chat) · default group
TEXT
Economical $0.08 $0.0064
bluesminds/nvidia/nv-embed-v2 Paid
NV Embed v2 — BluesMinds (embeddings) · default group
EMBEDDING
Economical $0.08 $0.0064
bluesminds/nvidia/nvclip Paid
NVClip — BluesMinds (chat) · default group
TEXT VISION
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
TEXT
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
TEXT
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
TEXT
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
TEXT
Medium cost $0.12 $0.01
bluesminds/google/gemma-3-4b-it Paid
Gemma 3 4B IT — BluesMinds (chat) · default group
TEXT
Medium cost $0.12 $0.01
bluesminds/meta/llama-3.2-3b-instruct Paid
Llama 3.2 3B Instruct — BluesMinds (chat) · default group
TEXT
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
TEXT VISION
Highest cost $0.16 $0.03
bluesminds/aisingapore/sea-lion-7b-instruct Paid
SEA-LION 7B Instruct — BluesMinds (chat) · default group
TEXT
Highest cost $0.16 $0.03
bluesminds/google/codegemma-2b-instruct Paid
CodeGemma 2B Instruct — BluesMinds (chat) · default group
TEXT
Highest cost $0.16 $0.03
bluesminds/google/codegemma-7b-instruct Paid
CodeGemma 7B Instruct — BluesMinds (chat) · default group
TEXT
Highest cost $0.16 $0.03
bluesminds/ibm/granite-3.0-8b-instruct Paid
Granite 3.0 8B Instruct — BluesMinds (chat) · default group
TEXT
Highest cost $0.16 $0.03
bluesminds/ibm/granite-8b-code-instruct Paid
Granite 8B Code Instruct — BluesMinds (chat) · default group
TEXT
Highest cost $0.16 $0.03
bluesminds/nvidia/nemotron-mini-4b-instruct Paid
Nemotron Mini 4B Instruct — BluesMinds (chat) · default group
TEXT
Highest cost $0.16 $0.03
bluesminds/nvidia/nv-embedqa-e5-v5 Paid
NV EmbedQA E5 v5 — BluesMinds (embeddings) · default group
EMBEDDING
Highest cost $0.16 $0.03
bluesminds/nvidia/nv-embedqa-mistral-7b-v2 Paid
NV EmbedQA Mistral 7B v2 — BluesMinds (embeddings) · default group
EMBEDDING
Highest cost $0.16 $0.03
bluesminds/nvidia/riva-translation-en-es Paid
Riva Translation EN→ES — BluesMinds (chat) · default group
TEXT
Highest cost $0.16 $0.03
bluesminds/nvidia/riva-translation-en-fr Paid
Riva Translation EN→FR — BluesMinds (chat) · default group
TEXT
Highest cost $0.16 $0.03
bluesminds/zyphra/zamba2-7b-instruct Paid
Zamba2 7B Instruct — BluesMinds (chat) · default group
TEXT
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
TEXT VISION
Highest cost $0.20 $0.02
bluesminds/microsoft/kosmos-2 Paid
Kosmos 2 — BluesMinds (chat) · default group
TEXT VISION
Highest cost $0.20 $0.02
bluesminds/microsoft/phi-3-mini-128k-instruct Paid
Phi-3 Mini 128K Instruct — BluesMinds (chat) · default group
TEXT
Highest cost $0.20 $0.02
bluesminds/microsoft/phi-3-mini-4k-instruct Paid
Phi-3 Mini 4K Instruct — BluesMinds (chat) · default group
TEXT
Highest cost $0.20 $0.02
bluesminds/microsoft/phi-4-mini-instruct Paid
Phi-4 Mini Instruct — BluesMinds (chat) · default group
TEXT
Highest cost $0.20 $0.02
bluesminds/microsoft/phi-4-multimodal-instruct Paid
Phi-4 Multimodal Instruct — BluesMinds (chat) · default group
TEXT VISION
Highest cost $0.20 $0.02
bluesminds/bigcode/starcoder2-15b-instruct Paid
StarCoder2 15B Instruct — BluesMinds (chat) · default group
TEXT
Highest cost $0.20 $0.04
bluesminds/google/gemma-3-12b-it Paid
Gemma 3 12B IT — BluesMinds (chat) · default group
TEXT
Highest cost $0.20 $0.04
bluesminds/meta/llama-3.1-8b-instruct Paid
Llama 3.1 8B Instruct — BluesMinds (chat) · default group
TEXT
Highest cost $0.20 $0.04
bluesminds/nv-mistralai/mistral-nemo-12b-instruct Paid Beta
Mistral Nemo 12B Instruct (NV) — BluesMinds (chat) · VIP group
TEXT
Highest cost $0.20 $0.04
bluesminds/nvidia/ai-synthetic-gen-llm-8b Paid
AI Synthetic Gen LLM 8B — BluesMinds (chat) · default group
TEXT
Highest cost $0.20 $0.04
bluesminds/nvidia/cosmos-reason1-7b Paid
Cosmos Reason1 7B — BluesMinds (chat) · default group
TEXT
Highest cost $0.20 $0.04
bluesminds/nvidia/gliner-pii Paid
GLiNER PII — BluesMinds (chat) · default group
TEXT
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
TEXT
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
TEXT
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
TEXT
Highest cost $0.20 $0.04
bluesminds/nvidia/nemoretrieval-embedding-1 Paid
NeMo Retrieval Embedding 1 — BluesMinds (embeddings) · default group
EMBEDDING
Highest cost $0.20 $0.04
bluesminds/nvidia/nemotron-3-8b-chat Paid
Nemotron 3 8B Chat — BluesMinds (chat) · default group
TEXT
Highest cost $0.20 $0.04
bluesminds/nvidia/nemotron-4-340b-reward Paid
Nemotron 4 340B Reward — BluesMinds (chat) · default group
TEXT
Highest cost $0.20 $0.04
bluesminds/nvidia/nemotron-70b-instruct Paid
Nemotron 70B Instruct — BluesMinds (chat) · default group
TEXT
Highest cost $0.20 $0.04
bluesminds/nvidia/vila-1.5-8b Paid
VILA 1.5 8B — BluesMinds (chat) · default group
TEXT VISION
Highest cost $0.20 $0.04
bluesminds/sarvamai/sarvam-mistral-7b-instruct Paid
Sarvam Mistral 7B Instruct — BluesMinds (chat) · default group
TEXT
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
TEXT
Highest cost $0.20 $0.06
bluesminds/mistralai/mistral-nemo-12b-instruct Paid
Mistral Nemo 12B Instruct — BluesMinds (chat) · default group
TEXT
Highest cost $0.20 $0.06
bluesminds/meta/llama-3.2-1b-instruct Paid
Llama 3.2 1B Instruct — BluesMinds (chat) · default group
TEXT
Highest cost $0.24 $0.06
bluesminds/gpt-oss-20b Paid Beta
GPT-OSS 20B — BluesMinds (chat) · VIP group
TEXT
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
TEXT
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
TEXT
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
TEXT
Economical $0.08 $0.30
bluesminds/mimo-v2.5 Paid
MiMo v2.5 — BluesMinds (chat) · default group
TEXT
Medium cost $0.10 $0.28
bluesminds/hy3 Paid
HY3 — BluesMinds (chat) · default group
TEXT
Highest cost $0.20 $0.20
bluesminds/kimi-k2.5 Paid
Kimi K2.5 — BluesMinds (chat) · default group
TEXT
Highest cost $0.28 $0.15
bluesminds/moonshotai/kimi-k1.5 Paid
Kimi K1.5 — BluesMinds (chat) · default group
TEXT
Highest cost $0.28 $0.15
bluesminds/openai/gpt-4o-mini Paid
GPT-4o Mini — BluesMinds (chat) · default group
TEXT
Highest cost $0.30 $0.18
bluesminds/z-ai/glm-4.7 Paid
GLM 4.7 — BluesMinds (chat) · default group
TEXT
Highest cost $0.40 $0.08
bluesminds/bytedance/seed-oss-36b-instruct Paid
Seed OSS 36B Instruct — BluesMinds (chat) · default group
TEXT
Highest cost $0.40 $0.16
bluesminds/google/gemma-4-31b-it Paid
Gemma 4 31B IT — BluesMinds (chat) · default group
TEXT
Highest cost $0.40 $0.16
bluesminds/meta/llama-guard-3-8b Paid
Llama Guard 3 8B — BluesMinds (chat) · default group
TEXT
Highest cost $0.40 $0.16
bluesminds/nvidia/ising-calculator-8b Paid
Ising Calculator 8B — BluesMinds (chat) · default group
TEXT
Highest cost $0.40 $0.16
bluesminds/nvidia/nemotron-4-340b-instruct Paid
Nemotron 4 340B Instruct — BluesMinds (chat) · default group
TEXT
Highest cost $0.40 $0.16
bluesminds/nvidia/neva-22b Paid
NeVA 22B — BluesMinds (chat) · default group
TEXT VISION
Highest cost $0.40 $0.16
bluesminds/stepfun-ai/step-1-128k Paid
Step-1 128K — BluesMinds (chat) · default group
TEXT
Highest cost $0.40 $0.16
bluesminds/upstage/solar-10.7b-instruct Paid
Solar 10.7B Instruct — BluesMinds (chat) · default group
TEXT
Highest cost $0.40 $0.16
bluesminds/mistralai/ministral-8b-instruct Paid
Ministral 8B Instruct — BluesMinds (chat) · default group
TEXT
Highest cost $0.40 $0.24
bluesminds/mistralai/mixtral-8x22b-instruct-v0.1 Paid
Mixtral 8x22B Instruct — BluesMinds (chat) · default group
TEXT
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
TEXT
Economical $0.15 $0.60
bluesminds/z-ai/glm-5 Paid
GLM 5 — BluesMinds (chat) · default group
TEXT
Highest cost $0.60 $0.18
bluesminds/z-ai/glm-5.1 Paid
GLM 5.1 — BluesMinds (chat) · default group
TEXT
Highest cost $0.60 $0.18
mistral/codestral Paid
Codestral — Very economical
TEXT CODING REASONING VISION LIGHTWEIGHT EMBEDDING OCR TOOLS AGENTIC
Economical $0.30 $0.50
bluesminds/minimaxai/minimax-m1 Paid
MiniMax M1 — BluesMinds (chat) · default group
TEXT
Highest cost $0.40 $0.44
bluesminds/mistralai/codestral-2501 Paid
Codestral 2501 — BluesMinds (chat) · default group
TEXT
Highest cost $0.60 $0.54
bluesminds/qwen2.5 Paid
Qwen2.5 — BluesMinds (chat) · default group
TEXT
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
TEXT
Medium cost $0.59 $0.79
bluesminds/ibm/granite-34b-code-instruct Paid
Granite 34B Code Instruct — BluesMinds (chat) · default group
TEXT
Highest cost $0.80 $0.64
bluesminds/meta/llama-3.3-70b-instruct Paid
Llama 3.3 70B Instruct — BluesMinds (chat) · default group
TEXT
Highest cost $0.80 $0.64
bluesminds/meta/llama-4-maverick-17b-128e-instruct Paid
Llama 4 Maverick 17B — BluesMinds (chat) · default group
TEXT
Highest cost $0.80 $0.64
bluesminds/nvidia/llama-3.1-70b-instruct Paid
Llama 3.1 70B Instruct — BluesMinds (chat) · default group
TEXT
Highest cost $0.80 $0.64
bluesminds/nvidia/llama-3.1-8b-instruct Paid
Llama 3.1 8B Instruct — BluesMinds (chat) · default group
TEXT
Highest cost $0.80 $0.64
bluesminds/nvidia/llama-3.3-70b-instruct Paid
Llama 3.3 70B Instruct (NV) — BluesMinds (chat) · default group
TEXT
Highest cost $0.80 $0.64
bluesminds/nvidia/llama3-chatqa-1-8b-v1 Paid
Llama3 ChatQA 1 8B v1 — BluesMinds (chat) · default group
TEXT
Highest cost $0.80 $0.64
mistral/mistral-medium-api Paid
Mistral Medium — Very economical
TEXT IMAGE_GEN
Medium cost $0.71 $0.90
bluesminds/mistralai/mistral-large-2411 Paid
Mistral Large 2411 — BluesMinds (chat) · default group
TEXT
Highest cost $0.80 $0.96
bluesminds/mistralai/mistral-small-2503 Paid
Mistral Small 2503 — BluesMinds (chat) · default group
TEXT
Highest cost $0.80 $0.96
bluesminds/qwen/qwen3-next-80b-a3b-instruct Paid
Qwen3 Next 80B A3B Instruct — BluesMinds (chat) · default group
TEXT
Highest cost $0.80 $1.28
hcnsec/auto Paid
Auto Router — HCNSEC (chat) · Very economical
TEXT REASONING TOOLS
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
TEXT
Medium cost $0.60 $3.00
bluesminds/openai/gpt-5-mini Paid
GPT-5 Mini — BluesMinds (chat) · default group
TEXT
Highest cost $0.50 $4.00
hcnsec/qwen3.6-27b Paid
Qwen3.6 27B — HCNSEC (chat) · Economical
TEXT REASONING TOOLS
Economical $2.52 $2.52
hcnsec/sensenova-u1-fast Paid
SenseNova U1 Fast — HCNSEC (chat) · Economical
TEXT
Economical $2.52 $2.52
hcnsec/step-3.5-flash Paid
Step 3.5 Flash — HCNSEC (chat) · Economical
TEXT REASONING TOOLS
Economical $3.02 $3.02
hcnsec/stepaudio-2.5-chat Paid
StepAudio 2.5 Chat — HCNSEC (chat) · Economical
TEXT
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
TEXT
Medium cost $4.03 $4.03
hcnsec/step-3.5-flash-2603 Paid
Step 3.5 Flash 2603 — HCNSEC (chat) · Medium cost
TEXT REASONING TOOLS
Medium cost $5.03 $5.03
hcnsec/step-image-edit-2 Paid
HCNSEC · Step Image Edit 2 (explicit upstream id)
IMAGE_GEN
paid $22.15 $22.15

These are reference rates for comparison. Billing follows your subscription plan quotas.