seedance2.0-fast
seedance2.0-fast
VidéoByteDanceSeedance 2.0-fastseedance2.0-fast
字节跳动最新一代视频模型
Authentification
- Base URL
https://api.dreamtoai.com- Authorization
Authorization: Bearer YOUR_API_KEY- Content-Type
application/json- Nom du modèle (model)
seedance2.0-fast
Protocole d'intégration
Pourquoi choisir ce protocole
适合需要提交任务并轮询状态的图像、视频、音频生成工作流。
URL de l'endpoint
POST/v1/jobs
Authorization: Bearer YOUR_API_KEYContent-Type: application/jsonJSON de requête et de réponse
Requête
{
"model": "seedance2.0-fast",
"input": {
"prompt": "电影感街头运镜,一辆跑车穿过雨夜霓虹街道",
"first_frame_url": "https://example.com/first.png",
"last_frame_url": "https://example.com/last.png",
"reference_image_urls": [
"https://example.com/ref.png"
],
"reference_video_urls": [
"https://example.com/ref.mp4"
],
"resolution": "720p",
"duration": 5,
"aspect_ratio": "16:9",
"seed": 12345,
"callback_url": "https://example.com/webhook",
"channel": "byte2.0"
}
}Réponse
{
"id": "job_example",
"object": "job",
"status": "processing",
"model": "seedance2.0-fast",
"created": 1710000000,
"request_id": "req_example"
}Champs de requête et de réponse
Champs de requête
| Champ | Type | Obligatoire |
|---|---|---|
| prompt | string | Y |
| first_frame_url | image | N |
| last_frame_url | image | N |
| reference_image_urls | array | N |
| reference_video_urls | array | N |
| resolution | enum | N |
| duration | number | N |
| aspect_ratio | enum | N |
| seed | integer | N |
| callback_url | string | N |
| channel | string | N |
Champs de réponse
| Champ | Type | Obligatoire |
|---|---|---|
| output.task_id | string | N |
| output.status | string | N |
| output.videos[] | video | N |
Exemples de code
cURLrequest.sh
curl -X POST "https://api.dreamtoai.com/v1/jobs" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"model": "seedance2.0-fast",
"input": {
"prompt": "电影感街头运镜,一辆跑车穿过雨夜霓虹街道",
"first_frame_url": "https://example.com/first.png",
"last_frame_url": "https://example.com/last.png",
"reference_image_urls": [
"https://example.com/ref.png"
],
"reference_video_urls": [
"https://example.com/ref.mp4"
],
"resolution": "720p",
"duration": 5,
"aspect_ratio": "16:9",
"seed": 12345,
"callback_url": "https://example.com/webhook",
"channel": "byte2.0"
}
}'
# cURL pour téléverser le fichier de référence
curl -X POST "https://api.dreamtoai.com/v1/files/upload" \
-H "Authorization: Bearer YOUR_API_KEY" \
-F "kind=video" \
-F "purpose=reference" \
-F "[email protected]"
# cURL pour interroger le statut
# Remplacez job_example par le task_id renvoyé par la réponse d'envoi.
curl -X GET "https://api.dreamtoai.com/v1/jobs/job_example" \
-H "Authorization: Bearer YOUR_API_KEY"