Operation

Remix Sora 2 Video

Submit a legacy Sora 2 remix request for existing integrations that still use remix.

Operation: sora2.video.remix
Submit via POST /api/v1/requests
Credits: dynamic
Sora 2

Request fields

sora_video_idpromptmodeldurationaspect_ratioresolutionsource_video_url

Example request

{
  "operation": "sora2.video.remix",
  "input": {
    "sora_video_id": "video_abc123",
    "prompt": "Remix the source with a brighter editorial fashion-film treatment.",
    "model": "sora-2-pro",
    "duration": 12,
    "aspect_ratio": "9:16",
    "resolution": "1080p"
  }
}
curl -X POST https://www.cannonstudio.app/api/v1/requests \
  -H "Content-Type: application/json" \
  -H "x-api-key: $CANNON_API_KEY" \
  -H "x-idempotency-key: sora2-video-remix-001" \
  -d @- <<'JSON'
{
  "operation": "sora2.video.remix",
  "input": {
    "sora_video_id": "video_abc123",
    "prompt": "Remix the source with a brighter editorial fashion-film treatment.",
    "model": "sora-2-pro",
    "duration": 12,
    "aspect_ratio": "9:16",
    "resolution": "1080p"
  }
}
JSON

Notes

  • Legacy Sora remix support is kept for existing clients.
  • For new integrations, prefer `sora2.video.edit`.
  • Requires the native OpenAI `video_...` ID of the source Sora video.

Success output

{
  "task_id": "video_987",
  "asset_type": "video",
  "status": "succeeded",
  "video_url": "https://storage.googleapis.com/.../sora-remix.mp4",
  "provider": "sora2",
  "model": "sora2"
}