POST
v1
/
downloadvideo
Video Downloader
curl --request POST \
  --url http://localhost:9000/api/v1/downloadvideo \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "url": "<string>",
  "resolution": "<string>"
}'
{
  "response": "https://res.cloudinary/downloadedvideo.mp4"
}

Request Body

url
string
required
Url to the video specified
resolution
string
This only applies for youtube videos with specified resolution of 1080p, 720p, 480p, 360p, 240p.

Response

response
string
Direct Cloudinary Video URL.
{
  "response": "https://res.cloudinary/downloadedvideo.mp4"
}