Documentation
Endpoint: Download YouTube Video
- URL:
https://api.i-as.dev/api/downloader/youtube
- Method: POST
- Description: Downloads a YouTube video by providing the video URL.
Request Body:
{
"url": "url_youtube_watch"
}
- Parameters:
url
: The YouTube video URL you wish to download.
Response Example:
{
"Status": "Success!",
"StatusCode": 200,
"video": {
"Best": "url",
"Medium": "url"
},
"Audio": "url",
"Thumbnail": "url"
}
- Fields:
Status
: Status of the request (e.g., "Success!").
StatusCode
: HTTP status code (e.g., 200).
video
: Links to the video in different qualities:
Best
: URL for the highest quality video.
Medium
: URL for the medium quality video.
Audio
: URL for downloading the audio track.
Thumbnail
: URL for the video's thumbnail.