# Reddit Video Downloader — Zapi reference > Resolve Reddit post URLs to downloadable video files with audio merged. **Base URL:** `https://api.zpi.web.id` **Auth:** Send `x-api-key: YOUR_KEY` header on every request. Get a free key at https://zpi.web.id/dashboard/keys. **Response envelope:** `{ status, message, content }` **Rate limit:** 60 req/min on free tier. **Related:** - Detail page: https://zpi.web.id/api/downloader/redditsave - Endpoint catalog: https://zpi.web.id/category/downloader - Concise index: https://zpi.web.id/llms.txt - Full reference: https://zpi.web.id/llms-full.txt --- ## Reddit Video Downloader **Category:** downloader · **Slug:** `redditsave` **Detail page:** https://zpi.web.id/api/downloader/redditsave Resolve Reddit post URLs to downloadable video files with audio merged. **Tags:** downloader, video ### Download Return downloadable video and audio links for a Reddit post URL. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/downloader:redditsave/download` - **Cache TTL:** 300s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `url` | string | query | yes | URL post Reddit berisi video (v.redd.it). | **cURL:** ```bash curl "https://api.zpi.web.id/v1/downloader:redditsave/download?url=https%3A%2F%2Fwww.reddit.com%2Fr%2Ffunny%2Fcomments%2Fiakyuq%2Fwho_said_chivalry_is_dead%2F" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/downloader:redditsave/download?url=https%3A%2F%2Fwww.reddit.com%2Fr%2Ffunny%2Fcomments%2Fiakyuq%2Fwho_said_chivalry_is_dead%2F", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/downloader:redditsave/download?url=https%3A%2F%2Fwww.reddit.com%2Fr%2Ffunny%2Fcomments%2Fiakyuq%2Fwho_said_chivalry_is_dead%2F", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "ok": true, "audio": "https://v.redd.it/bc7l2gra4ah51/DASH_audio.mp4", "mediaId": "bc7l2gra4ah51", "variants": [ { "url": "https://v.redd.it/bc7l2gra4ah51/DASH_480.mp4", "quality": "480p" }, { "url": "https://v.redd.it/bc7l2gra4ah51/DASH_360.mp4", "quality": "360p" }, { "url": "https://v.redd.it/bc7l2gra4ah51/DASH_240.mp4", "quality": "240p" } ], "videoOnly": true, "originalUrl": "https://www.reddit.com/r/funny/comments/iakyuq/who_said_chivalry_is_dead/", "requiresMux": true } ``` --- _Generated: 2026-08-02T14:28:07.033Z_