v1
latestOpenAPI 3.0.1MIT2026-07-2638658.5 KBVideo
Generate Video from Product
Create a video from product information with customizable visual style, avatar, voice, and script. This is the final step after creating a product to generate the actual video.
post/v2/create_video_from_product
Request body
Example request
{
"product_id": "NTIzMzc0NjI5",
"visual_style": "Simple Product Switch",
"video_spec": {
"aspect_ratio": "landscape",
"length": "30",
"caption": true,
"name": "My Product Video"
},
"avatar": {
"id": 1
},
"voice": {
"id": "en-US-ChristopherNeural"
},
"audio": {
"music_id": 13
},
"script": {
"style": "Storytime",
"language": "english"
},
"webhook_url": "https://example.com/webhook"
}Response
Success
Example response
{
"msg": "Success",
"data": {
"video_id": "video_789",
"status": "processing"
}
}