HomeAPI DocsContactAbout
Theme
Developer API

API Documentation

Two endpoints โ€” MP3 audio and MP4 video with quality selection. Simple GET, JSON response.

Base URL
https://ytdl.adeelbaloch.dev
Audio โ€” GET /api/download?ytmp3=
YouTube to MP3
GET https://ytdl.adeelbaloch.dev/api/download?ytmp3=https://youtu.be/dQw4w9WgXcQ
{
  "status": "success", "type": "audio",
  "title": "Rick Astley - Never Gonna Give You Up",
  "thumbnail_url": "https://i.ytimg.com/vi/dQw4w9WgXcQ/maxresdefault.jpg",
  "audio_download_url": "https://ytdl.adeelbaloch.dev/stream?id=dQw4w9WgXcQ&format=mp3&key=...",
  "creator": {"name": "Adeel Baloch", "telegram": "sigmadev0"}
}
Video โ€” GET /api/download?ytmp4=
YouTube to MP4
GET https://ytdl.adeelbaloch.dev/api/download?ytmp4=https://youtu.be/dQw4w9WgXcQ
{
  "status": "success", "type": "video",
  "title": "Rick Astley - Never Gonna Give You Up",
  "thumbnail_url": "https://i.ytimg.com/vi/dQw4w9WgXcQ/maxresdefault.jpg",
  "audio_download_url": "https://ytdl.adeelbaloch.dev/stream?id=...&format=mp3&key=...",
  "qualities": {
    "144": "https://ytdl.adeelbaloch.dev/stream/video?id=...&format=144&key=...",
    "240": "https://ytdl.adeelbaloch.dev/stream/video?id=...&format=240&key=...",
    "360": "https://ytdl.adeelbaloch.dev/stream/video?id=...&format=360&key=...",
    "480": "https://ytdl.adeelbaloch.dev/stream/video?id=...&format=480&key=...",
    "720": "https://ytdl.adeelbaloch.dev/stream/video?id=...&format=720&key=..."
  },
  "creator": {"name": "Adeel Baloch", "telegram": "sigmadev0"}
}
Try It Live