› qwen/qwen3.8-27b groq · api.groq.com/openai/v1key Tools: we called it and it worked Schema: we called it and it worked JSON: we called it and it worked Vision: we called it and it failed 155 ms 42/42 2 h ago Copy curl curl .env python node
curl curl https://api.groq.com/openai/v1/chat/completions \
-H 'Authorization: Bearer YOUR_GROQ_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"model":"qwen/qwen3.8-27b","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://api.groq.com/openai/v1
OPENAI_API_KEY=your-groq-api-key
OPENAI_MODEL=qwen/qwen3.8-27b python import os
from openai import OpenAI
client = OpenAI(
base_url="https://api.groq.com/openai/v1",
api_key=os.environ["YOUR_GROQ_API_KEY"],
)
print(client.chat.completions.create(
model="qwen/qwen3.8-27b",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.groq.com/openai/v1",
apiKey: process.env.YOUR_GROQ_API_KEY,
});
const reply = await client.chat.completions.create({
model: "qwen/qwen3.8-27b",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://api.groq.com/openai/v1 Model ID qwen/qwen3.8-27b Auth our own free-tier key Answered answered all 42 checks we made in the last week Last ok 2 h ago A test from here would need your key, and we will not ask for it. Paste the snippet where your key already lives.
› openai/gpt-oss-safeguard-20b groq · api.groq.com/openai/v1key Tools: we called it and it worked Schema: we called it and it worked JSON: we called it and it worked Vision: we called it and it failed 211 ms 42/42 3 h ago Copy curl curl .env python node
curl curl https://api.groq.com/openai/v1/chat/completions \
-H 'Authorization: Bearer YOUR_GROQ_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"model":"openai/gpt-oss-safeguard-20b","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://api.groq.com/openai/v1
OPENAI_API_KEY=your-groq-api-key
OPENAI_MODEL=openai/gpt-oss-safeguard-20b python import os
from openai import OpenAI
client = OpenAI(
base_url="https://api.groq.com/openai/v1",
api_key=os.environ["YOUR_GROQ_API_KEY"],
)
print(client.chat.completions.create(
model="openai/gpt-oss-safeguard-20b",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.groq.com/openai/v1",
apiKey: process.env.YOUR_GROQ_API_KEY,
});
const reply = await client.chat.completions.create({
model: "openai/gpt-oss-safeguard-20b",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://api.groq.com/openai/v1 Model ID openai/gpt-oss-safeguard-20b Auth our own free-tier key Answered answered all 42 checks we made in the last week Last ok 3 h ago A test from here would need your key, and we will not ask for it. Paste the snippet where your key already lives.
› openai/gpt-oss-120b groq · api.groq.com/openai/v1key Tools: we called it and it worked Schema: we called it and it worked JSON: we called it and it worked Vision: we called it and it failed 302 ms 42/42 13 min ago Copy curl curl .env python node
curl curl https://api.groq.com/openai/v1/chat/completions \
-H 'Authorization: Bearer YOUR_GROQ_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"model":"openai/gpt-oss-120b","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://api.groq.com/openai/v1
OPENAI_API_KEY=your-groq-api-key
OPENAI_MODEL=openai/gpt-oss-120b python import os
from openai import OpenAI
client = OpenAI(
base_url="https://api.groq.com/openai/v1",
api_key=os.environ["YOUR_GROQ_API_KEY"],
)
print(client.chat.completions.create(
model="openai/gpt-oss-120b",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.groq.com/openai/v1",
apiKey: process.env.YOUR_GROQ_API_KEY,
});
const reply = await client.chat.completions.create({
model: "openai/gpt-oss-120b",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://api.groq.com/openai/v1 Model ID openai/gpt-oss-120b Auth our own free-tier key Answered answered all 42 checks we made in the last week Last ok 13 min ago A test from here would need your key, and we will not ask for it. Paste the snippet where your key already lives.
› openai/gpt-oss-20b groq · api.groq.com/openai/v1key Tools: we called it and it worked Schema: we called it and it worked JSON: we called it and it worked Vision: we called it and it failed 340 ms 42/42 2 h ago Copy curl curl .env python node
curl curl https://api.groq.com/openai/v1/chat/completions \
-H 'Authorization: Bearer YOUR_GROQ_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"model":"openai/gpt-oss-20b","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://api.groq.com/openai/v1
OPENAI_API_KEY=your-groq-api-key
OPENAI_MODEL=openai/gpt-oss-20b python import os
from openai import OpenAI
client = OpenAI(
base_url="https://api.groq.com/openai/v1",
api_key=os.environ["YOUR_GROQ_API_KEY"],
)
print(client.chat.completions.create(
model="openai/gpt-oss-20b",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.groq.com/openai/v1",
apiKey: process.env.YOUR_GROQ_API_KEY,
});
const reply = await client.chat.completions.create({
model: "openai/gpt-oss-20b",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://api.groq.com/openai/v1 Model ID openai/gpt-oss-20b Auth our own free-tier key Answered answered all 42 checks we made in the last week Last ok 2 h ago A test from here would need your key, and we will not ask for it. Paste the snippet where your key already lives.
› allam-2-7b groq · api.groq.com/openai/v1key Tools: we called it and it failed Schema: we called it and it failed JSON: we called it and it worked Vision: we called it and it failed 362 ms 42/42 1 h ago Copy curl curl .env python node
curl curl https://api.groq.com/openai/v1/chat/completions \
-H 'Authorization: Bearer YOUR_GROQ_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"model":"allam-2-7b","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://api.groq.com/openai/v1
OPENAI_API_KEY=your-groq-api-key
OPENAI_MODEL=allam-2-7b python import os
from openai import OpenAI
client = OpenAI(
base_url="https://api.groq.com/openai/v1",
api_key=os.environ["YOUR_GROQ_API_KEY"],
)
print(client.chat.completions.create(
model="allam-2-7b",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.groq.com/openai/v1",
apiKey: process.env.YOUR_GROQ_API_KEY,
});
const reply = await client.chat.completions.create({
model: "allam-2-7b",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://api.groq.com/openai/v1 Model ID allam-2-7b Auth our own free-tier key Answered answered all 42 checks we made in the last week Last ok 1 h ago A test from here would need your key, and we will not ask for it. Paste the snippet where your key already lives.
› ministral-3b-latest mistral · api.mistral.ai/v1key Tools: we called it and it worked Schema: we called it and it worked JSON: we called it and it worked Vision: we called it and it worked 508 ms 13/13 9 h ago Copy curl curl .env python node
curl curl https://api.mistral.ai/v1/chat/completions \
-H 'Authorization: Bearer YOUR_MISTRAL_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"model":"ministral-3b-latest","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://api.mistral.ai/v1
OPENAI_API_KEY=your-mistral-api-key
OPENAI_MODEL=ministral-3b-latest python import os
from openai import OpenAI
client = OpenAI(
base_url="https://api.mistral.ai/v1",
api_key=os.environ["YOUR_MISTRAL_API_KEY"],
)
print(client.chat.completions.create(
model="ministral-3b-latest",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.mistral.ai/v1",
apiKey: process.env.YOUR_MISTRAL_API_KEY,
});
const reply = await client.chat.completions.create({
model: "ministral-3b-latest",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://api.mistral.ai/v1 Model ID ministral-3b-latest Auth our own free-tier key Answered answered all 13 checks we made in the last week Last ok 9 h ago A test from here would need your key, and we will not ask for it. Paste the snippet where your key already lives.
› ministral-3b-2512 mistral · api.mistral.ai/v1key Tools: we called it and it worked Schema: we called it and it worked JSON: we called it and it worked Vision: we called it and it worked 518 ms 13/13 10 h ago Copy curl curl .env python node
curl curl https://api.mistral.ai/v1/chat/completions \
-H 'Authorization: Bearer YOUR_MISTRAL_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"model":"ministral-3b-2512","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://api.mistral.ai/v1
OPENAI_API_KEY=your-mistral-api-key
OPENAI_MODEL=ministral-3b-2512 python import os
from openai import OpenAI
client = OpenAI(
base_url="https://api.mistral.ai/v1",
api_key=os.environ["YOUR_MISTRAL_API_KEY"],
)
print(client.chat.completions.create(
model="ministral-3b-2512",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.mistral.ai/v1",
apiKey: process.env.YOUR_MISTRAL_API_KEY,
});
const reply = await client.chat.completions.create({
model: "ministral-3b-2512",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://api.mistral.ai/v1 Model ID ministral-3b-2512 Auth our own free-tier key Answered answered all 13 checks we made in the last week Last ok 10 h ago A test from here would need your key, and we will not ask for it. Paste the snippet where your key already lives.
› voxtral-small-2507 mistral · api.mistral.ai/v1key Tools: we called it and it worked Schema: we called it and it worked JSON: we called it and it worked Vision: we called it and it failed 550 ms 13/13 8 h ago Copy curl curl .env python node
curl curl https://api.mistral.ai/v1/chat/completions \
-H 'Authorization: Bearer YOUR_MISTRAL_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"model":"voxtral-small-2507","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://api.mistral.ai/v1
OPENAI_API_KEY=your-mistral-api-key
OPENAI_MODEL=voxtral-small-2507 python import os
from openai import OpenAI
client = OpenAI(
base_url="https://api.mistral.ai/v1",
api_key=os.environ["YOUR_MISTRAL_API_KEY"],
)
print(client.chat.completions.create(
model="voxtral-small-2507",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.mistral.ai/v1",
apiKey: process.env.YOUR_MISTRAL_API_KEY,
});
const reply = await client.chat.completions.create({
model: "voxtral-small-2507",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://api.mistral.ai/v1 Model ID voxtral-small-2507 Auth our own free-tier key Answered answered all 13 checks we made in the last week Last ok 8 h ago A test from here would need your key, and we will not ask for it. Paste the snippet where your key already lives.
› mistral-code-latest mistral · api.mistral.ai/v1key Tools: we called it and it worked Schema: we called it and it worked JSON: we called it and it worked Vision: we called it and it failed 560 ms 14/14 6 h ago Copy curl curl .env python node
curl curl https://api.mistral.ai/v1/chat/completions \
-H 'Authorization: Bearer YOUR_MISTRAL_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"model":"mistral-code-latest","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://api.mistral.ai/v1
OPENAI_API_KEY=your-mistral-api-key
OPENAI_MODEL=mistral-code-latest python import os
from openai import OpenAI
client = OpenAI(
base_url="https://api.mistral.ai/v1",
api_key=os.environ["YOUR_MISTRAL_API_KEY"],
)
print(client.chat.completions.create(
model="mistral-code-latest",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.mistral.ai/v1",
apiKey: process.env.YOUR_MISTRAL_API_KEY,
});
const reply = await client.chat.completions.create({
model: "mistral-code-latest",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://api.mistral.ai/v1 Model ID mistral-code-latest Auth our own free-tier key Answered answered all 14 checks we made in the last week Last ok 6 h ago A test from here would need your key, and we will not ask for it. Paste the snippet where your key already lives.
› voxtral-small-latest mistral · api.mistral.ai/v1key Tools: we called it and it worked Schema: we called it and it worked JSON: we called it and it worked Vision: we called it and it failed 568 ms 14/14 3 h ago Copy curl curl .env python node
curl curl https://api.mistral.ai/v1/chat/completions \
-H 'Authorization: Bearer YOUR_MISTRAL_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"model":"voxtral-small-latest","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://api.mistral.ai/v1
OPENAI_API_KEY=your-mistral-api-key
OPENAI_MODEL=voxtral-small-latest python import os
from openai import OpenAI
client = OpenAI(
base_url="https://api.mistral.ai/v1",
api_key=os.environ["YOUR_MISTRAL_API_KEY"],
)
print(client.chat.completions.create(
model="voxtral-small-latest",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.mistral.ai/v1",
apiKey: process.env.YOUR_MISTRAL_API_KEY,
});
const reply = await client.chat.completions.create({
model: "voxtral-small-latest",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://api.mistral.ai/v1 Model ID voxtral-small-latest Auth our own free-tier key Answered answered all 14 checks we made in the last week Last ok 3 h ago A test from here would need your key, and we will not ask for it. Paste the snippet where your key already lives.
› ministral-8b-2512 mistral · api.mistral.ai/v1key Tools: we called it and it worked Schema: we called it and it worked JSON: we called it and it worked Vision: we called it and it worked 600 ms 13/13 9 h ago Copy curl curl .env python node
curl curl https://api.mistral.ai/v1/chat/completions \
-H 'Authorization: Bearer YOUR_MISTRAL_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"model":"ministral-8b-2512","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://api.mistral.ai/v1
OPENAI_API_KEY=your-mistral-api-key
OPENAI_MODEL=ministral-8b-2512 python import os
from openai import OpenAI
client = OpenAI(
base_url="https://api.mistral.ai/v1",
api_key=os.environ["YOUR_MISTRAL_API_KEY"],
)
print(client.chat.completions.create(
model="ministral-8b-2512",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.mistral.ai/v1",
apiKey: process.env.YOUR_MISTRAL_API_KEY,
});
const reply = await client.chat.completions.create({
model: "ministral-8b-2512",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://api.mistral.ai/v1 Model ID ministral-8b-2512 Auth our own free-tier key Answered answered all 13 checks we made in the last week Last ok 9 h ago A test from here would need your key, and we will not ask for it. Paste the snippet where your key already lives.
› codestral-latest mistral · api.mistral.ai/v1key Tools: we called it and it worked Schema: we called it and it worked JSON: we called it and it worked Vision: we called it and it failed 717 ms 14/14 6 h ago Copy curl curl .env python node
curl curl https://api.mistral.ai/v1/chat/completions \
-H 'Authorization: Bearer YOUR_MISTRAL_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"model":"codestral-latest","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://api.mistral.ai/v1
OPENAI_API_KEY=your-mistral-api-key
OPENAI_MODEL=codestral-latest python import os
from openai import OpenAI
client = OpenAI(
base_url="https://api.mistral.ai/v1",
api_key=os.environ["YOUR_MISTRAL_API_KEY"],
)
print(client.chat.completions.create(
model="codestral-latest",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.mistral.ai/v1",
apiKey: process.env.YOUR_MISTRAL_API_KEY,
});
const reply = await client.chat.completions.create({
model: "codestral-latest",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://api.mistral.ai/v1 Model ID codestral-latest Auth our own free-tier key Answered answered all 14 checks we made in the last week Last ok 6 h ago A test from here would need your key, and we will not ask for it. Paste the snippet where your key already lives.
› ministral-8b-latest mistral · api.mistral.ai/v1key Tools: we called it and it worked Schema: we called it and it worked JSON: we called it and it worked Vision: we called it and it worked 805 ms 13/13 7 h ago Copy curl curl .env python node
curl curl https://api.mistral.ai/v1/chat/completions \
-H 'Authorization: Bearer YOUR_MISTRAL_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"model":"ministral-8b-latest","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://api.mistral.ai/v1
OPENAI_API_KEY=your-mistral-api-key
OPENAI_MODEL=ministral-8b-latest python import os
from openai import OpenAI
client = OpenAI(
base_url="https://api.mistral.ai/v1",
api_key=os.environ["YOUR_MISTRAL_API_KEY"],
)
print(client.chat.completions.create(
model="ministral-8b-latest",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.mistral.ai/v1",
apiKey: process.env.YOUR_MISTRAL_API_KEY,
});
const reply = await client.chat.completions.create({
model: "ministral-8b-latest",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://api.mistral.ai/v1 Model ID ministral-8b-latest Auth our own free-tier key Answered answered all 13 checks we made in the last week Last ok 7 h ago A test from here would need your key, and we will not ask for it. Paste the snippet where your key already lives.
› ministral-14b-2512 mistral · api.mistral.ai/v1key Tools: we called it and it worked Schema: we called it and it worked JSON: we called it and it worked Vision: we called it and it worked 810 ms 13/13 8 h ago Copy curl curl .env python node
curl curl https://api.mistral.ai/v1/chat/completions \
-H 'Authorization: Bearer YOUR_MISTRAL_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"model":"ministral-14b-2512","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://api.mistral.ai/v1
OPENAI_API_KEY=your-mistral-api-key
OPENAI_MODEL=ministral-14b-2512 python import os
from openai import OpenAI
client = OpenAI(
base_url="https://api.mistral.ai/v1",
api_key=os.environ["YOUR_MISTRAL_API_KEY"],
)
print(client.chat.completions.create(
model="ministral-14b-2512",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.mistral.ai/v1",
apiKey: process.env.YOUR_MISTRAL_API_KEY,
});
const reply = await client.chat.completions.create({
model: "ministral-14b-2512",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://api.mistral.ai/v1 Model ID ministral-14b-2512 Auth our own free-tier key Answered answered all 13 checks we made in the last week Last ok 8 h ago A test from here would need your key, and we will not ask for it. Paste the snippet where your key already lives.
› codestral-2508 mistral · api.mistral.ai/v1key Tools: we called it and it worked Schema: we called it and it worked JSON: we called it and it worked Vision: we called it and it failed 814 ms 14/14 7 h ago Copy curl curl .env python node
curl curl https://api.mistral.ai/v1/chat/completions \
-H 'Authorization: Bearer YOUR_MISTRAL_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"model":"codestral-2508","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://api.mistral.ai/v1
OPENAI_API_KEY=your-mistral-api-key
OPENAI_MODEL=codestral-2508 python import os
from openai import OpenAI
client = OpenAI(
base_url="https://api.mistral.ai/v1",
api_key=os.environ["YOUR_MISTRAL_API_KEY"],
)
print(client.chat.completions.create(
model="codestral-2508",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.mistral.ai/v1",
apiKey: process.env.YOUR_MISTRAL_API_KEY,
});
const reply = await client.chat.completions.create({
model: "codestral-2508",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://api.mistral.ai/v1 Model ID codestral-2508 Auth our own free-tier key Answered answered all 14 checks we made in the last week Last ok 7 h ago A test from here would need your key, and we will not ask for it. Paste the snippet where your key already lives.
› ministral-14b-latest mistral · api.mistral.ai/v1key Tools: we called it and it worked Schema: we called it and it worked JSON: we called it and it worked Vision: we called it and it worked 1026 ms 13/13 9 h ago Copy curl curl .env python node
curl curl https://api.mistral.ai/v1/chat/completions \
-H 'Authorization: Bearer YOUR_MISTRAL_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"model":"ministral-14b-latest","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://api.mistral.ai/v1
OPENAI_API_KEY=your-mistral-api-key
OPENAI_MODEL=ministral-14b-latest python import os
from openai import OpenAI
client = OpenAI(
base_url="https://api.mistral.ai/v1",
api_key=os.environ["YOUR_MISTRAL_API_KEY"],
)
print(client.chat.completions.create(
model="ministral-14b-latest",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.mistral.ai/v1",
apiKey: process.env.YOUR_MISTRAL_API_KEY,
});
const reply = await client.chat.completions.create({
model: "ministral-14b-latest",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://api.mistral.ai/v1 Model ID ministral-14b-latest Auth our own free-tier key Answered answered all 13 checks we made in the last week Last ok 9 h ago A test from here would need your key, and we will not ask for it. Paste the snippet where your key already lives.
› ~z-ai/glm-latest openrouter · openrouter.ai/api/v1key Tools: we called it and it worked Schema: we called it and it worked JSON: we called it and it worked Vision: never probed 1038 ms 5/5 13 h ago Copy curl curl .env python node
curl curl https://openrouter.ai/api/v1/chat/completions \
-H 'Authorization: Bearer YOUR_OPENROUTER_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"model":"~z-ai/glm-latest","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://openrouter.ai/api/v1
OPENAI_API_KEY=your-openrouter-api-key
OPENAI_MODEL=~z-ai/glm-latest python import os
from openai import OpenAI
client = OpenAI(
base_url="https://openrouter.ai/api/v1",
api_key=os.environ["YOUR_OPENROUTER_API_KEY"],
)
print(client.chat.completions.create(
model="~z-ai/glm-latest",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://openrouter.ai/api/v1",
apiKey: process.env.YOUR_OPENROUTER_API_KEY,
});
const reply = await client.chat.completions.create({
model: "~z-ai/glm-latest",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://openrouter.ai/api/v1 Model ID ~z-ai/glm-latest Auth our own free-tier key Answered answered all 5 checks we made in the last week Last ok 13 h ago A test from here would need your key, and we will not ask for it. Paste the snippet where your key already lives.
› liquid/lfm-2.5-2.6b:free openrouter · openrouter.ai/api/v1key Tools: we called it and it worked Schema: we called it and it worked JSON: we called it and it worked Vision: never probed 1273 ms 5/5 21 h ago Copy curl curl .env python node
curl curl https://openrouter.ai/api/v1/chat/completions \
-H 'Authorization: Bearer YOUR_OPENROUTER_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"model":"liquid/lfm-2.5-2.6b:free","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://openrouter.ai/api/v1
OPENAI_API_KEY=your-openrouter-api-key
OPENAI_MODEL=liquid/lfm-2.5-2.6b:free python import os
from openai import OpenAI
client = OpenAI(
base_url="https://openrouter.ai/api/v1",
api_key=os.environ["YOUR_OPENROUTER_API_KEY"],
)
print(client.chat.completions.create(
model="liquid/lfm-2.5-2.6b:free",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://openrouter.ai/api/v1",
apiKey: process.env.YOUR_OPENROUTER_API_KEY,
});
const reply = await client.chat.completions.create({
model: "liquid/lfm-2.5-2.6b:free",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://openrouter.ai/api/v1 Model ID liquid/lfm-2.5-2.6b:free Auth our own free-tier key Answered answered all 5 checks we made in the last week Last ok 21 h ago A test from here would need your key, and we will not ask for it. Paste the snippet where your key already lives.
› dots-studio/dots-3-note-preview:free openrouter · openrouter.ai/api/v1key Tools: we called it and it worked Schema: we called it and it worked JSON: we called it and it worked Vision: we called it and it worked 1564 ms 5/5 28 h ago Copy curl curl .env python node
curl curl https://openrouter.ai/api/v1/chat/completions \
-H 'Authorization: Bearer YOUR_OPENROUTER_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"model":"dots-studio/dots-3-note-preview:free","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://openrouter.ai/api/v1
OPENAI_API_KEY=your-openrouter-api-key
OPENAI_MODEL=dots-studio/dots-3-note-preview:free python import os
from openai import OpenAI
client = OpenAI(
base_url="https://openrouter.ai/api/v1",
api_key=os.environ["YOUR_OPENROUTER_API_KEY"],
)
print(client.chat.completions.create(
model="dots-studio/dots-3-note-preview:free",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://openrouter.ai/api/v1",
apiKey: process.env.YOUR_OPENROUTER_API_KEY,
});
const reply = await client.chat.completions.create({
model: "dots-studio/dots-3-note-preview:free",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://openrouter.ai/api/v1 Model ID dots-studio/dots-3-note-preview:free Auth our own free-tier key Answered answered all 5 checks we made in the last week Last ok 28 h ago A test from here would need your key, and we will not ask for it. Paste the snippet where your key already lives.
› deepseek/deepseek-v4-flash-0731:free openrouter · openrouter.ai/api/v1key Tools: we called it and it worked Schema: we called it and it worked JSON: we called it and it worked Vision: never probed 2094 ms 2/2 8 h ago Copy curl curl .env python node
curl curl https://openrouter.ai/api/v1/chat/completions \
-H 'Authorization: Bearer YOUR_OPENROUTER_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"model":"deepseek/deepseek-v4-flash-0731:free","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://openrouter.ai/api/v1
OPENAI_API_KEY=your-openrouter-api-key
OPENAI_MODEL=deepseek/deepseek-v4-flash-0731:free python import os
from openai import OpenAI
client = OpenAI(
base_url="https://openrouter.ai/api/v1",
api_key=os.environ["YOUR_OPENROUTER_API_KEY"],
)
print(client.chat.completions.create(
model="deepseek/deepseek-v4-flash-0731:free",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://openrouter.ai/api/v1",
apiKey: process.env.YOUR_OPENROUTER_API_KEY,
});
const reply = await client.chat.completions.create({
model: "deepseek/deepseek-v4-flash-0731:free",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://openrouter.ai/api/v1 Model ID deepseek/deepseek-v4-flash-0731:free Auth our own free-tier key Answered answered all 2 checks we made in the last week Last ok 8 h ago A test from here would need your key, and we will not ask for it. Paste the snippet where your key already lives.
› mistral-code-fim-latest mistral · api.mistral.ai/v1key Tools: we called it and it worked Schema: we called it and it worked JSON: we called it and it worked Vision: we called it and it failed 1113 ms 13/14 5 h ago Copy curl curl .env python node
curl curl https://api.mistral.ai/v1/chat/completions \
-H 'Authorization: Bearer YOUR_MISTRAL_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"model":"mistral-code-fim-latest","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://api.mistral.ai/v1
OPENAI_API_KEY=your-mistral-api-key
OPENAI_MODEL=mistral-code-fim-latest python import os
from openai import OpenAI
client = OpenAI(
base_url="https://api.mistral.ai/v1",
api_key=os.environ["YOUR_MISTRAL_API_KEY"],
)
print(client.chat.completions.create(
model="mistral-code-fim-latest",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.mistral.ai/v1",
apiKey: process.env.YOUR_MISTRAL_API_KEY,
});
const reply = await client.chat.completions.create({
model: "mistral-code-fim-latest",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://api.mistral.ai/v1 Model ID mistral-code-fim-latest Auth our own free-tier key Answered answered 13 of the 14 checks we made in the last week Last ok 5 h ago A test from here would need your key, and we will not ask for it. Paste the snippet where your key already lives.
› nvidia/nemotron-3-super-120b-a12b:free openrouter · openrouter.ai/api/v1key Tools: we called it and it worked Schema: we called it and it worked JSON: we called it and it worked Vision: never probed 511 ms 4/5 27 h ago Copy curl curl .env python node
curl curl https://openrouter.ai/api/v1/chat/completions \
-H 'Authorization: Bearer YOUR_OPENROUTER_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"model":"nvidia/nemotron-3-super-120b-a12b:free","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://openrouter.ai/api/v1
OPENAI_API_KEY=your-openrouter-api-key
OPENAI_MODEL=nvidia/nemotron-3-super-120b-a12b:free python import os
from openai import OpenAI
client = OpenAI(
base_url="https://openrouter.ai/api/v1",
api_key=os.environ["YOUR_OPENROUTER_API_KEY"],
)
print(client.chat.completions.create(
model="nvidia/nemotron-3-super-120b-a12b:free",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://openrouter.ai/api/v1",
apiKey: process.env.YOUR_OPENROUTER_API_KEY,
});
const reply = await client.chat.completions.create({
model: "nvidia/nemotron-3-super-120b-a12b:free",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://openrouter.ai/api/v1 Model ID nvidia/nemotron-3-super-120b-a12b:free Auth our own free-tier key Answered answered 4 of the 5 checks we made in the last week Last ok 27 h ago A test from here would need your key, and we will not ask for it. Paste the snippet where your key already lives.
› nex-agi/nex-n2.5-pro:free openrouter · openrouter.ai/api/v1key Tools: we called it and it worked Schema: we called it and it worked JSON: we called it and it worked Vision: we called it and it worked 1158 ms 4/5 2 h ago Copy curl curl .env python node
curl curl https://openrouter.ai/api/v1/chat/completions \
-H 'Authorization: Bearer YOUR_OPENROUTER_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"model":"nex-agi/nex-n2.5-pro:free","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://openrouter.ai/api/v1
OPENAI_API_KEY=your-openrouter-api-key
OPENAI_MODEL=nex-agi/nex-n2.5-pro:free python import os
from openai import OpenAI
client = OpenAI(
base_url="https://openrouter.ai/api/v1",
api_key=os.environ["YOUR_OPENROUTER_API_KEY"],
)
print(client.chat.completions.create(
model="nex-agi/nex-n2.5-pro:free",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://openrouter.ai/api/v1",
apiKey: process.env.YOUR_OPENROUTER_API_KEY,
});
const reply = await client.chat.completions.create({
model: "nex-agi/nex-n2.5-pro:free",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://openrouter.ai/api/v1 Model ID nex-agi/nex-n2.5-pro:free Auth our own free-tier key Answered answered 4 of the 5 checks we made in the last week Last ok 2 h ago A test from here would need your key, and we will not ask for it. Paste the snippet where your key already lives.
› nvidia/nemotron-3-nano-omni-30b-a3b-reasoning:free openrouter · openrouter.ai/api/v1key Tools: we called it and it worked Schema: we called it and it worked JSON: we called it and it worked Vision: we called it and it worked 1139 ms 3/5 40 h ago Copy curl curl .env python node
curl curl https://openrouter.ai/api/v1/chat/completions \
-H 'Authorization: Bearer YOUR_OPENROUTER_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"model":"nvidia/nemotron-3-nano-omni-30b-a3b-reasoning:free","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://openrouter.ai/api/v1
OPENAI_API_KEY=your-openrouter-api-key
OPENAI_MODEL=nvidia/nemotron-3-nano-omni-30b-a3b-reasoning:free python import os
from openai import OpenAI
client = OpenAI(
base_url="https://openrouter.ai/api/v1",
api_key=os.environ["YOUR_OPENROUTER_API_KEY"],
)
print(client.chat.completions.create(
model="nvidia/nemotron-3-nano-omni-30b-a3b-reasoning:free",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://openrouter.ai/api/v1",
apiKey: process.env.YOUR_OPENROUTER_API_KEY,
});
const reply = await client.chat.completions.create({
model: "nvidia/nemotron-3-nano-omni-30b-a3b-reasoning:free",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://openrouter.ai/api/v1 Model ID nvidia/nemotron-3-nano-omni-30b-a3b-reasoning:free Auth our own free-tier key Answered answered 3 of the 5 checks we made in the last week Last ok 40 h ago A test from here would need your key, and we will not ask for it. Paste the snippet where your key already lives.
› nex-agi/nex-n2.5-mini:free openrouter · openrouter.ai/api/v1key Tools: the provider claims it, our call never proved it Schema: the provider claims it, our call never proved it JSON: we called it and it worked Vision: never probed 1838 ms 3/5 3 h ago Copy curl curl .env python node
curl curl https://openrouter.ai/api/v1/chat/completions \
-H 'Authorization: Bearer YOUR_OPENROUTER_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"model":"nex-agi/nex-n2.5-mini:free","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://openrouter.ai/api/v1
OPENAI_API_KEY=your-openrouter-api-key
OPENAI_MODEL=nex-agi/nex-n2.5-mini:free python import os
from openai import OpenAI
client = OpenAI(
base_url="https://openrouter.ai/api/v1",
api_key=os.environ["YOUR_OPENROUTER_API_KEY"],
)
print(client.chat.completions.create(
model="nex-agi/nex-n2.5-mini:free",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://openrouter.ai/api/v1",
apiKey: process.env.YOUR_OPENROUTER_API_KEY,
});
const reply = await client.chat.completions.create({
model: "nex-agi/nex-n2.5-mini:free",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://openrouter.ai/api/v1 Model ID nex-agi/nex-n2.5-mini:free Auth our own free-tier key Answered answered 3 of the 5 checks we made in the last week Last ok 3 h ago A test from here would need your key, and we will not ask for it. Paste the snippet where your key already lives.
› nvidia/nemotron-3-ultra-550b-a55b:free openrouter · openrouter.ai/api/v1key Tools: we called it and it worked Schema: we called it and it worked JSON: we called it and it worked Vision: never probed 2627 ms 3/5 44 h ago Copy curl curl .env python node
curl curl https://openrouter.ai/api/v1/chat/completions \
-H 'Authorization: Bearer YOUR_OPENROUTER_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"model":"nvidia/nemotron-3-ultra-550b-a55b:free","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://openrouter.ai/api/v1
OPENAI_API_KEY=your-openrouter-api-key
OPENAI_MODEL=nvidia/nemotron-3-ultra-550b-a55b:free python import os
from openai import OpenAI
client = OpenAI(
base_url="https://openrouter.ai/api/v1",
api_key=os.environ["YOUR_OPENROUTER_API_KEY"],
)
print(client.chat.completions.create(
model="nvidia/nemotron-3-ultra-550b-a55b:free",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://openrouter.ai/api/v1",
apiKey: process.env.YOUR_OPENROUTER_API_KEY,
});
const reply = await client.chat.completions.create({
model: "nvidia/nemotron-3-ultra-550b-a55b:free",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://openrouter.ai/api/v1 Model ID nvidia/nemotron-3-ultra-550b-a55b:free Auth our own free-tier key Answered answered 3 of the 5 checks we made in the last week Last ok 44 h ago A test from here would need your key, and we will not ask for it. Paste the snippet where your key already lives.
› nvidia/nemotron-3.5-lightning:free openrouter · openrouter.ai/api/v1key Tools: we called it and it worked Schema: we called it and it worked JSON: we called it and it worked Vision: never probed 7468 ms 3/5 39 h ago Copy curl curl .env python node
curl curl https://openrouter.ai/api/v1/chat/completions \
-H 'Authorization: Bearer YOUR_OPENROUTER_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"model":"nvidia/nemotron-3.5-lightning:free","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://openrouter.ai/api/v1
OPENAI_API_KEY=your-openrouter-api-key
OPENAI_MODEL=nvidia/nemotron-3.5-lightning:free python import os
from openai import OpenAI
client = OpenAI(
base_url="https://openrouter.ai/api/v1",
api_key=os.environ["YOUR_OPENROUTER_API_KEY"],
)
print(client.chat.completions.create(
model="nvidia/nemotron-3.5-lightning:free",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://openrouter.ai/api/v1",
apiKey: process.env.YOUR_OPENROUTER_API_KEY,
});
const reply = await client.chat.completions.create({
model: "nvidia/nemotron-3.5-lightning:free",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://openrouter.ai/api/v1 Model ID nvidia/nemotron-3.5-lightning:free Auth our own free-tier key Answered answered 3 of the 5 checks we made in the last week Last ok 39 h ago A test from here would need your key, and we will not ask for it. Paste the snippet where your key already lives.
› google/gemma-4-31b-it:free openrouter · openrouter.ai/api/v1key Tools: the provider claims it, our call never proved it Schema: never probed JSON: we called it and it worked Vision: never probed 3227 ms 1/5 36 h ago Copy curl curl .env python node
curl curl https://openrouter.ai/api/v1/chat/completions \
-H 'Authorization: Bearer YOUR_OPENROUTER_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"model":"google/gemma-4-31b-it:free","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://openrouter.ai/api/v1
OPENAI_API_KEY=your-openrouter-api-key
OPENAI_MODEL=google/gemma-4-31b-it:free python import os
from openai import OpenAI
client = OpenAI(
base_url="https://openrouter.ai/api/v1",
api_key=os.environ["YOUR_OPENROUTER_API_KEY"],
)
print(client.chat.completions.create(
model="google/gemma-4-31b-it:free",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://openrouter.ai/api/v1",
apiKey: process.env.YOUR_OPENROUTER_API_KEY,
});
const reply = await client.chat.completions.create({
model: "google/gemma-4-31b-it:free",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://openrouter.ai/api/v1 Model ID google/gemma-4-31b-it:free Auth our own free-tier key Answered answered 1 of the 5 checks we made in the last week Last ok 36 h ago A test from here would need your key, and we will not ask for it. Paste the snippet where your key already lives.
› llama-3.3-70b-versatile groq · api.groq.com/openai/v1key Tools: we called it and it worked Schema: we called it and it failed JSON: we called it and it worked Vision: we called it and it failed 210 ms 0/42 33 days ago Copy curl curl .env python node
curl curl https://api.groq.com/openai/v1/chat/completions \
-H 'Authorization: Bearer YOUR_GROQ_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"model":"llama-3.3-70b-versatile","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://api.groq.com/openai/v1
OPENAI_API_KEY=your-groq-api-key
OPENAI_MODEL=llama-3.3-70b-versatile python import os
from openai import OpenAI
client = OpenAI(
base_url="https://api.groq.com/openai/v1",
api_key=os.environ["YOUR_GROQ_API_KEY"],
)
print(client.chat.completions.create(
model="llama-3.3-70b-versatile",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.groq.com/openai/v1",
apiKey: process.env.YOUR_GROQ_API_KEY,
});
const reply = await client.chat.completions.create({
model: "llama-3.3-70b-versatile",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://api.groq.com/openai/v1 Model ID llama-3.3-70b-versatile Auth our own free-tier key Answered answered 0 of the 42 checks we made in the last week Last ok 33 days ago A test from here would need your key, and we will not ask for it. Paste the snippet where your key already lives.
› llama-3.1-8b-instant groq · api.groq.com/openai/v1key Tools: we called it and it worked Schema: we called it and it failed JSON: we called it and it worked Vision: we called it and it failed 256 ms 0/42 33 days ago Copy curl curl .env python node
curl curl https://api.groq.com/openai/v1/chat/completions \
-H 'Authorization: Bearer YOUR_GROQ_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"model":"llama-3.1-8b-instant","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://api.groq.com/openai/v1
OPENAI_API_KEY=your-groq-api-key
OPENAI_MODEL=llama-3.1-8b-instant python import os
from openai import OpenAI
client = OpenAI(
base_url="https://api.groq.com/openai/v1",
api_key=os.environ["YOUR_GROQ_API_KEY"],
)
print(client.chat.completions.create(
model="llama-3.1-8b-instant",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.groq.com/openai/v1",
apiKey: process.env.YOUR_GROQ_API_KEY,
});
const reply = await client.chat.completions.create({
model: "llama-3.1-8b-instant",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://api.groq.com/openai/v1 Model ID llama-3.1-8b-instant Auth our own free-tier key Answered answered 0 of the 42 checks we made in the last week Last ok 33 days ago A test from here would need your key, and we will not ask for it. Paste the snippet where your key already lives.
› mistral-medium mistral · api.mistral.ai/v1key Tools: we called it and it worked Schema: we called it and it worked JSON: we called it and it worked Vision: we called it and it worked 549 ms 0/13 16 days ago Copy curl curl .env python node
curl curl https://api.mistral.ai/v1/chat/completions \
-H 'Authorization: Bearer YOUR_MISTRAL_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"model":"mistral-medium","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://api.mistral.ai/v1
OPENAI_API_KEY=your-mistral-api-key
OPENAI_MODEL=mistral-medium python import os
from openai import OpenAI
client = OpenAI(
base_url="https://api.mistral.ai/v1",
api_key=os.environ["YOUR_MISTRAL_API_KEY"],
)
print(client.chat.completions.create(
model="mistral-medium",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.mistral.ai/v1",
apiKey: process.env.YOUR_MISTRAL_API_KEY,
});
const reply = await client.chat.completions.create({
model: "mistral-medium",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://api.mistral.ai/v1 Model ID mistral-medium Auth our own free-tier key Answered answered 0 of the 13 checks we made in the last week Last ok 16 days ago A test from here would need your key, and we will not ask for it. Paste the snippet where your key already lives.
› devstral-latest mistral · api.mistral.ai/v1key Tools: we called it and it worked Schema: we called it and it worked JSON: we called it and it worked Vision: we called it and it failed 553 ms 0/14 16 days ago Copy curl curl .env python node
curl curl https://api.mistral.ai/v1/chat/completions \
-H 'Authorization: Bearer YOUR_MISTRAL_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"model":"devstral-latest","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://api.mistral.ai/v1
OPENAI_API_KEY=your-mistral-api-key
OPENAI_MODEL=devstral-latest python import os
from openai import OpenAI
client = OpenAI(
base_url="https://api.mistral.ai/v1",
api_key=os.environ["YOUR_MISTRAL_API_KEY"],
)
print(client.chat.completions.create(
model="devstral-latest",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.mistral.ai/v1",
apiKey: process.env.YOUR_MISTRAL_API_KEY,
});
const reply = await client.chat.completions.create({
model: "devstral-latest",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://api.mistral.ai/v1 Model ID devstral-latest Auth our own free-tier key Answered answered 0 of the 14 checks we made in the last week Last ok 16 days ago A test from here would need your key, and we will not ask for it. Paste the snippet where your key already lives.
› mistral-medium-latest mistral · api.mistral.ai/v1key Tools: we called it and it worked Schema: we called it and it worked JSON: we called it and it worked Vision: we called it and it worked 555 ms 0/14 16 days ago Copy curl curl .env python node
curl curl https://api.mistral.ai/v1/chat/completions \
-H 'Authorization: Bearer YOUR_MISTRAL_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"model":"mistral-medium-latest","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://api.mistral.ai/v1
OPENAI_API_KEY=your-mistral-api-key
OPENAI_MODEL=mistral-medium-latest python import os
from openai import OpenAI
client = OpenAI(
base_url="https://api.mistral.ai/v1",
api_key=os.environ["YOUR_MISTRAL_API_KEY"],
)
print(client.chat.completions.create(
model="mistral-medium-latest",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.mistral.ai/v1",
apiKey: process.env.YOUR_MISTRAL_API_KEY,
});
const reply = await client.chat.completions.create({
model: "mistral-medium-latest",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://api.mistral.ai/v1 Model ID mistral-medium-latest Auth our own free-tier key Answered answered 0 of the 14 checks we made in the last week Last ok 16 days ago A test from here would need your key, and we will not ask for it. Paste the snippet where your key already lives.
› magistral-medium-latest mistral · api.mistral.ai/v1key Tools: we called it and it worked Schema: we called it and it worked JSON: we called it and it worked Vision: we called it and it worked 564 ms 0/13 16 days ago Copy curl curl .env python node
curl curl https://api.mistral.ai/v1/chat/completions \
-H 'Authorization: Bearer YOUR_MISTRAL_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"model":"magistral-medium-latest","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://api.mistral.ai/v1
OPENAI_API_KEY=your-mistral-api-key
OPENAI_MODEL=magistral-medium-latest python import os
from openai import OpenAI
client = OpenAI(
base_url="https://api.mistral.ai/v1",
api_key=os.environ["YOUR_MISTRAL_API_KEY"],
)
print(client.chat.completions.create(
model="magistral-medium-latest",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.mistral.ai/v1",
apiKey: process.env.YOUR_MISTRAL_API_KEY,
});
const reply = await client.chat.completions.create({
model: "magistral-medium-latest",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://api.mistral.ai/v1 Model ID magistral-medium-latest Auth our own free-tier key Answered answered 0 of the 13 checks we made in the last week Last ok 16 days ago A test from here would need your key, and we will not ask for it. Paste the snippet where your key already lives.
› mistral-medium-2604 mistral · api.mistral.ai/v1key Tools: we called it and it worked Schema: we called it and it worked JSON: we called it and it worked Vision: we called it and it worked 566 ms 0/13 16 days ago Copy curl curl .env python node
curl curl https://api.mistral.ai/v1/chat/completions \
-H 'Authorization: Bearer YOUR_MISTRAL_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"model":"mistral-medium-2604","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://api.mistral.ai/v1
OPENAI_API_KEY=your-mistral-api-key
OPENAI_MODEL=mistral-medium-2604 python import os
from openai import OpenAI
client = OpenAI(
base_url="https://api.mistral.ai/v1",
api_key=os.environ["YOUR_MISTRAL_API_KEY"],
)
print(client.chat.completions.create(
model="mistral-medium-2604",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.mistral.ai/v1",
apiKey: process.env.YOUR_MISTRAL_API_KEY,
});
const reply = await client.chat.completions.create({
model: "mistral-medium-2604",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://api.mistral.ai/v1 Model ID mistral-medium-2604 Auth our own free-tier key Answered answered 0 of the 13 checks we made in the last week Last ok 16 days ago A test from here would need your key, and we will not ask for it. Paste the snippet where your key already lives.
› mistral-medium-2508 mistral · api.mistral.ai/v1key Tools: we called it and it worked Schema: we called it and it worked JSON: we called it and it worked Vision: we called it and it worked 577 ms 0/14 15 days ago Copy curl curl .env python node
curl curl https://api.mistral.ai/v1/chat/completions \
-H 'Authorization: Bearer YOUR_MISTRAL_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"model":"mistral-medium-2508","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://api.mistral.ai/v1
OPENAI_API_KEY=your-mistral-api-key
OPENAI_MODEL=mistral-medium-2508 python import os
from openai import OpenAI
client = OpenAI(
base_url="https://api.mistral.ai/v1",
api_key=os.environ["YOUR_MISTRAL_API_KEY"],
)
print(client.chat.completions.create(
model="mistral-medium-2508",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.mistral.ai/v1",
apiKey: process.env.YOUR_MISTRAL_API_KEY,
});
const reply = await client.chat.completions.create({
model: "mistral-medium-2508",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://api.mistral.ai/v1 Model ID mistral-medium-2508 Auth our own free-tier key Answered answered 0 of the 14 checks we made in the last week Last ok 15 days ago A test from here would need your key, and we will not ask for it. Paste the snippet where your key already lives.
› devstral-medium-latest mistral · api.mistral.ai/v1key Tools: we called it and it worked Schema: we called it and it worked JSON: we called it and it worked Vision: we called it and it failed 601 ms 0/14 16 days ago Copy curl curl .env python node
curl curl https://api.mistral.ai/v1/chat/completions \
-H 'Authorization: Bearer YOUR_MISTRAL_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"model":"devstral-medium-latest","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://api.mistral.ai/v1
OPENAI_API_KEY=your-mistral-api-key
OPENAI_MODEL=devstral-medium-latest python import os
from openai import OpenAI
client = OpenAI(
base_url="https://api.mistral.ai/v1",
api_key=os.environ["YOUR_MISTRAL_API_KEY"],
)
print(client.chat.completions.create(
model="devstral-medium-latest",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.mistral.ai/v1",
apiKey: process.env.YOUR_MISTRAL_API_KEY,
});
const reply = await client.chat.completions.create({
model: "devstral-medium-latest",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://api.mistral.ai/v1 Model ID devstral-medium-latest Auth our own free-tier key Answered answered 0 of the 14 checks we made in the last week Last ok 16 days ago A test from here would need your key, and we will not ask for it. Paste the snippet where your key already lives.
› devstral-2512 mistral · api.mistral.ai/v1key Tools: we called it and it worked Schema: we called it and it worked JSON: we called it and it worked Vision: we called it and it failed 604 ms 0/14 15 days ago Copy curl curl .env python node
curl curl https://api.mistral.ai/v1/chat/completions \
-H 'Authorization: Bearer YOUR_MISTRAL_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"model":"devstral-2512","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://api.mistral.ai/v1
OPENAI_API_KEY=your-mistral-api-key
OPENAI_MODEL=devstral-2512 python import os
from openai import OpenAI
client = OpenAI(
base_url="https://api.mistral.ai/v1",
api_key=os.environ["YOUR_MISTRAL_API_KEY"],
)
print(client.chat.completions.create(
model="devstral-2512",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.mistral.ai/v1",
apiKey: process.env.YOUR_MISTRAL_API_KEY,
});
const reply = await client.chat.completions.create({
model: "devstral-2512",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://api.mistral.ai/v1 Model ID devstral-2512 Auth our own free-tier key Answered answered 0 of the 14 checks we made in the last week Last ok 15 days ago A test from here would need your key, and we will not ask for it. Paste the snippet where your key already lives.
› mistral-medium-3.5 mistral · api.mistral.ai/v1key Tools: we called it and it worked Schema: we called it and it worked JSON: we called it and it worked Vision: we called it and it worked 611 ms 0/14 16 days ago Copy curl curl .env python node
curl curl https://api.mistral.ai/v1/chat/completions \
-H 'Authorization: Bearer YOUR_MISTRAL_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"model":"mistral-medium-3.5","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://api.mistral.ai/v1
OPENAI_API_KEY=your-mistral-api-key
OPENAI_MODEL=mistral-medium-3.5 python import os
from openai import OpenAI
client = OpenAI(
base_url="https://api.mistral.ai/v1",
api_key=os.environ["YOUR_MISTRAL_API_KEY"],
)
print(client.chat.completions.create(
model="mistral-medium-3.5",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.mistral.ai/v1",
apiKey: process.env.YOUR_MISTRAL_API_KEY,
});
const reply = await client.chat.completions.create({
model: "mistral-medium-3.5",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://api.mistral.ai/v1 Model ID mistral-medium-3.5 Auth our own free-tier key Answered answered 0 of the 14 checks we made in the last week Last ok 16 days ago A test from here would need your key, and we will not ask for it. Paste the snippet where your key already lives.
› mistral-medium-3-5 mistral · api.mistral.ai/v1key Tools: we called it and it worked Schema: we called it and it worked JSON: we called it and it worked Vision: we called it and it worked 625 ms 0/14 16 days ago Copy curl curl .env python node
curl curl https://api.mistral.ai/v1/chat/completions \
-H 'Authorization: Bearer YOUR_MISTRAL_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"model":"mistral-medium-3-5","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://api.mistral.ai/v1
OPENAI_API_KEY=your-mistral-api-key
OPENAI_MODEL=mistral-medium-3-5 python import os
from openai import OpenAI
client = OpenAI(
base_url="https://api.mistral.ai/v1",
api_key=os.environ["YOUR_MISTRAL_API_KEY"],
)
print(client.chat.completions.create(
model="mistral-medium-3-5",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.mistral.ai/v1",
apiKey: process.env.YOUR_MISTRAL_API_KEY,
});
const reply = await client.chat.completions.create({
model: "mistral-medium-3-5",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://api.mistral.ai/v1 Model ID mistral-medium-3-5 Auth our own free-tier key Answered answered 0 of the 14 checks we made in the last week Last ok 16 days ago A test from here would need your key, and we will not ask for it. Paste the snippet where your key already lives.
› mistral-vibe-cli-latest mistral · api.mistral.ai/v1key Tools: we called it and it worked Schema: we called it and it worked JSON: we called it and it worked Vision: we called it and it worked 629 ms 0/13 16 days ago Copy curl curl .env python node
curl curl https://api.mistral.ai/v1/chat/completions \
-H 'Authorization: Bearer YOUR_MISTRAL_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"model":"mistral-vibe-cli-latest","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://api.mistral.ai/v1
OPENAI_API_KEY=your-mistral-api-key
OPENAI_MODEL=mistral-vibe-cli-latest python import os
from openai import OpenAI
client = OpenAI(
base_url="https://api.mistral.ai/v1",
api_key=os.environ["YOUR_MISTRAL_API_KEY"],
)
print(client.chat.completions.create(
model="mistral-vibe-cli-latest",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.mistral.ai/v1",
apiKey: process.env.YOUR_MISTRAL_API_KEY,
});
const reply = await client.chat.completions.create({
model: "mistral-vibe-cli-latest",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://api.mistral.ai/v1 Model ID mistral-vibe-cli-latest Auth our own free-tier key Answered answered 0 of the 13 checks we made in the last week Last ok 16 days ago A test from here would need your key, and we will not ask for it. Paste the snippet where your key already lives.
› mistral-small-2603 mistral · api.mistral.ai/v1key Tools: we called it and it worked Schema: we called it and it worked JSON: we called it and it worked Vision: the provider claims it, our call failed 630 ms 0/13 15 days ago Copy curl curl .env python node
curl curl https://api.mistral.ai/v1/chat/completions \
-H 'Authorization: Bearer YOUR_MISTRAL_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"model":"mistral-small-2603","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://api.mistral.ai/v1
OPENAI_API_KEY=your-mistral-api-key
OPENAI_MODEL=mistral-small-2603 python import os
from openai import OpenAI
client = OpenAI(
base_url="https://api.mistral.ai/v1",
api_key=os.environ["YOUR_MISTRAL_API_KEY"],
)
print(client.chat.completions.create(
model="mistral-small-2603",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.mistral.ai/v1",
apiKey: process.env.YOUR_MISTRAL_API_KEY,
});
const reply = await client.chat.completions.create({
model: "mistral-small-2603",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://api.mistral.ai/v1 Model ID mistral-small-2603 Auth our own free-tier key Answered answered 0 of the 13 checks we made in the last week Last ok 15 days ago A test from here would need your key, and we will not ask for it. Paste the snippet where your key already lives.
› nvidia/nemotron-3-nano-30b-a3b:free openrouter · openrouter.ai/api/v1key Tools: we called it and it worked Schema: we called it and it worked JSON: we called it and it worked Vision: never probed 638 ms 0/5 26 days ago Copy curl curl .env python node
curl curl https://openrouter.ai/api/v1/chat/completions \
-H 'Authorization: Bearer YOUR_OPENROUTER_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"model":"nvidia/nemotron-3-nano-30b-a3b:free","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://openrouter.ai/api/v1
OPENAI_API_KEY=your-openrouter-api-key
OPENAI_MODEL=nvidia/nemotron-3-nano-30b-a3b:free python import os
from openai import OpenAI
client = OpenAI(
base_url="https://openrouter.ai/api/v1",
api_key=os.environ["YOUR_OPENROUTER_API_KEY"],
)
print(client.chat.completions.create(
model="nvidia/nemotron-3-nano-30b-a3b:free",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://openrouter.ai/api/v1",
apiKey: process.env.YOUR_OPENROUTER_API_KEY,
});
const reply = await client.chat.completions.create({
model: "nvidia/nemotron-3-nano-30b-a3b:free",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://openrouter.ai/api/v1 Model ID nvidia/nemotron-3-nano-30b-a3b:free Auth our own free-tier key Answered answered 0 of the 5 checks we made in the last week Last ok 26 days ago A test from here would need your key, and we will not ask for it. Paste the snippet where your key already lives.
› mistral-small-latest mistral · api.mistral.ai/v1key Tools: we called it and it worked Schema: we called it and it worked JSON: we called it and it worked Vision: the provider claims it, our call failed 665 ms 0/14 16 days ago Copy curl curl .env python node
curl curl https://api.mistral.ai/v1/chat/completions \
-H 'Authorization: Bearer YOUR_MISTRAL_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"model":"mistral-small-latest","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://api.mistral.ai/v1
OPENAI_API_KEY=your-mistral-api-key
OPENAI_MODEL=mistral-small-latest python import os
from openai import OpenAI
client = OpenAI(
base_url="https://api.mistral.ai/v1",
api_key=os.environ["YOUR_MISTRAL_API_KEY"],
)
print(client.chat.completions.create(
model="mistral-small-latest",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.mistral.ai/v1",
apiKey: process.env.YOUR_MISTRAL_API_KEY,
});
const reply = await client.chat.completions.create({
model: "mistral-small-latest",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://api.mistral.ai/v1 Model ID mistral-small-latest Auth our own free-tier key Answered answered 0 of the 14 checks we made in the last week Last ok 16 days ago A test from here would need your key, and we will not ask for it. Paste the snippet where your key already lives.
› glm-5-2 mistral · api.mistral.ai/v1key Tools: we called it and it worked Schema: we called it and it worked JSON: we called it and it worked Vision: we called it and it failed 688 ms 0/14 37 days ago Copy curl curl .env python node
curl curl https://api.mistral.ai/v1/chat/completions \
-H 'Authorization: Bearer YOUR_MISTRAL_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"model":"glm-5-2","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://api.mistral.ai/v1
OPENAI_API_KEY=your-mistral-api-key
OPENAI_MODEL=glm-5-2 python import os
from openai import OpenAI
client = OpenAI(
base_url="https://api.mistral.ai/v1",
api_key=os.environ["YOUR_MISTRAL_API_KEY"],
)
print(client.chat.completions.create(
model="glm-5-2",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.mistral.ai/v1",
apiKey: process.env.YOUR_MISTRAL_API_KEY,
});
const reply = await client.chat.completions.create({
model: "glm-5-2",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://api.mistral.ai/v1 Model ID glm-5-2 Auth our own free-tier key Answered answered 0 of the 14 checks we made in the last week Last ok 37 days ago A test from here would need your key, and we will not ask for it. Paste the snippet where your key already lives.
› mistral-vibe-cli-fast mistral · api.mistral.ai/v1key Tools: we called it and it worked Schema: we called it and it worked JSON: we called it and it worked Vision: the provider claims it, our call failed 695 ms 0/14 16 days ago Copy curl curl .env python node
curl curl https://api.mistral.ai/v1/chat/completions \
-H 'Authorization: Bearer YOUR_MISTRAL_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"model":"mistral-vibe-cli-fast","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://api.mistral.ai/v1
OPENAI_API_KEY=your-mistral-api-key
OPENAI_MODEL=mistral-vibe-cli-fast python import os
from openai import OpenAI
client = OpenAI(
base_url="https://api.mistral.ai/v1",
api_key=os.environ["YOUR_MISTRAL_API_KEY"],
)
print(client.chat.completions.create(
model="mistral-vibe-cli-fast",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.mistral.ai/v1",
apiKey: process.env.YOUR_MISTRAL_API_KEY,
});
const reply = await client.chat.completions.create({
model: "mistral-vibe-cli-fast",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://api.mistral.ai/v1 Model ID mistral-vibe-cli-fast Auth our own free-tier key Answered answered 0 of the 14 checks we made in the last week Last ok 16 days ago A test from here would need your key, and we will not ask for it. Paste the snippet where your key already lives.
› magistral-small-latest mistral · api.mistral.ai/v1key Tools: we called it and it worked Schema: we called it and it worked JSON: we called it and it worked Vision: the provider claims it, our call failed 703 ms 0/14 15 days ago Copy curl curl .env python node
curl curl https://api.mistral.ai/v1/chat/completions \
-H 'Authorization: Bearer YOUR_MISTRAL_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"model":"magistral-small-latest","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://api.mistral.ai/v1
OPENAI_API_KEY=your-mistral-api-key
OPENAI_MODEL=magistral-small-latest python import os
from openai import OpenAI
client = OpenAI(
base_url="https://api.mistral.ai/v1",
api_key=os.environ["YOUR_MISTRAL_API_KEY"],
)
print(client.chat.completions.create(
model="magistral-small-latest",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.mistral.ai/v1",
apiKey: process.env.YOUR_MISTRAL_API_KEY,
});
const reply = await client.chat.completions.create({
model: "magistral-small-latest",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://api.mistral.ai/v1 Model ID magistral-small-latest Auth our own free-tier key Answered answered 0 of the 14 checks we made in the last week Last ok 15 days ago A test from here would need your key, and we will not ask for it. Paste the snippet where your key already lives.
› mistral-vibe-cli-with-tools mistral · api.mistral.ai/v1key Tools: we called it and it worked Schema: we called it and it worked JSON: we called it and it worked Vision: we called it and it worked 800 ms 0/13 16 days ago Copy curl curl .env python node
curl curl https://api.mistral.ai/v1/chat/completions \
-H 'Authorization: Bearer YOUR_MISTRAL_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"model":"mistral-vibe-cli-with-tools","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://api.mistral.ai/v1
OPENAI_API_KEY=your-mistral-api-key
OPENAI_MODEL=mistral-vibe-cli-with-tools python import os
from openai import OpenAI
client = OpenAI(
base_url="https://api.mistral.ai/v1",
api_key=os.environ["YOUR_MISTRAL_API_KEY"],
)
print(client.chat.completions.create(
model="mistral-vibe-cli-with-tools",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.mistral.ai/v1",
apiKey: process.env.YOUR_MISTRAL_API_KEY,
});
const reply = await client.chat.completions.create({
model: "mistral-vibe-cli-with-tools",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://api.mistral.ai/v1 Model ID mistral-vibe-cli-with-tools Auth our own free-tier key Answered answered 0 of the 13 checks we made in the last week Last ok 16 days ago A test from here would need your key, and we will not ask for it. Paste the snippet where your key already lives.
› mistral-medium-3 mistral · api.mistral.ai/v1key Tools: we called it and it worked Schema: we called it and it worked JSON: we called it and it worked Vision: we called it and it worked 807 ms 0/13 16 days ago Copy curl curl .env python node
curl curl https://api.mistral.ai/v1/chat/completions \
-H 'Authorization: Bearer YOUR_MISTRAL_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"model":"mistral-medium-3","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://api.mistral.ai/v1
OPENAI_API_KEY=your-mistral-api-key
OPENAI_MODEL=mistral-medium-3 python import os
from openai import OpenAI
client = OpenAI(
base_url="https://api.mistral.ai/v1",
api_key=os.environ["YOUR_MISTRAL_API_KEY"],
)
print(client.chat.completions.create(
model="mistral-medium-3",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.mistral.ai/v1",
apiKey: process.env.YOUR_MISTRAL_API_KEY,
});
const reply = await client.chat.completions.create({
model: "mistral-medium-3",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://api.mistral.ai/v1 Model ID mistral-medium-3 Auth our own free-tier key Answered answered 0 of the 13 checks we made in the last week Last ok 16 days ago A test from here would need your key, and we will not ask for it. Paste the snippet where your key already lives.
› mistral-medium-2505 mistral · api.mistral.ai/v1key Tools: we called it and it worked Schema: we called it and it worked JSON: we called it and it worked Vision: we called it and it worked 813 ms 0/14 15 days ago Copy curl curl .env python node
curl curl https://api.mistral.ai/v1/chat/completions \
-H 'Authorization: Bearer YOUR_MISTRAL_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"model":"mistral-medium-2505","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://api.mistral.ai/v1
OPENAI_API_KEY=your-mistral-api-key
OPENAI_MODEL=mistral-medium-2505 python import os
from openai import OpenAI
client = OpenAI(
base_url="https://api.mistral.ai/v1",
api_key=os.environ["YOUR_MISTRAL_API_KEY"],
)
print(client.chat.completions.create(
model="mistral-medium-2505",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.mistral.ai/v1",
apiKey: process.env.YOUR_MISTRAL_API_KEY,
});
const reply = await client.chat.completions.create({
model: "mistral-medium-2505",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://api.mistral.ai/v1 Model ID mistral-medium-2505 Auth our own free-tier key Answered answered 0 of the 14 checks we made in the last week Last ok 15 days ago A test from here would need your key, and we will not ask for it. Paste the snippet where your key already lives.
› mistral-code-agent-latest mistral · api.mistral.ai/v1key Tools: we called it and it worked Schema: we called it and it worked JSON: we called it and it worked Vision: we called it and it failed 878 ms 0/14 16 days ago Copy curl curl .env python node
curl curl https://api.mistral.ai/v1/chat/completions \
-H 'Authorization: Bearer YOUR_MISTRAL_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"model":"mistral-code-agent-latest","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://api.mistral.ai/v1
OPENAI_API_KEY=your-mistral-api-key
OPENAI_MODEL=mistral-code-agent-latest python import os
from openai import OpenAI
client = OpenAI(
base_url="https://api.mistral.ai/v1",
api_key=os.environ["YOUR_MISTRAL_API_KEY"],
)
print(client.chat.completions.create(
model="mistral-code-agent-latest",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.mistral.ai/v1",
apiKey: process.env.YOUR_MISTRAL_API_KEY,
});
const reply = await client.chat.completions.create({
model: "mistral-code-agent-latest",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://api.mistral.ai/v1 Model ID mistral-code-agent-latest Auth our own free-tier key Answered answered 0 of the 14 checks we made in the last week Last ok 16 days ago A test from here would need your key, and we will not ask for it. Paste the snippet where your key already lives.
› mistral-large-2512 mistral · api.mistral.ai/v1key Tools: we called it and it worked Schema: we called it and it worked JSON: we called it and it worked Vision: we called it and it worked 883 ms 0/14 16 days ago Copy curl curl .env python node
curl curl https://api.mistral.ai/v1/chat/completions \
-H 'Authorization: Bearer YOUR_MISTRAL_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"model":"mistral-large-2512","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://api.mistral.ai/v1
OPENAI_API_KEY=your-mistral-api-key
OPENAI_MODEL=mistral-large-2512 python import os
from openai import OpenAI
client = OpenAI(
base_url="https://api.mistral.ai/v1",
api_key=os.environ["YOUR_MISTRAL_API_KEY"],
)
print(client.chat.completions.create(
model="mistral-large-2512",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.mistral.ai/v1",
apiKey: process.env.YOUR_MISTRAL_API_KEY,
});
const reply = await client.chat.completions.create({
model: "mistral-large-2512",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://api.mistral.ai/v1 Model ID mistral-large-2512 Auth our own free-tier key Answered answered 0 of the 14 checks we made in the last week Last ok 16 days ago A test from here would need your key, and we will not ask for it. Paste the snippet where your key already lives.
› nvidia/nemotron-nano-12b-v2-vl:free openrouter · openrouter.ai/api/v1key Tools: we called it and it worked Schema: we called it and it worked JSON: we called it and it worked Vision: we called it and it worked 936 ms 0/5 26 days ago Copy curl curl .env python node
curl curl https://openrouter.ai/api/v1/chat/completions \
-H 'Authorization: Bearer YOUR_OPENROUTER_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"model":"nvidia/nemotron-nano-12b-v2-vl:free","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://openrouter.ai/api/v1
OPENAI_API_KEY=your-openrouter-api-key
OPENAI_MODEL=nvidia/nemotron-nano-12b-v2-vl:free python import os
from openai import OpenAI
client = OpenAI(
base_url="https://openrouter.ai/api/v1",
api_key=os.environ["YOUR_OPENROUTER_API_KEY"],
)
print(client.chat.completions.create(
model="nvidia/nemotron-nano-12b-v2-vl:free",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://openrouter.ai/api/v1",
apiKey: process.env.YOUR_OPENROUTER_API_KEY,
});
const reply = await client.chat.completions.create({
model: "nvidia/nemotron-nano-12b-v2-vl:free",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://openrouter.ai/api/v1 Model ID nvidia/nemotron-nano-12b-v2-vl:free Auth our own free-tier key Answered answered 0 of the 5 checks we made in the last week Last ok 26 days ago A test from here would need your key, and we will not ask for it. Paste the snippet where your key already lives.
› mistral-large-latest mistral · api.mistral.ai/v1key Tools: we called it and it worked Schema: never probed JSON: we called it and it worked Vision: we called it and it worked 1065 ms 0/14 16 days ago Copy curl curl .env python node
curl curl https://api.mistral.ai/v1/chat/completions \
-H 'Authorization: Bearer YOUR_MISTRAL_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"model":"mistral-large-latest","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://api.mistral.ai/v1
OPENAI_API_KEY=your-mistral-api-key
OPENAI_MODEL=mistral-large-latest python import os
from openai import OpenAI
client = OpenAI(
base_url="https://api.mistral.ai/v1",
api_key=os.environ["YOUR_MISTRAL_API_KEY"],
)
print(client.chat.completions.create(
model="mistral-large-latest",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.mistral.ai/v1",
apiKey: process.env.YOUR_MISTRAL_API_KEY,
});
const reply = await client.chat.completions.create({
model: "mistral-large-latest",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://api.mistral.ai/v1 Model ID mistral-large-latest Auth our own free-tier key Answered answered 0 of the 14 checks we made in the last week Last ok 16 days ago A test from here would need your key, and we will not ask for it. Paste the snippet where your key already lives.
› nvidia/nemotron-nano-9b-v2:free openrouter · openrouter.ai/api/v1key Tools: we called it and it worked Schema: we called it and it worked JSON: we called it and it worked Vision: never probed 1750 ms 0/6 27 days ago Copy curl curl .env python node
curl curl https://openrouter.ai/api/v1/chat/completions \
-H 'Authorization: Bearer YOUR_OPENROUTER_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"model":"nvidia/nemotron-nano-9b-v2:free","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://openrouter.ai/api/v1
OPENAI_API_KEY=your-openrouter-api-key
OPENAI_MODEL=nvidia/nemotron-nano-9b-v2:free python import os
from openai import OpenAI
client = OpenAI(
base_url="https://openrouter.ai/api/v1",
api_key=os.environ["YOUR_OPENROUTER_API_KEY"],
)
print(client.chat.completions.create(
model="nvidia/nemotron-nano-9b-v2:free",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://openrouter.ai/api/v1",
apiKey: process.env.YOUR_OPENROUTER_API_KEY,
});
const reply = await client.chat.completions.create({
model: "nvidia/nemotron-nano-9b-v2:free",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://openrouter.ai/api/v1 Model ID nvidia/nemotron-nano-9b-v2:free Auth our own free-tier key Answered answered 0 of the 6 checks we made in the last week Last ok 27 days ago A test from here would need your key, and we will not ask for it. Paste the snippet where your key already lives.
› z-ai/glm-5.2:free openrouter · openrouter.ai/api/v1key Tools: the provider claims it, our call never proved it Schema: the provider claims it, our call never proved it JSON: we called it and it worked Vision: never probed 1842 ms 0/5 17 days ago Copy curl curl .env python node
curl curl https://openrouter.ai/api/v1/chat/completions \
-H 'Authorization: Bearer YOUR_OPENROUTER_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"model":"z-ai/glm-5.2:free","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://openrouter.ai/api/v1
OPENAI_API_KEY=your-openrouter-api-key
OPENAI_MODEL=z-ai/glm-5.2:free python import os
from openai import OpenAI
client = OpenAI(
base_url="https://openrouter.ai/api/v1",
api_key=os.environ["YOUR_OPENROUTER_API_KEY"],
)
print(client.chat.completions.create(
model="z-ai/glm-5.2:free",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://openrouter.ai/api/v1",
apiKey: process.env.YOUR_OPENROUTER_API_KEY,
});
const reply = await client.chat.completions.create({
model: "z-ai/glm-5.2:free",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://openrouter.ai/api/v1 Model ID z-ai/glm-5.2:free Auth our own free-tier key Answered answered 0 of the 5 checks we made in the last week Last ok 17 days ago A test from here would need your key, and we will not ask for it. Paste the snippet where your key already lives.
› stealth/ox-alpha openrouter · openrouter.ai/api/v1key Tools: the provider claims it, our call failed Schema: we called it and it failed JSON: we called it and it worked Vision: we called it and it worked 3248 ms 0/5 24 days ago Copy curl curl .env python node
curl curl https://openrouter.ai/api/v1/chat/completions \
-H 'Authorization: Bearer YOUR_OPENROUTER_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"model":"stealth/ox-alpha","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://openrouter.ai/api/v1
OPENAI_API_KEY=your-openrouter-api-key
OPENAI_MODEL=stealth/ox-alpha python import os
from openai import OpenAI
client = OpenAI(
base_url="https://openrouter.ai/api/v1",
api_key=os.environ["YOUR_OPENROUTER_API_KEY"],
)
print(client.chat.completions.create(
model="stealth/ox-alpha",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://openrouter.ai/api/v1",
apiKey: process.env.YOUR_OPENROUTER_API_KEY,
});
const reply = await client.chat.completions.create({
model: "stealth/ox-alpha",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://openrouter.ai/api/v1 Model ID stealth/ox-alpha Auth our own free-tier key Answered answered 0 of the 5 checks we made in the last week Last ok 24 days ago A test from here would need your key, and we will not ask for it. Paste the snippet where your key already lives.
› openai/gpt-oss-20b:free openrouter · openrouter.ai/api/v1key Tools: we called it and it worked Schema: we called it and it worked JSON: we called it and it worked Vision: never probed 4259 ms 0/5 29 days ago Copy curl curl .env python node
curl curl https://openrouter.ai/api/v1/chat/completions \
-H 'Authorization: Bearer YOUR_OPENROUTER_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"model":"openai/gpt-oss-20b:free","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://openrouter.ai/api/v1
OPENAI_API_KEY=your-openrouter-api-key
OPENAI_MODEL=openai/gpt-oss-20b:free python import os
from openai import OpenAI
client = OpenAI(
base_url="https://openrouter.ai/api/v1",
api_key=os.environ["YOUR_OPENROUTER_API_KEY"],
)
print(client.chat.completions.create(
model="openai/gpt-oss-20b:free",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://openrouter.ai/api/v1",
apiKey: process.env.YOUR_OPENROUTER_API_KEY,
});
const reply = await client.chat.completions.create({
model: "openai/gpt-oss-20b:free",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://openrouter.ai/api/v1 Model ID openai/gpt-oss-20b:free Auth our own free-tier key Answered answered 0 of the 5 checks we made in the last week Last ok 29 days ago A test from here would need your key, and we will not ask for it. Paste the snippet where your key already lives.