technologys/grabit-api
0
GrabIt Video Downloader API
A Node.js REST API for fetching video info and downloading from YouTube, Instagram, TikTok, and more platforms using yt-dlp.
API Endpoints
Usage
// Video info
fetch("https://YOUR-SPACE.hf.space/api/video-info", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ url: "https://youtube.com/watch?v=..." })
})
// Start download
fetch("https://YOUR-SPACE.hf.space/api/download", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ url: "...", format: "mp4", quality: "1080p" })
})