Skip to main content
POST
https://dashlyai.cc
/
v1
/
videos
/
{video_id}
/
remix
curl --request POST \
  --url https://dashlyai.cc/v1/videos/task_01K8SGYNNNVBQTXNR4MM964S7K/remix \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
    "model": "sora-2",
    "prompt": "Add a puppy playing in the scene",
    "size": "16:9",
    "duration": 15
  }'
{
  "id": "task_vid_remix_abc123",
  "object": "generation.task",
  "model": "sora-2",
  "status": "queued",
  "progress": 0,
  "created_at": 1703884800,
  "metadata": {}
}
  • Sora2 video remix feature
  • Supports secondary creation based on existing videos
  • Can modify video style, content, etc.
  • Async task management, query results by task ID

Authorizations

Authorization
string
required
All endpoints require Bearer Token authenticationGet your API Key from the API Key Management Page

Path Parameters

video_id
string
required
Original video task IDGet from the id field returned by video generation endpoint

Body

model
string
default:"sora-2"
required
Model nameSupported models:
  • sora-2 - Supports 10 or 15 seconds
  • sora-2-pro - Supports 15 seconds (HD) or 25 seconds
prompt
string
required
Remix instruction descriptionDetailed prompt describing how to modify the video
size
string
Video aspect ratioSupported formats:
  • 16:9 (landscape)
  • 9:16 (portrait)
  • 1:1 (square)
duration
integer
Video duration (seconds)
  • sora-2: supports 10, 15 seconds
  • sora-2-pro: supports 15, 25 seconds

Response

id
string
Unique task identifier for status queries
object
string
Object type, always generation.task
model
string
Model name used
status
string
Task status
  • queued - Queued for processing
  • in_progress - Processing
  • completed - Successfully completed
  • failed - Failed
progress
integer
Task progress percentage (0-100)
created_at
integer
Task creation timestamp (Unix timestamp)
metadata
object
Task metadata
curl --request POST \
  --url https://dashlyai.cc/v1/videos/task_01K8SGYNNNVBQTXNR4MM964S7K/remix \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
    "model": "sora-2",
    "prompt": "Add a puppy playing in the scene",
    "size": "16:9",
    "duration": 15
  }'
{
  "id": "task_vid_remix_abc123",
  "object": "generation.task",
  "model": "sora-2",
  "status": "queued",
  "progress": 0,
  "created_at": 1703884800,
  "metadata": {}
}