POST
v1
/
convert2mp3
Convert To MP3
curl --request POST \
  --url http://localhost:9000/api/v1/convert2mp3 \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: multipart/form-data' \
  --form 'url=<string>'
{
  "response": "https://res.cloudinary/downloadedvideo.mp3"
}

Request Body

file
file
input audio or video vile
url
string
Url to the video or audio specified. Either this or the file is required.

Response

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