# Pixeldrain Downloader โ€” Zapi reference > Pixeldrain file info & downloader โ€” retrieve metadata, direct download link, and availability status from any public Pixeldrain file. **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/pixeldrain - 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 --- ## Pixeldrain Downloader **Category:** downloader ยท **Slug:** `pixeldrain` **Detail page:** https://zpi.web.id/api/downloader/pixeldrain Pixeldrain file info & downloader โ€” retrieve metadata, direct download link, and availability status from any public Pixeldrain file. **Tags:** downloader, file, storage ### Download - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/downloader:pixeldrain/download` - **Cache TTL:** 360s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `url` | string | query | yes | URL halaman Pixeldrain (/u/) atau ID file saja (mis. 5UZcgpfV) | **cURL:** ```bash curl "https://api.zpi.web.id/v1/downloader:pixeldrain/download?url=https%3A%2F%2Fpixeldrain.com%2Fu%2F5UZcgpfV" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/downloader:pixeldrain/download?url=https%3A%2F%2Fpixeldrain.com%2Fu%2F5UZcgpfV", { 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:pixeldrain/download?url=https%3A%2F%2Fpixeldrain.com%2Fu%2F5UZcgpfV", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "views": 452, "fileId": "5UZcgpfV", "sha256": "d004d510c52de2389e515eb4e3b96cfdb90c006b0af53c7e22b773b7e9f771b7", "showAds": true, "fileName": "APPR2622win-yasir252.rar", "mimeType": "application/x-rar-compressed", "abuseType": "", "downloads": 553, "sizeBytes": 4419530686, "sizeHuman": "4.12 GB", "viewerUrl": "https://pixeldrain.com/u/5UZcgpfV", "uploadedAt": "2026-05-10T17:38:00.677Z", "canDownload": true, "downloadUrl": "https://pixeldrain.com/api/file/5UZcgpfV?download", "lastViewedAt": "2026-06-20T12:53:32.79Z", "thumbnailUrl": "https://pixeldrain.com/file/5UZcgpfV/thumbnail", "abuseReporter": "", "bandwidthUsed": 1682540608132, "deleteAfterDate": "0001-01-01T00:00:00Z", "allowVideoPlayer": true, "downloadSpeedLimit": 0, "deleteAfterDownloads": 0 } ``` --- _Generated: 2026-08-02T14:30:15.412Z_