
LLM7.io
Catatan dari sumber
API gateway with a free tier. Anonymous access needs no key and reaches the turbo models; a free token from token.llm7.io raises the rate and token limits but reaches the same models.
Setup dalam 5 menit
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.llm7.io/v1",
apiKey: process.env.LLM7_IO_API_KEY,
});
const response = await client.chat.completions.create({
model: "deepseek-v4-flash-0731",
messages: [{ role: "user", content: "Halo!" }],
});
console.log(response.choices[0].message.content);LLM7_IO_API_KEY=your-api-key-hereBelum punya API key? Ambil di halaman resmi LLM7.io ↗.
Cara claim API key gratis
Langkah umum — detail pastinya ikutin halaman resmi LLM7.io.
- 1.Buka halaman API key LLM7.io ↗
- 2.Daftar akun baru, atau login kalau udah punya.
- 3.Generate API key di dashboard / settings.
- 4.Pakai API key + Base URL
https://api.llm7.io/v1di SDK atau HTTP client.
Model tersedia (7)
- Modality
- reasoning
- Context
- 1.0M
- Modality
- vision + audio + reasoning
- Context
- 1.0M
- Output
- 64K
- Modality
- vision + reasoning
- Context
- 262K
- Modality
- text
- Context
- 256K
- Output
- 4K
- Modality
- Text (reasoning)
- Context
- 180K
- Rate limit
- 10 RPM, 60 req/hr (anonymous)
- Modality
- Text
- Context
- 128K
- Output
- 32K
- Rate limit
- 10 RPM, 60 req/hr (anonymous)
- Modality
- Text
- Context
- 128K
- Rate limit
- 10 RPM, 60 req/hr (anonymous)
| Model | Modality | Context | Output | Rate limit |
|---|---|---|---|---|
DeepSeek V4 Flash 0731 deepseek-v4-flash-0731 | reasoning | 1.0M | ||
Gemini 3.1 Flash Lite gemini-3-1-flash-lite | vision + audio + reasoning | 1.0M | 64K | |
Gemma 4 31B IT gemma-4-31b-it | vision + reasoning | 262K | ||
Codestral (latest) codestral-latest | text | 256K | 4K | |
minimax-m2.7 minimax-m2.7 | Text (reasoning) | 180K | 10 RPM, 60 req/hr (anonymous) | |
gpt-oss:20b gpt-oss:20b | Text | 128K | 32K | 10 RPM, 60 req/hr (anonymous) |
mistral-Nemo-Instruct-2407 mistral-Nemo-Instruct-2407 | Text | 128K | 10 RPM, 60 req/hr (anonymous) |
Model ini di provider lain (6)
Nama model yang sama juga muncul di provider lain menurut sumber masing-masing — versi/kuantisasi bisa beda.
FAQ
Apakah API LLM7.io gratis?
Ya — menurut sumber: "API gateway with a free tier. Anonymous access needs no key and reaches the turbo models; a free token from token.llm7.io raises the rate and token limits but reaches the same models." Data dari mnfst/awesome-free-llm-apis, freellm.net, models.dev, terakhir di-sync 2 Sep 2026 — cek sumber untuk kondisi terbaru.
Ada berapa model gratis di LLM7.io?
7 model tercantum per 2 Sep 2026, termasuk DeepSeek V4 Flash 0731, Gemini 3.1 Flash Lite, Gemma 4 31B IT.
Berapa rate limit LLM7.io?
Beda-beda per model, contoh: minimax-m2.7: 10 RPM, 60 req/hr (anonymous); gpt-oss:20b: 10 RPM, 60 req/hr (anonymous); mistral-Nemo-Instruct-2407: 10 RPM, 60 req/hr (anonymous). Limit lengkap per model, lihat tabel di atas.
Berapa context window maksimal di LLM7.io?
1M.