바이트댄스의 플래그십 Seedream 5.0 Pro 이미지 생성 모델로, 내장 추론과 정밀한 지시 이행, 최대 10장의 멀티 레퍼런스 생성을 지원합니다. Seedream 5 Lite보다 높은 충실도의 1K/2K 해상도 출력을 제공합니다.
콘솔의 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": "bytedance/seedream-5-pro",
"input": {
"prompt": "Combine these three sneaker reference photos into a single studio product shot on a seamless white background, consistent lighting from the upper left, and a soft shadow beneath each shoe",
"image_input": [
"https://example.com/sneaker-1.jpg",
"https://example.com/sneaker-2.jpg",
"https://example.com/sneaker-3.jpg"
],
"size": "2K",
"aspect_ratio": "1:1"
}
}'| 파라미터 | 타입 | 필수 | 기본값 | 설명 |
|---|---|---|---|---|
prompt | string | Yes | - | 이미지 생성을 위한 텍스트 프롬프트입니다. 최대 4000자까지 입력할 수 있으며, BytePlus는 최상의 결과를 위해 영어 기준 600단어 이내로 작성할 것을 권장합니다. |
image_input | array | No | [] | 이미지-투-이미지 생성을 위한 입력 이미지입니다. 단일 또는 멀티 레퍼런스 생성을 위해 1~10장의 참조 이미지를 리스트로 전달할 수 있습니다. |
size | string | No | 2K | 이미지 해상도입니다: 1K(약 200만 화소) 또는 2K(약 400만 화소) 중 선택합니다. 1K2K |
aspect_ratio | string | No | match_input_image | 이미지 종횡비입니다. 'match_input_image'를 사용하면 입력 이미지의 종횡비를 자동으로 따라갑니다. match_input_image1:14:33:416:99:163:22:321:9 |
output_format | string | No | png | 출력 이미지 형식입니다. pngjpeg |
이 모델의 image_input 파라미터에 파일을 전달하는 방법은 3가지입니다.
POST /v1/predictions/upload에 파일을 직접 첨부합니다. 별도 업로드 과정이 필요 없습니다.
curl -X POST "https://api.core.today/v1/predictions/upload" \
-H "X-API-Key: cdt_your_api_key" \
-F "model=bytedance/seedream-5-pro" \
-F 'input={"prompt":"your prompt here"}' \
-F "file:image_input=@your_file.png"공개 접근 가능한 URL을 직접 전달합니다. Storage API로 업로드한 파일의 file_url도 사용 가능합니다.
{
"model": "bytedance/seedream-5-pro",
"input": {
"prompt": "your prompt here",
"image_input": ["https://example.com/image.jpg"]
}
}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": "bytedance/seedream-5-pro",
"input": {
"prompt": "Combine these three sneaker reference photos into a single studio product shot on a seamless white background, consistent lighting from the upper left, and a soft shadow beneath each shoe",
"image_input": [
"https://example.com/sneaker-1.jpg",
"https://example.com/sneaker-2.jpg",
"https://example.com/sneaker-3.jpg"
],
"size": "2K",
"aspect_ratio": "1:1"
}
}'텍스트 프롬프트만으로 2K 해상도의 와이드 배너 생성
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: cdt_your_api_key" \
-d '{
"model": "bytedance/seedream-5-pro",
"input": {
"prompt": "A minimalist tech product launch banner featuring sleek wireless earbuds floating above a reflective dark surface, dramatic rim lighting, deep navy background with a subtle gradient",
"size": "2K",
"aspect_ratio": "21:9",
"output_format": "png"
}
}'