Skip to main content
POST
/
v1
/
videos
/
{video_id}
/
remix
curl --request POST \
  --url https://toapis.com/v1/videos/video_abc123def456/remix \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
    "model": "grok-video-3",
    "prompt": "Add a puppy playing in the scene",
    "aspect_ratio": "16:9"
  }'
{
  "id": "video_remix_abc123",
  "object": "generation.task",
  "model": "grok-video-3",
  "status": "queued",
  "progress": 0,
  "created_at": 1768380224,
  "metadata": {}
}
  • Grok Video remix feature
  • Create variations based on existing videos
  • Async task management, query results via task ID

Path Parameters

video_id
string
required
Original video task IDThis is the task ID returned from a previous video generation request

Authorizations

Authorization
string
required
All API requests require Bearer Token authenticationGet API Key: Visit the API Key Management Page to obtain your API KeyAdd to request headers:
Authorization: Bearer YOUR_API_KEY

Body

model
string
default:"grok-video-3"
required
Video remix model nameExample: "grok-video-3"
prompt
string
required
Remix instruction description
size
string
Video size
aspect_ratio
string
Video aspect ratioSupported formats:
  • 16:9 - Landscape
  • 9:16 - Portrait

Response

id
string
Unique task identifier for querying task status
object
string
Object type, always generation.task
model
string
Model name used
status
string
Task status
  • queued - Waiting to be processed
  • 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://toapis.com/v1/videos/video_abc123def456/remix \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
    "model": "grok-video-3",
    "prompt": "Add a puppy playing in the scene",
    "aspect_ratio": "16:9"
  }'
{
  "id": "video_remix_abc123",
  "object": "generation.task",
  "model": "grok-video-3",
  "status": "queued",
  "progress": 0,
  "created_at": 1768380224,
  "metadata": {}
}