Seedream 5.0 Pro icon

Seedream 5.0 Pro API

ByteDance의 플래그십 이미지·편집 모델 Seedream 5.0 Pro(2026년 중반). 텍스트나 최대 10장의 참조 이미지로부터 고급 추론과 정밀 편집을 통해 선명한 1K·2K 이미지를 생성합니다.

Seedream 5.0 Pro을(를) 단 한 번의 API 호출로 통합하세요. 하나의 키, 하나의 통합 엔드포인트, 그리고 Apiframe의 모든 모델에 적용되는 통합 청구.

model: "seedream-5-pro"

Seedream 5.0 Pro의 특별한 점

선명한 1K / 2K 출력

1K(약 2MP)와 2K(약 4MP)로 선명한 이미지를 생성합니다. 가격은 해상도에 따른 단계별 방식이라 필요한 디테일에만 비용을 지불합니다.

최대 10장의 참조 이미지

단일·다중 참조 생성에 최대 10장의 참조 이미지를 사용할 수 있어 제품 배치, 캐릭터 일관성, 장면 합성에 강점을 보입니다.

고급 프롬프트 추론

심층적인 사고 과정으로 데이터·개념·긴 텍스트를 인포그래픽, 포스터, UI 목업, 차트 같은 구조화된 레이아웃으로 한 번에 변환합니다.

정밀 편집과 레이어 분리

영역 단위의 정밀 편집을 지원하며 텍스트·피사체·배경 등 편집 가능한 요소로 이미지를 분리해 전체를 재생성하지 않고 일부만 변경할 수 있습니다.

네이티브 다국어 텍스트

우횡서 레이아웃과 강세 문자를 포함해 14개 언어로 정확한 텍스트를 렌더링하며, 이전 세대에서 크게 발전했습니다.

사실적 표현과 소재 재현

물리적 조명, 소재 거동, 피부 질감, 다인물 합성을 개선해 설득력 있는 상업용 품질의 결과를 제공합니다.

Seedream 5.0 Pro(으)로 제작

Apiframe의 Seedream 5.0 Pro API로 생성한 출력 예시입니다.

샘플 준비 중

A cinematic portrait of an astronaut in a neon-lit alley, 85mm, shallow depth of field

샘플 준비 중

Cozy isometric coffee shop, warm morning light, highly detailed 3D render

샘플 준비 중

A majestic snow leopard on a misty mountain ridge at golden hour

개요

엔드포인트
POST /v2/images/generate
모델 ID
seedream-5-pro
파라미터 키
seedreamParams
모달리티
이미지
제공업체
ByteDance
평균 완료 시간
~20s

기능

화면 비율1:1, 3:4, 4:3, 9:16, 16:9
해상도1K, 2K
이미지 입력지원
평균 시간~20초

빠른 시작

API 키와 함께 POST /v2/images/generate 요청을 한 번 보내면 Seedream 5.0 Pro로 생성이 시작됩니다. 응답으로 폴링하거나 웹훅으로 받을 수 있는 jobId가 반환됩니다.

curl -X POST https://api.apiframe.ai/v2/images/generate \
  -H "X-API-Key: afk_your_api_key_here" \
  -H "Content-Type: application/json" \
  -d '{
        "prompt": "a sleek silver sports car on a coastal highway at sunset, hyper-realistic",
        "model": "seedream-5-pro",
        "seedreamParams": {
            "image_input": "https://example.com/input.jpg",
            "output_format": "jpg",
            "guidance_scale": 3,
            "use_pre_llm": false
        }
    }'
import requests

response = requests.post(
    "https://api.apiframe.ai/v2/images/generate",
    headers={
        "X-API-Key": "afk_your_api_key_here",
        "Content-Type": "application/json",
    },
    json={
        "prompt": "a sleek silver sports car on a coastal highway at sunset, hyper-realistic",
        "model": "seedream-5-pro",
        "seedreamParams": {
            "image_input": "https://example.com/input.jpg",
            "output_format": "jpg",
            "guidance_scale": 3,
            "use_pre_llm": False
        }
    },
)
print(response.json())  # { "jobId": "...", "status": "QUEUED" }
const response = await fetch("https://api.apiframe.ai/v2/images/generate", {
  method: "POST",
  headers: {
    "X-API-Key": "afk_your_api_key_here",
    "Content-Type": "application/json",
  },
  body: JSON.stringify({
    "prompt": "a sleek silver sports car on a coastal highway at sunset, hyper-realistic",
    "model": "seedream-5-pro",
    "seedreamParams": {
      "image_input": "https://example.com/input.jpg",
      "output_format": "jpg",
      "guidance_scale": 3,
      "use_pre_llm": false
    }
  }),
});
const { jobId } = await response.json();
console.log(jobId);

응답 및 작업 수명 주기

생성은 비동기로 처리됩니다. 제출이 성공하면 202 AcceptedjobId가 반환됩니다. 상태가 COMPLETED가 될 때까지 GET /v2/jobs/{id}를 폴링하거나 webhook_url을 지정하면 result 필드에 출력 URL이 담깁니다.

1. 제출 응답 (202)

{
  "jobId": "b2c3d4e5-f6a7-8901-bcde-f23456789012",
  "status": "QUEUED"
}

2. 결과 폴링

curl https://api.apiframe.ai/v2/jobs/JOB_ID \
  -H "X-API-Key: afk_your_api_key_here"
import requests, time

while True:
    job = requests.get(
        "https://api.apiframe.ai/v2/jobs/JOB_ID",
        headers={"X-API-Key": "afk_your_api_key_here"},
    ).json()
    if job["status"] in ("COMPLETED", "FAILED"):
        break
    time.sleep(2)
print(job["result"])
let job;
do {
  await new Promise((r) => setTimeout(r, 2000));
  job = await fetch("https://api.apiframe.ai/v2/jobs/JOB_ID", {
    headers: { "X-API-Key": "afk_your_api_key_here" },
  }).then((r) => r.json());
} while (job.status !== "COMPLETED" && job.status !== "FAILED");
console.log(job.result);

입력 스키마

Seedream 5.0 Pro 엔드포인트가 허용하는 요청 파라미터입니다. 모델별 옵션은 아래에 표시된 파라미터 객체 안에 중첩됩니다.

파라미터 유형 필수 기본값 허용값 / 범위 설명
prompt string 필수 생성할 내용에 대한 텍스트 설명.
model string 필수 "seedream-5-pro" "seedream-5-pro" 이 엔드포인트의 모델 식별자.
seedreamParams.image_input string (URL) 선택 Reference image (URL)
seedreamParams.output_format string 선택 "jpg" "jpg", "png" Output format
seedreamParams.guidance_scale number 선택 3 min 1, max 10, step 0.5 Guidance
seedreamParams.use_pre_llm boolean 선택 false Pre-process the prompt with an LLM.
seedreamParams.enhance_prompt boolean 선택 false Enhance prompt
seedreamParams.seed number 선택 step 1 Reuse a number to reproduce the same result.

자주 묻는 질문

Seedream 5.0 Pro API에 대한 일반적인 질문입니다.

Seedream 5.0 Pro란 무엇인가요?

ByteDance의 플래그십 Seedream 5.0 Pro로, 텍스트나 최대 10장의 참조 이미지로부터 선명한 1K·2K 이미지를 생성하는 통합 이미지 생성·편집 모델입니다.

어떤 해상도를 지원하나요?

1K(약 2MP)와 2K(약 4MP)로 생성하며 기본값은 2K입니다. 가격은 요청한 해상도에 따라 단계별로 책정됩니다.

Seedream 5 Lite와 어떻게 다른가요?

Pro는 선명한 1K/2K 출력, 다중 참조 워크플로, 정밀 편집, 강화된 다국어 텍스트 렌더링에 최적화된 플래그십 생성·편집 등급이며, Lite는 그중 일부를 속도와 저비용으로 맞바꾼 버전입니다.

참조 이미지는 몇 장까지 사용할 수 있나요?

한 번의 생성에서 최대 10장까지 단일·다중 참조 합성과 편집에 사용할 수 있습니다.

어디서 사용할 수 있나요?

Apiframe에서 단일 API, 비동기 작업, 웹훅으로 사용할 수 있습니다. Apiframe은 BytePlus ModelArk를 우선 사용하고 Replicate를 폴백으로 사용합니다.

아직 궁금한 점이 있으신가요?

Seedream 5.0 Pro API로 개발을 시작하세요

API 키를 받아 몇 분 만에 Seedream 5.0 Pro을(를) 통합하세요 — 사용한 만큼 지불.

무료 크레딧으로 시작
모든 모델을 위한 하나의 API
웹훅, SDK 및 멱등성
제공업체 계정 불필요

궁금하신 점이 있으신가요? Discord에 참여하거나 영업팀에 문의하세요.