POST
/
v1
/
videos
/
{id}
/
remix
curl -X POST "https://www.anyfast.ai/v1/videos/video_abc123/remix" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "prompt": "Make the scene more detailed and refined",
    "size": "1280x720"
  }'

Remix Video (Sora)

Edit and remix an existing Sora-generated video using the OpenAI video format.

Endpoint

POST /v1/videos/{id}/remix

Path Parameters

ParameterTypeRequiredDescription
idstringYesThe original video task ID

Request Parameters

ParameterTypeRequiredDescription
promptstringYesNew prompt describing the desired changes
sizestringNoVideo size
curl -X POST "https://www.anyfast.ai/v1/videos/video_abc123/remix" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "prompt": "Make the scene more detailed and refined",
    "size": "1280x720"
  }'