Ideogram V3 API
포스터, 로고, 타이포그래피를 위한 강력한 이미지 내 텍스트 정확도를 갖춘 텍스트-이미지 변환을 위한 Ideogram V3 API 액세스.
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": "상단에 볼드 세리프 폰트로 제목이 있고 배경에 우주 정거장이 있는 'The Last Frontier' 영화 포스터를 만들어 주세요."
}'
import { IdeogramV3Client } from "@runapi.ai/ideogram-v3";
const client = new IdeogramV3Client();
const result = await client.textToImage.run({
model: "ideogram-v3-text-to-image",
prompt: "상단에 볼드 세리프 폰트로 제목이 있고 배경에 우주 정거장이 있는 'The Last Frontier' 영화 포스터를 만들어 주세요.",
});
<?php
require __DIR__ . "/vendor/autoload.php";
use RunApi\IdeogramV3\IdeogramV3Client;
$client = new IdeogramV3Client();
$result = $client->textToImage->run([
'model' => 'ideogram-v3-text-to-image',
'prompt' => '상단에 볼드 세리프 폰트로 제목이 있고 배경에 우주 정거장이 있는 \'The Last Frontier\' 영화 포스터를 만들어 주세요.',
]);
require "runapi/ideogram_v3"
client = RunApi::IdeogramV3::Client.new
result = client.text_to_image.run(
model: "ideogram-v3-text-to-image",
prompt: "상단에 볼드 세리프 폰트로 제목이 있고 배경에 우주 정거장이 있는 'The Last Frontier' 영화 포스터를 만들어 주세요."
)
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는 약 90~95%의 이미지 내 텍스트 렌더링 정확도를 갖춘 텍스트-이미지 모델로, 가독성 있는 타이포그래피로 이미지를 생성하는 데 가장 신뢰할 수 있는 모델 중 하나입니다. 편집 및 리믹스 워크플로우도 지원합니다.
- 품질과 지연 시간 목표에 맞춘 모델 변형
- 통합 API key
- Model skill에 docs, schema, 설정 메모 포함
- 실패한 생성은 과금되지 않습니다
변형
앱 개발을 위해 Ideogram V3 skill 설치
모델 docs, schema, 가격 메모, 설정 단계를 코딩 워크스페이스로 불러옵니다.
# Install the model skill for app development workflows
npx skills add runapi-ai/ideogram-v3 -g
Install the Ideogram V3 skill for this app: 1. Add runapi-ai/ideogram-v3 with the skills installer. 2. Load SKILL.md in this workspace. 3. Use its docs, schemas, pricing notes, and setup steps when adding model features. 4. Confirm the install path when done.
이 model skill로 구현하는 방법
모델 선택
출력 유형, 품질 기준, 지연 시간 목표에 맞는 모델과 변형을 고릅니다.
한 번 인증
모든 지원 모델에 RunAPI key를 사용합니다.
skill 설치
기능을 구현하기 전에 코딩 워크스페이스에 model skill을 추가합니다.
결과 받기
task ID로 조회하거나 생성 완료 시 callback을 처리합니다.
Ideogram V3의 위치
Ideogram V3는 생성된 이미지의 타이포그래피를 위해 특화되어 있으며, 약 90~95%의 텍스트 정확도를 달성합니다. RunAPI를 통해 생성, 편집, 리믹스 등 모든 Ideogram V3 엔드포인트가 하나의 키를 공유합니다.
RunAPI로 Ideogram V3을 쓰는 이유
하나의 API key
모델과 제공사를 넘나들며 같은 인증 정보를 사용합니다.
Skill-ready
model skill에 schema, 설정 메모, 가격 컨텍스트, 모델 ID가 포함됩니다.
예측 가능한 과금
호출 전에 사용량 기반 가격을 확인할 수 있습니다.
자주 묻는 질문
이 모델은 어떻게 호출하나요?
model skill을 설치하고 RunAPI key와 함께 설정 메모를 따르세요.
실패한 생성도 비용이 드나요?
실패한 생성은 과금되지 않습니다
애플리케이션에서 호출할 수 있나요?
네. 코딩 워크스페이스에 model skill을 설치하고 모델 기능을 추가할 때 사용하세요.