Seedance 1.0 Lite
ID:
bytedance/seedance-1-liteByteDance의 Seedance 1.0 Lite 영상 생성 API — 텍스트-투-비디오와 이미지-투-비디오를 지원하는 1080p 해상도의 합리적 가격 영상 생성 모델.
텍스트-투-비디오이미지-투-비디오가성비
개요
ByteDance의 Seedance 1.0 Lite 영상 생성 API — 텍스트-투-비디오와 이미지-투-비디오를 지원하는 1080p 해상도의 합리적 가격 영상 생성 모델.
인증
모든 API 요청은 Authorization 헤더에 Bearer 방식으로 유효한 API 키를 전달해야 합니다.
빠른 시작
인증 정보
RUNBASE_API_KEY 환경 변수를 설정하세요.
Shell
export RUNBASE_API_KEY=your-api-key실행 생성
Shell
curl -s https://runbase.net/api/v1/runs \
-H "Authorization: Bearer $RUNBASE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "bytedance/seedance-1-lite",
"input": {
"prompt": "A cinematic product photo of a ceramic lamp"
}
}'실행
실행은 비동기로 처리됩니다. 요청을 제출한 후 결과를 폴링하세요.
실행 생성
Shell
curl -s https://runbase.net/api/v1/runs \
-H "Authorization: Bearer $RUNBASE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "bytedance/seedance-1-lite",
"input": { "prompt": "A cinematic product photo of a ceramic lamp" }
}'실행 상태 조회
Shell
curl -s https://runbase.net/api/v1/runs/RUN_ID \
-H "Authorization: Bearer $RUNBASE_API_KEY"결과 조회
status가 "succeeded"가 될 때까지 상태 엔드포인트를 폴링한 후 응답에서 output.urls를 읽으세요.
입력 스키마
| 매개변수 | 유형 | 필수 | 설명 |
|---|---|---|---|
| prompt | string | 필수 | Prompt |
| aspect_ratio | string | 선택 | Aspect ratio옵션: 16:99:164:33:41:121:9 |
| resolution | string | 선택 | Resolution옵션: 480p720p1080p |
| duration | string | 선택 | Duration옵션: 510 |
| image_urls | string[] | 선택 | Source image |
출력 스키마
| 필드 | 유형 | 설명 |
|---|---|---|
| urls | string[] | 생성된 출력 URL |
오류
API는 표준 HTTP 상태 코드를 사용하여 성공 또는 실패를 나타냅니다.
| 상태 코드 | 설명 |
|---|---|
| 400 | Richiesta non valida - parametri mancanti o malformati |
| 401 | Autenticazione fallita - chiave API mancante o non valida |
| 402 | Crediti insufficienti |
| 403 | Accesso negato - IP non consentito o limite di spesa della chiave API superato |
| 404 | Esecuzione non trovata |
| 429 | Limite di frequenza superato |
| 500 | Errore interno del server |

