LLM7.io
LLM7.io ist ein unabhängiges Gateway: https://api.llm7.io/v1 nehmen und mit dem Platzhalter-Key „unused“ aufrufen — kein Konto, keine E-Mail. Genau das ist der Punkt.
LLM7.io ist ein unabhängiges Gateway: https://api.llm7.io/v1 nehmen und mit dem Platzhalter-Key „unused“ aufrufen — kein Konto, keine E-Mail. Genau das ist der Punkt.
Anonymer Verkehr läuft mit 10 Anfragen pro Minute über das Turbo-Set: gpt-oss, Gemma 4 31B, MiniMax M2.7, Codestral und Mistral Nemo. Ein Gratis-Token von token.llm7.io hebt es auf 40 pro Minute und öffnet weitere ids. Für einen ersten Test gut genug.
- Kostenlose Modelle
- 5
- Max. Kontext
- 1M
- Gratis-Tarif
- 10/Minute (40 mit Token)
- Anforderung
- Nichts — kein Konto
Endpunkt
Basis-URL
https://api.llm7.io/v1Umgebungsvariable
LLM7_API_KEYRatengrenze
10 requests/minute anonymous, 40 requests/minute with a token- OpenAI-kompatibel
- Text
- Bild
- Audio
- Video
- Code
- Vision
- Reasoning
Codebeispiele
npm install openaiimport OpenAI from 'openai'
const client = new OpenAI({
baseURL: 'https://api.llm7.io/v1',
apiKey: process.env.LLM7_API_KEY
})
const response = await client.chat.completions.create({
model: 'gpt-oss',
messages: [{ role: 'user', content: 'Explain closures in one paragraph.' }]
})
console.log(response.choices[0].message.content)pip install openaiimport os
from openai import OpenAI
client = OpenAI(
base_url="https://api.llm7.io/v1",
api_key=os.environ["LLM7_API_KEY"],
)
response = client.chat.completions.create(
model="gpt-oss",
messages=[{"role": "user", "content": "Explain closures in one paragraph."}],
)
print(response.choices[0].message.content)curl https://api.llm7.io/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $LLM7_API_KEY" \
-d '{
"model": "gpt-oss",
"messages": [{"role": "user", "content": "Explain closures in one paragraph."}]
}'Wissenswert
- Funktioniert mit dem Platzhalter-Key „unused“, wenn du dir nie einen Token holst.
- Anonymer Verkehr läuft nur über das Turbo-Set: codestral-latest, gemma4:31b, gpt-oss (GPT-OSS 120B), minimax-m2.7, mistral-Nemo-Instruct-2407.
Modelle, die Sie gratis bekommen5
- GPT-OSS 120B
gpt-oss - Gemma 4 31B
gemma4:31b - MiniMax M2.7
minimax-m2.7 - Codestral
codestral-latest - Mistral Nemo
mistral-Nemo-Instruct-2407