Skip to main content
POST
/
v1
/
videos
/
video_68ed20580fd8819092c3e1779bab74300197d63c305fecf8
/
remix
sora-remix
curl --request POST \
  --url https://gptproto.com/v1/videos/video_68ed20580fd8819092c3e1779bab74300197d63c305fecf8/remix \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --data '{
  "prompt": "<string>"
}'
{
  "error": {
    "message": "Invalid request parameters",
    "type": "invalid_request_error",
    "code": "invalid_parameters"
  }
}

Overview

This endpoint provides sora-remix functionality.

Authentication

This endpoint requires authentication using a Bearer token.
Authorization
string
required
Your API key in the format: Bearer YOUR_API_KEY

Request Body

prompt
string
required
Prompt parameter

Request Example

curl -X POST "https://gptproto.com/v1/videos/video_68ed20580fd8819092c3e1779bab74300197d63c305fecf8/remix" \
  -H "Authorization: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "prompt": "Extend the scene with the cat taking a bow to the cheering audience"
}'

Response

Success
200
Successful response
{
  "status": "success"
}

Error Responses

{
  "error": {
    "message": "Invalid request parameters",
    "type": "invalid_request_error",
    "code": "invalid_parameters"
  }
}