Grok Imagine Image
xAI · All Grok models
Free right now
Image generation
Grok Imagine Image is a image generation model from xAI. It is currently free at 1 provider with up to — tokens of context.
- Developer
- xAI
- Type
- Image generation
Where to use Grok Imagine Image for free
Each row is a separate free endpoint with its own limits.
| Provider | Context | Limit | Card | |
|---|---|---|---|---|
OrcaRouter grok/grok-imagine-image |
— | Free tier | — | Open |
Quick start
curl https://api.orcarouter.ai/v1/chat/completions \
-H "Authorization: Bearer $ORCAROUTER_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "grok/grok-imagine-image",
"messages": [{"role": "user", "content": "Hello!"}]
}'from openai import OpenAI
client = OpenAI(
base_url="https://api.orcarouter.ai/v1",
api_key="YOUR_ORCAROUTER_API_KEY",
)
reply = client.chat.completions.create(
model="grok/grok-imagine-image",
messages=[{"role": "user", "content": "Hello!"}],
)
print(reply.choices[0].message.content)import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.orcarouter.ai/v1",
apiKey: process.env.ORCAROUTER_API_KEY,
});
const reply = await client.chat.completions.create({
model: "grok/grok-imagine-image",
messages: [{ role: "user", content: "Hello!" }],
});
console.log(reply.choices[0].message.content);Example for OrcaRouter. Any OpenAI-compatible client works: Cursor, Cline, OpenCode, Open WebUI.
Benchmarks
This model is not on the Artificial Analysis leaderboard yet. We do not publish our own estimates.
Similar free models
FAQ
Is Grok Imagine Image free?
Yes. As of September 26, 2026, Grok Imagine Image is free at OrcaRouter. Each provider has its own limits — see the table above.
How do I call Grok Imagine Image via API?
Use any OpenAI-compatible client with base URL https://api.orcarouter.ai/v1, model ID grok/grok-imagine-image, and a OrcaRouter key.