Free models
$0
Open models served through Groq. 5 requests per minute, 50 per UTC day, shared capacity. Works with a $0 balance.
OpenAI-compatible API
Point any OpenAI client at Router and call GPT and Claude models with one key. You pay the provider's own list price plus exactly 5%, settled from the provider receipt. Free open models cost nothing.
No card for free models. Prepay from $20 for paid models. No subscription.
# Any OpenAI SDK or tool
export OPENAI_BASE_URL="https://router.writingmate.ai/v1"
export OPENAI_API_KEY="your-router-key"
# Python
from openai import OpenAI
client = OpenAI()
reply = client.chat.completions.create(
model="anthropic/claude-sonnet-4-6",
messages=[{"role": "user", "content": "Hello"}],
)
Pricing
USD per 1M tokens. The Provider column is the official list price. The Router column is what you pay. Prices refresh from the provider price list every few minutes.
| Model | Input | Output | ||
|---|---|---|---|---|
| Provider | Router | Provider | Router | |
| Loading current prices… | ||||
Cached input and cache writes are also billed at provider price plus 5%. Machine-readable list: /v1/models.
$0
Open models served through Groq. 5 requests per minute, 50 per UTC day, shared capacity. Works with a $0 balance.
+5%
Each request reserves its worst case, then settles to the exact usage on the provider receipt. Never an estimate.
from $20
Prepay by card. Per-request, daily, and monthly caps protect your balance. Unused funds stay in your account.
Quickstart
Google, Writingmate, or email.
One active key, revoke any time.
Use free/general or free/coding.
Unlock GPT and Claude models.
curl https://router.writingmate.ai/v1/chat/completions \
-H "Authorization: Bearer $ROUTER_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"free/general","messages":[{"role":"user","content":"Say hello in five words."}]}'
| Endpoint | Access | Streaming |
|---|---|---|
| /v1/chat/completions | free and paid | Yes |
| /v1/responses | paid | Yes |
| /v1/completions | paid | Yes |
| /v1/models | public | No |
Machine-readable matrix: /v1/compatibility.
FAQ