POST
/
v1
/
videos
/
{videoId}
/
edit
curl -X POST https://api.example.com/v1/videos/video_123456/edit \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "prompt": "Add slow motion effect"
  }'
Edit a Sora generated video.

Path Parameters

videoId
string
required
Video ID.

Request Parameters

prompt
string
required
Edit instruction.
curl -X POST https://api.example.com/v1/videos/video_123456/edit \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "prompt": "Add slow motion effect"
  }'