v1
latestOpenAPI 3.0.1MIT2026-07-2638658.5 KBVideo
Submit Preview List
Submit multiple visual styles for preview generation from a product. This allows you to generate multiple preview videos with different styles simultaneously.
post/v2/create_video_from_product/preview_list
Request body
Example request
{
"product_id": "NTIzMzc0NjI5",
"visual_styles": [
"Simple Product Switch",
"Dynamic Showcase"
],
"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": {
"previews": [
{
"visual_style": "Simple Product Switch",
"preview_id": "preview_456",
"err_msg": "Generation failed due to invalid parameters"
}
]
}
}