FLUX.1 Pro를 업그레이드한 빠르고 고품질 이미지 생성 모델입니다. 속도와 충실도 모두가 필요한 프로덕션 워크로드에 적합합니다.
이 모델의 사용법을 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": "black-forest-labs/flux-1.1-pro",
"input": {
"prompt": "Cinematic portrait of a woman in golden hour light, shallow depth of field, film grain, professional photography, 8k ultra detailed",
"image_size": "portrait_4_3"
}
}'| 파라미터 | 타입 | 필수 | 기본값 | 설명 |
|---|---|---|---|---|
prompt | string | Yes | - | 생성할 이미지에 대한 텍스트 설명 |
image_size | string | No | landscape_4_3 | 출력 이미지 크기 square_hdsquareportrait_4_3portrait_16_9landscape_4_3landscape_16_9 |
seed | integer | No | - | 재현성을 위한 랜덤 시드 |
safety_tolerance | string | No | 2 | 콘텐츠 안전 수준 (1-6) |
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": "black-forest-labs/flux-1.1-pro",
"input": {
"prompt": "Cinematic portrait of a woman in golden hour light, shallow depth of field, film grain, professional photography, 8k ultra detailed",
"image_size": "portrait_4_3"
}
}'포토리얼리스틱 건축 렌더링 생성
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: cdt_your_api_key" \
-d '{
"model": "black-forest-labs/flux-1.1-pro",
"input": {
"prompt": "Modern luxury villa with infinity pool overlooking the ocean, architectural photography, golden hour, ultra detailed, professional rendering",
"image_size": "landscape_16_9"
}
}'POST /v1/predictions