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

Request Body

query
string
required

song input selected from the /musicsearch endpoint.

Response

response
string

Direct Cloudinary Video URL.

{
  "response": "https://res.cloudinary/downloadedvideo.mp4"
}