Ideogram v4 모델 패밀리 중 가장 높은 충실도의 티어로, 최대한의 디테일과 사실적 표현, 정확한 타이포그래피에 최적화되어 있습니다. 속도보다 품질이 중요한 최종 프로덕션 에셋에 가장 적합합니다.
콘솔의 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-quality",
"input": {
"prompt": "A minimalist logo for a specialty coffee roastery called \"ATLAS ROASTING CO.\", bold sans-serif wordmark in deep charcoal, small mountain peak icon above the text, clean white background",
"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-quality",
"input": {
"prompt": "A minimalist logo for a specialty coffee roastery called \"ATLAS ROASTING CO.\", bold sans-serif wordmark in deep charcoal, small mountain peak icon above the text, clean white background",
"resolution": "2048x2048"
}
}'가독성 높은 헤드라인 카피가 들어간 사실적 포스터 아트워크
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-quality",
"input": {
"prompt": "A premium skincare product poster with the headline \"GLOW FROM WITHIN\" in elegant serif type at the top, a glass bottle of serum centered on a marble surface, soft studio lighting",
"resolution": "1440x2560",
"enable_copyright_detection": true
}
}'