CoolFace
Apppublic

technologys/grabit-api

sourceHugging Faceupdated 4mo agoView on Hugging Face
0likes
App README

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

MethodEndpointDescription
GET/api/healthServer status
GET/api/platformsSupported platforms list
POST/api/video-infoGet video metadata
POST/api/downloadStart download job
GET/api/download/:idPoll job status
GET/api/download-file/:idDownload the file

Usage

js
// 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" })
})