Ideogram V3
Text-to-image with industry-leading in-image text accuracy — posters, logos, and typography.
# Works with Claude Code, Codex, Gemini CLI, Cursor, and 50+ agents
npx skills add runapi-ai/ideogram-v3 -g
Install the Ideogram V3 skill for me: 1. Clone https://github.com/runapi-ai/ideogram-v3 2. Copy the skills/ideogram-v3/ directory into your user-level skills directory (e.g. ~/.claude/skills/ for Claude Code, ~/.codex/skills/ for Codex). 3. Verify that SKILL.md is present. 4. Confirm the install path when done.
Ideogram V3 is a text-to-image model with approximately 90-95% in-image text rendering accuracy, making it one of the most reliable models for generating images with legible typography. It also supports editing and remix workflows.
- Installable agent skill
- Unified API key
- SDK examples included
- Les générations échouées ne sont pas facturées
Variantes
| Variant | Billing | From | |
|---|---|---|---|
| ideogram-v3-character | call | $0.180 | Voir → |
| ideogram-v3-character-edit | call | $0.180 | Voir → |
| ideogram-v3-character-remix | call | $0.180 | Voir → |
| ideogram-v3-edit | call | $0.070 | Voir → |
| ideogram-v3-reframe | call | $0.070 | Voir → |
| ideogram-v3-remix | call | $0.070 | Voir → |
| ideogram-v3-text-to-image | call | $0.070 | Voir → |
Use this model from your agent
# User prompt to the agent
"Create a movie poster for 'The Last Frontier' with the title in bold serif at the top, a space station in the background."
// Code generated by the agent via @runapi.ai/ideogram-v3
import { IdeogramV3Client } from '@runapi.ai/ideogram-v3';
const client = new IdeogramV3Client();
const result = await client.textToImage.run({
model: 'ideogram-v3-character',
prompt: 'Create a movie poster for 'The Last Frontier' with the title in bold serif at the top, a space station in the background.',
});
How to call this model
Install the skill
Add the model skill to your agent or install the SDK package.
Authenticate once
Use your RunAPI key for every supported model.
Send a request
Use the unified schema for the endpoint you need.
Receive output
Poll by task ID or handle the callback when the generation completes.
SDK quickstart
curl -X POST https://runapi.ai/api/v1/ideogram_v3/text_to_image \
-H "Authorization: Bearer $RUNAPI_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "ideogram-v3-character",
"prompt": "Create a movie poster for 'The Last Frontier' with the title in bold serif at the top, a space station in the background."
}'
import { IdeogramV3Client } from "@runapi.ai/ideogram-v3";
const client = new IdeogramV3Client();
const result = await client.textToImage.run({
model: "ideogram-v3-character",
prompt: "Create a movie poster for 'The Last Frontier' with the title in bold serif at the top, a space station in the background.",
});
require "runapi/ideogram_v3"
client = RunApi::IdeogramV3::Client.new
result = client.text_to_image.run(
model: "ideogram-v3-character",
prompt: "Create a movie poster for 'The Last Frontier' with the title in bold serif at the top, a space station in the background."
)
Where Ideogram V3 fits
Ideogram V3 is purpose-built for typography in generated images, achieving ~90-95% text accuracy. Through RunAPI, all Ideogram V3 endpoints — generation, edit, and remix — share one key.
Why use Ideogram V3 through RunAPI
One API key
Use the same credentials across models and providers.
Agent-ready
Installable skills include docs and schema for tool calls.
Predictable billing
Usage-based pricing is visible before you call.
Frequently asked questions
How do I call this model?
Use the RunAPI SDK, CLI, or REST endpoint shown on this page.
Do failed generations cost money?
Les générations échouées ne sont pas facturées
Can agents use it directly?
Yes. Install the model skill and your agent gets the docs, schema, and examples.