Overview
This endpoint provides video2video(video to video, style re-drawing) functionality.
Authentication
This endpoint requires authentication using a Bearer token.
Your API key in the format: Bearer YOUR_API_KEY
Request Body
The model to use for the request
Request Example
curl -X POST "https://gptproto.com/runway/v1/pro/video2video" \
-H "Authorization: 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 request parameters",
"type": "invalid_request_error",
"code": "invalid_parameters"
}
}