Skip to content

MatheusIshiyama/youtube-download-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

youtube-download-api

NodeJs Api Status BaseUrl

REST API to download .mp3 and .mp4 files.

Base URL endpoint https://youtube-download-api.matheusishiyama.repl.co


Methods:

Video Info | Download .mp3 | Download .mp4


GET Video Info

endpoint: BaseURL/info/?url=value

Query Type Description
url string youtube url link

Response:

{
    "title": "Video title",
    "thumbnail": "Video thumbnail url"
}

GET Download mp3 file

endpoint: BaseURL/mp3/?url=value

Query Type Description
url string youtube url link

Response:

<video-name>.mp3 file


GET Download mp4 file

endpoint: BaseURL/mp4/?url=value

Query Type Description
url string youtube url link

Response:

<video-name>.mp4 file


by Bravan