# FuckingFast Downloader โ€” Zapi reference > Direct download URL dari fuckingfast.co โ€” mendukung input full URL / ID file. CDN link tanpa referer dan range request. **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/fuckingfast - 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 --- ## FuckingFast Downloader **Category:** downloader ยท **Slug:** `fuckingfast` **Detail page:** https://zpi.web.id/api/downloader/fuckingfast Direct download URL dari fuckingfast.co โ€” mendukung input full URL / ID file. CDN link tanpa referer dan range request. **Tags:** download, file, cdn ### Download - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/downloader:fuckingfast/download` - **Cache TTL:** 3600s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `url` | string | query | yes | fuckingfast.co file URL or bare file ID | **cURL:** ```bash curl "https://api.zpi.web.id/v1/downloader:fuckingfast/download?url=https%3A%2F%2Ffuckingfast.co%2Fwajys77edcwh" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/downloader:fuckingfast/download?url=https%3A%2F%2Ffuckingfast.co%2Fwajys77edcwh", { 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:fuckingfast/download?url=https%3A%2F%2Ffuckingfast.co%2Fwajys77edcwh", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "fileId": "ruh9kvhe7kl5", "fileName": "Farm_Manager_World_--_fitgirl-repacks.site_--_.part2.rar", "downloads": 281, "sizeBytes": 2147483648, "sizeHuman": "2.0GB", "viewerUrl": "https://fuckingfast.co/ruh9kvhe7kl5", "downloadUrl": "https://dl.fuckingfast.co/dl/jIIZPsnYfokMsiI3XTuImVUhREBQ72Uy6NgEYuZSvTtrteZFzXUEj44vWB9mpRLknA1UAvuZenOLOm67ZVw4sQ7lcwfJ7durqOc1PFEpr1qVnBMmYD1qt2jo_10f_L9SSonkD5kh4Jv0OhePwMeiIuAY6VIOP8tgDSOXyg" } ``` --- _Generated: 2026-08-02T14:28:27.388Z_