속도에 최적화된 초고속 이미지 생성 모델입니다. 1-2초 만에 고품질 이미지를 생성하며, 실시간 애플리케이션과 빠른 프로토타이핑에 적합합니다.
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: YOUR_API_KEY" \
-d '{
"model": "flux-schnell",
"input": {
"prompt": "A sleek wireless headphone on a minimalist white marble surface, professional product photography, soft studio lighting, 8k ultra detailed",
"image_size": "landscape_4_3",
"num_inference_steps": 4
}
}'| 파라미터 | 타입 | 필수 | 기본값 | 설명 |
|---|---|---|---|---|
prompt | string | Yes | - | 생성할 이미지에 대한 텍스트 설명 |
image_size | string | No | landscape_4_3 | 출력 이미지 크기 square_hdsquareportrait_4_3portrait_16_9landscape_4_3landscape_16_9 |
num_inference_steps | integer | No | 4 | 디노이징 스텝 수 (1-50) |
seed | integer | No | - | 재현성을 위한 랜덤 시드 |
num_images | integer | No | 1 | 생성할 이미지 수 (1-4) |
전문적인 제품 사진 생성
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: YOUR_API_KEY" \
-d '{
"model": "flux-schnell",
"input": {
"prompt": "A sleek wireless headphone on a minimalist white marble surface, professional product photography, soft studio lighting, 8k ultra detailed",
"image_size": "landscape_4_3",
"num_inference_steps": 4
}
}'독특한 캐릭터 컨셉 생성
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: YOUR_API_KEY" \
-d '{
"model": "flux-schnell",
"input": {
"prompt": "A cyberpunk samurai warrior with glowing neon armor, detailed character design, concept art style, dramatic lighting",
"image_size": "portrait_4_3"
}
}'멋진 풍경 이미지 생성
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: YOUR_API_KEY" \
-d '{
"model": "flux-schnell",
"input": {
"prompt": "Breathtaking mountain vista at golden hour, misty valleys below, photorealistic landscape photography, National Geographic style",
"image_size": "landscape_16_9"
}
}'POST /v1/predictions