› 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.
› 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.
› 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.
› 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.
› 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.
› inclusionai/ling-3.0-flash-vl:free openrouter · openrouter.ai/api/v1key Tools: we called it and it worked Schema: we called it and it failed JSON: never probed Vision: we called it and it worked 1072 ms 4/5 23 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":"inclusionai/ling-3.0-flash-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=inclusionai/ling-3.0-flash-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="inclusionai/ling-3.0-flash-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: "inclusionai/ling-3.0-flash-vl:free",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://openrouter.ai/api/v1 Model ID inclusionai/ling-3.0-flash-vl:free Auth our own free-tier key Answered answered 4 of the 5 checks we made in the last week Last ok 23 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.
› google/gemma-4-26b-a4b-it:free openrouter · openrouter.ai/api/v1key Tools: we called it and it worked Schema: we called it and it worked JSON: the provider claims it, our call failed Vision: we called it and it worked 1316 ms 2/5 10 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-26b-a4b-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-26b-a4b-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-26b-a4b-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-26b-a4b-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-26b-a4b-it:free Auth our own free-tier key Answered answered 2 of the 5 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.
› qwen/qwen3.6-27b groq · api.groq.com/openai/v1key Tools: we called it and it worked Schema: we called it and it failed JSON: the provider claims it, our call failed Vision: we called it and it worked 200 ms 14/42 4 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":"qwen/qwen3.6-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.6-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.6-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.6-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.6-27b Auth our own free-tier key Answered answered 14 of the 42 checks we made in the last week Last ok 4 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.
› 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.
› 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-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-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.
› 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.