Overview
This endpoint provides video2video(video to video, style re-drawing) functionality.
Authentication
This endpoint requires authentication using a Bearer token.
Authorization
string
default:"sk-***********"
required
Your API key in the format: Bearer YOUR_API_KEY
Request Body
model
string
default:"runwayml-gen3a_turbo-5"
required
The model to use for the request
prompt
string
default:"pixel style"
required
Prompt parameter
Request Example
curl -X POST "https://gptproto.com/runway/v1/pro/video2video" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"video": "http://source.baidu.com/attachments/video/runway/20241117/28ed9d05e1dc84bede45541855500aa9.mp4",
"model": "runwayml-gen3a_turbo-5",
"prompt": "pixel style",
"options": {
"structure_transformation": 0.5,
"flip": true
}
}'
Response
Error Responses
{
"error": {
"message": "Invalid signature",
"type": "401"
}
}