Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"images": [],
"model": "sora-2",
"orientation": "portrait",
"prompt": "make animate",
"size": "large",
"duration": 15,
"watermark": false,
"private": true
}
Request Code Samples
curl --location '/v1/video/create' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"images": [],
"model": "sora-2",
"orientation": "portrait",
"prompt": "make animate",
"size": "large",
"duration": 15,
"watermark": false,
"private": true
}'
Responses
application/json
{
"id": "sora-2:task_01k9008rhbefnt3rb1g9szxdwr",
"status": "pending",
"status_update_time": 1762010621323
}
Modified at 2026-03-30 11:39:32