Pruna의 초고속 Z-Image Turbo입니다 (4,800만+ 실행). 최대 2048x2048까지 메가픽셀 단위로 과금되어 생성한 해상도만큼만 지불합니다. 대량 사용에 뛰어난 가성비를 제공합니다.
콘솔의 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": "prunaai/z-image-turbo",
"input": {
"prompt": "A cozy coffee shop interior, warm lighting, photorealistic",
"width": 1024,
"height": 1024
}
}'| 파라미터 | 타입 | 필수 | 기본값 | 설명 |
|---|---|---|---|---|
prompt | string | Yes | - | 생성할 이미지에 대한 프롬프트 |
height | integer | No | 1024 | 출력 세로 (64-2048). 크레딧은 가로x세로에 비례 |
width | integer | No | 1024 | 출력 가로 (64-2048). 크레딧은 가로x세로에 비례 |
num_inference_steps | integer | No | 8 | 추론 스텝 (1-50). 터보 최적값은 8 |
guidance_scale | number | No | 0 | 가이던스. 터보 모델은 0 권장 |
seed | integer | No | - | 재현 가능한 생성을 위한 시드 |
go_fast | boolean | No | false | 추가 최적화로 더 빠르게 생성 |
output_format | string | No | jpg | 출력 이미지 형식 pngjpgwebp |
output_quality | integer | No | 80 | 출력 이미지 저장 품질 (0-100). 100이 최고 품질, 0이 최저 품질. png 출력에는 해당 없음 |
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로도 제공 |
30크레딧으로 1024x1024 이미지 생성
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: cdt_your_api_key" \
-d '{
"model": "prunaai/z-image-turbo",
"input": {
"prompt": "A cozy coffee shop interior, warm lighting, photorealistic",
"width": 1024,
"height": 1024
}
}'512x512 썸네일을 개당 7.5크레딧에 생성
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: cdt_your_api_key" \
-d '{
"model": "prunaai/z-image-turbo",
"input": {
"prompt": "Minimalist app icon, gradient background, flat design",
"width": 512,
"height": 512
}
}'