Ideogram v4 패밀리의 중간 티어로, 생성 속도와 출력 품질 사이의 균형을 맞췄습니다. Quality 티어보다 낮은 비용으로 강력한 타이포그래피와 포토리얼리즘을 제공합니다.
콘솔의 Playground에서 별도 코드 없이 이 모델을 즉시 테스트할 수 있어요
이 모델의 사용법을 Claude, ChatGPT 등에 복사
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: cdt_your_api_key" \
-d '{
"model": "ideogram-ai/ideogram-v4-balanced",
"input": {
"prompt": "A bright Instagram promo graphic for a summer sale with the headline \"UP TO 40% OFF\" in bold rounded typography, tropical leaf pattern background in coral and teal",
"resolution": "2048x2048"
}
}'| 파라미터 | 타입 | 필수 | 기본값 | 설명 |
|---|---|---|---|---|
prompt | string | No | - | 자연어 프롬프트입니다. 사용 시 Ideogram 4.0 Magic Prompt가 자동으로 활성화됩니다. |
json_prompt | string | No | - | JSON 객체 형태의 구조화된 Ideogram 4.0 프롬프트입니다. prompt와 json_prompt 중 하나만 사용하세요. |
resolution | string | No | None | 출력 해상도입니다. 비워두면 Ideogram 4.0이 자동으로 종횡비를 선택합니다. None2048x20481440x28802880x14401664x24962496x16641792x22402240x17921440x25602560x14401600x25602560x16001728x23042304x17281296x31683168x12961152x29442944x11521248x33283328x12481280x30723072x1280 |
enable_copyright_detection | boolean | No | false | 생성 후 Ideogram 4.0 저작권 감지 기능을 사용할지 여부입니다. |
POST /v1/predictions 요청 시 사용되는 공통 파라미터입니다.
| 파라미터 | 타입 | 필수 | 기본값 | 설명 |
|---|---|---|---|---|
model | string | Yes | - | 모델 식별자 |
input | object | Yes | - | 위 테이블의 모델별 파라미터를 포함하는 객체 |
output_folder | string | No | - | 결과물 저장 폴더 경로 (최대 256자, '..' 사용 불가) |
webhook_url | string | No | - | 완료 시 호출할 Webhook URL |
is_public | boolean | No | false | true 시 결과물을 영구 공개 URL로도 제공 |
품질과 제작 속도의 균형을 맞춘 소셜 미디어 프로모션 그래픽
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: cdt_your_api_key" \
-d '{
"model": "ideogram-ai/ideogram-v4-balanced",
"input": {
"prompt": "A bright Instagram promo graphic for a summer sale with the headline \"UP TO 40% OFF\" in bold rounded typography, tropical leaf pattern background in coral and teal",
"resolution": "2048x2048"
}
}'json_prompt를 사용해 레이아웃을 반복 가능하게 구조적으로 제어
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: cdt_your_api_key" \
-d '{
"model": "ideogram-ai/ideogram-v4-balanced",
"input": {
"json_prompt": "{\"subject\": \"product bottle poster\", \"text\": \"NEW ARRIVAL\", \"style\": \"clean editorial\", \"palette\": [\"cream\", \"forest green\"]}",
"resolution": "1728x2304"
}
}'