Kilo Gateway

poolside/laguna-xs-2.1:free
Context window262K tokens
Free budgetfree · 200/hr per IP tokens/mo
Rate limitsnot published
No API key required info
Routes anonymously — the catalog ships a keyless sentinel row and calls work with no account or key.
Needs token room info
This route can spend 90+ hidden reasoning tokens before visible output. Avoid tiny max_tokens values or the request can finish by length with empty content.

NVIDIA NIM

poolside/laguna-xs-2.1
Context window262K tokens
Free budgetfree · 40 RPM tokens/mo
Requests / min40 RPM
Recurring free, 40 RPM, eval-only ToS info
NVIDIA NIM replaced its depleting trial credits with a recurring per-account rate limit (40 RPM default, varies by model), verified June 2026. The trial ToS still scopes usage to evaluation/prototyping, not production.

OpenRouter

poolside/laguna-xs-2.1:free
Context window131K tokens
Free budget~6M tokens/mo
Requests / min20 RPM
Requests / day200 RPD
Daily :free cap is account-wide info
OpenRouter’s :free daily cap (50/day, or 1000/day once you have ever bought $10 of credits) is shared across ALL :free models on the account, not per model. Per-row rpd values here are therefore optimistic; the router’s cooldown handling absorbs the shared 429s.
Needs token room info
This route can spend 90+ hidden reasoning tokens before visible output. Avoid tiny max_tokens values or the request can finish by length with empty content.

Get this model the moment it changes

Limits move, models get replaced, better ones launch. Premium routers see this page's data live. Free routers see last month's.

ライブを有効化 · $19/yr →

Use it

FreeLLMAPI is a self-hosted router you run yourself. Install it, paste in your free Kilo Gateway key, and poolside/laguna-xs-2.1:free answers on an OpenAI-compatible endpoint at http://localhost:3001/v1. No credit card, no hosted middleman: your prompts and your provider keys never leave your machine.

Install the router (macOS, Linux, WSL)
curl -fsSL https://freellmapi.co/install.sh | bash
Install the router (Windows PowerShell)
iwr -useb https://freellmapi.co/install.ps1 | iex
Call poolside/laguna-xs-2.1:free with curl
curl http://localhost:3001/v1/chat/completions \
  -H "Authorization: Bearer freellmapi-your-unified-key" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "poolside/laguna-xs-2.1:free",
    "messages": [{"role": "user", "content": "Say hi in five words."}]
  }'
The same request in Python (openai)
from openai import OpenAI

client = OpenAI(
    base_url="http://localhost:3001/v1",
    api_key="freellmapi-your-unified-key",
)

resp = client.chat.completions.create(
    model="poolside/laguna-xs-2.1:free",
    messages=[{"role": "user", "content": "Say hi in five words."}],
)
print(resp.choices[0].message.content)

The router answers on /v1/chat/completions and every other OpenAI surface, plus the Anthropic Messages API, so existing clients need only a new base_url. Swap the model id for auto and the router picks the best free model that is still under its limits. Full reference: docs/api.md.