REST API to download .mp3
and .mp4
files.
Base URL endpoint https://youtube-download-api.matheusishiyama.repl.co
Video Info | Download .mp3 | Download .mp4
endpoint: BaseURL/info/?url=value
Query | Type | Description |
---|---|---|
url |
string | youtube url link |
Response:
{
"title": "Video title",
"thumbnail": "Video thumbnail url"
}
endpoint: BaseURL/mp3/?url=value
Query | Type | Description |
---|---|---|
url |
string | youtube url link |
Response:
<video-name>.mp3
file
endpoint: BaseURL/mp4/?url=value
Query | Type | Description |
---|---|---|
url |
string | youtube url link |
Response:
<video-name>.mp4
file
by Bravan