Ideogram AI Models
Ideogram V3 — text-to-image with industry-leading in-image text accuracy for typography and design.
Ideogram specializes in text-to-image generation with an emphasis on accurate in-image text rendering. V3 achieves ~90–95% text accuracy for posters, logos, and typography — far ahead of general-purpose image models.
- Single API key shared across all providers
- No separate %{provider} account required
- Model skills carry docs, schemas, and setup steps into your workspace
- Per-call billing in USD, no subscription or minimum spend
- Failed generations are never charged
- Switch models by changing one parameter
- Billing consolidated into one monthly invoice
What stands out
One of the most-used model APIs from Ideogram, chosen by developers for its balance of output quality, speed, and pricing.
One of the most-used model APIs from Ideogram, chosen by developers for its balance of output quality, speed, and pricing.
Lowest starting price across the Ideogram catalog, suited for high-volume workflows and cost-sensitive production pipelines.
All Ideogram models available through RunAPI
Install a Ideogram model skill for your app.
Pick a model and add its skill so your coding tool has docs, schemas, pricing notes, and setup steps. Skills work with Claude Code, Codex, Gemini CLI, Cursor, and VS Code. Install once, then switch models by changing one parameter.
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-text-to-image",
"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-text-to-image",
prompt: "Create a movie poster for 'The Last Frontier' with the title in bold serif at the top, a space station in the background.",
});
<?php
require __DIR__ . "/vendor/autoload.php";
use RunApi\IdeogramV3\IdeogramV3Client;
$client = new IdeogramV3Client();
$result = $client->textToImage->run([
'model' => 'ideogram-v3-text-to-image',
'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-text-to-image",
prompt: "Create a movie poster for 'The Last Frontier' with the title in bold serif at the top, a space station in the background."
)
npx skills add runapi-ai/ideogram-v3 -g
# Claude Code
claude mcp add runapi -s user -- npx -y @runapi.ai/mcp
# Codex
codex plugin install runapi-mcp@agents
# Cursor / Windsurf / VS Code
npx @runapi.ai/mcp init cursor
Every Ideogram variant with pricing and model IDs
| Model | Variant | Billing | From | |
|---|---|---|---|---|
|
|
ideogram-v3-character | call | $0.180 | View → |
| ideogram-v3-character-edit | call | $0.180 | View → | |
| ideogram-v3-character-remix | call | $0.180 | View → | |
| ideogram-v3-edit | call | $0.070 | View → | |
| ideogram-v3-reframe | call | $0.070 | View → | |
| ideogram-v3-remix | call | $0.070 | View → | |
| ideogram-v3-text-to-image | call | $0.070 | View → |
Frequently asked questions about Ideogram
Is this an official Ideogram integration?
RunAPI exposes a managed API surface with transparent per-call pricing, fully documented capability and parameters, and clear error behavior. You get the same model output quality without managing a direct provider relationship or provider-side account.
Do I need a Ideogram account?
No. Your RunAPI API key is enough for managed access to all Ideogram models. You do not need to create a separate account, manage provider-specific credentials, or handle provider-side billing.
What's the latency overhead from proxying through RunAPI?
Typically under 20 ms. RunAPI keeps the proxy layer close to model execution regions to minimize added latency. Media generation time is dominated by the model itself, not the proxy.
Are images / videos cached?
Generated outputs are stored and retrievable by task ID. You can fetch completed results at any time using the task status endpoint or the RunAPI dashboard. Output URLs remain accessible for the retention period shown in the API docs. Inputs are not cached or stored.
Can I bring my own key?
Not currently. Calls use RunAPI-managed access, which simplifies authentication and lets RunAPI handle rate limiting, retries, and billing consolidation on your behalf.
How is billing consolidated?
All API calls across all providers appear on a single monthly USD invoice. There is no per-provider billing, no subscription, and no minimum spend. Failed generations are never charged.
What SDKs can I use with Ideogram models?
Official SDKs are available for Python, Node.js, PHP, Java, Ruby, and Go. Each SDK handles authentication, async task polling, and typed responses. For LLM models, the OpenAI and Anthropic SDKs also work by pointing the base URL to RunAPI.
What are model skills and how do they work?
Model skills are installable packages that load a model's docs, typed schemas, pricing notes, and setup steps directly into your coding workspace. Install a skill with one command and your agent has the right context before you write integration code. Skills work with Claude Code, Codex, Gemini CLI, Cursor, and VS Code.
How do I switch between Ideogram models?
Change the model parameter in your API request. All Ideogram models share the same API key, the same request shape, and the same billing. No code changes, no re-authentication, and no separate billing setup are required when switching between models or between variants of the same model. You can also switch to models from other providers by changing the same parameter — the API surface is unified across the entire catalog.