Lewati ke konten
Logo LLM7.io

LLM7.io

Inference7 modelcontext maks 1M

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);
.env
LLM7_IO_API_KEY=your-api-key-here

Belum punya API key? Ambil di halaman resmi LLM7.io.

Cara claim API key gratis

Langkah umum — detail pastinya ikutin halaman resmi LLM7.io.

  1. 1.Buka halaman API key LLM7.io
  2. 2.Daftar akun baru, atau login kalau udah punya.
  3. 3.Generate API key di dashboard / settings.
  4. 4.Pakai API key + Base URL https://api.llm7.io/v1 di SDK atau HTTP client.

Model tersedia (7)

DeepSeek V4 Flash 0731
deepseek-v4-flash-0731
Modality
reasoning
Context
1.0M
Gemini 3.1 Flash Lite
gemini-3-1-flash-lite
Modality
vision + audio + reasoning
Context
1.0M
Output
64K
Gemma 4 31B IT
gemma-4-31b-it
Modality
vision + reasoning
Context
262K
Codestral (latest)
codestral-latest
Modality
text
Context
256K
Output
4K
minimax-m2.7
minimax-m2.7
Modality
Text (reasoning)
Context
180K
Rate limit
10 RPM, 60 req/hr (anonymous)
gpt-oss:20b
gpt-oss:20b
Modality
Text
Context
128K
Output
32K
Rate limit
10 RPM, 60 req/hr (anonymous)
mistral-Nemo-Instruct-2407
mistral-Nemo-Instruct-2407
Modality
Text
Context
128K
Rate limit
10 RPM, 60 req/hr (anonymous)

Model ini di provider lain (6)

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.