一個驗證,對應所有 provider
一組 RunAPI key 即可解鎖整個 catalog。無需分開帳戶,亦無需為每個整合輪換密鑰。
It looks like you may prefer a different language. Switch anytime.
透過 RunAPI 使用 Ideogram V3 API,包含 model skill、統一驗證與按用量計費。
curl -X POST https://runapi.ai/api/v1/ideogram_v3/text_to_image \
-H "Authorization: Bearer $RUNAPI_API_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
Ideogram V3 is a text-to-image model with strong 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.
| Endpoint | 解析度 | 時長 | 價格 | |
|---|---|---|---|---|
| text_to_image | — | — | $0.12-$0.24 / image |
以下為 ideogram-v3-character 的定價。其他變體保留各自的 endpoint 定價。
挑選符合輸出類型、品質門檻與延遲目標的模型與變體。
設定 RunAPI key,並在 coding workspace 安裝 model skill。
使用 skill 指引,在你的 app 內加入模型功能。
透過 task ID 查詢、在支援時串流,或處理 webhook callback。
一組 RunAPI key 即可解鎖整個 catalog。無需分開帳戶,亦無需為每個整合輪換密鑰。
按次以 USD 收費,每月結算。失敗的生成不會收費。
型別化 schema 與 setup 備註打包在 model skill 內,讓實作從正確契約開始。
Among the highest text accuracy of any image generation model, especially for posters, logos, and signage.
Output resolution is configurable across landscape, portrait, and square aspect ratios.
A few seconds per image for the standard text-to-image endpoint.
Edit applies targeted modifications to a specific region of an existing image. Remix takes a reference image and regenerates it in a new style guided by your text prompt.
Yes — it can render text in multiple languages within generated images, though accuracy is highest for Latin-script languages.
先選最平而且符合你質素要求的版本。大多數團隊會先用快速版本,之後再升級到 pro 用於正式生產。