# Yasir252 Bypass — Zapi reference > Bypass Cloudflare managed challenge di yasir252.com — extract download box (title, files, password) + resolve link chain ke URL final (PixelDrain, GoogleDrive, Mediafire, GoFile, dll). **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/bypass-tools/yasir252 - Endpoint catalog: https://zpi.web.id/category/bypass-tools - Concise index: https://zpi.web.id/llms.txt - Full reference: https://zpi.web.id/llms-full.txt --- ## Yasir252 Bypass **Category:** bypass-tools · **Slug:** `yasir252` **Detail page:** https://zpi.web.id/api/bypass-tools/yasir252 Bypass Cloudflare managed challenge di yasir252.com — extract download box (title, files, password) + resolve link chain ke URL final (PixelDrain, GoogleDrive, Mediafire, GoFile, dll). **Tags:** cloudflare, downloader, yasir252 ### Resolve - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/bypass-tools:yasir252/resolve` - **Cache TTL:** 3600s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `url` | string | query | yes | URL halaman software yasir252. | | `resolveLinks` | boolean | query | no | Resolve final destination per link via 2-step POST chain. Default true → return full CDN URL per host. Implementasi pakai N parallel FS sessions (isolated PHPSESSID per session, race-free) — fit dalam public gateway timeout 30s. Set false untuk parse-only mode (~10s, return struktur tanpa URL). | **cURL:** ```bash curl "https://api.zpi.web.id/v1/bypass-tools:yasir252/resolve?url=https%3A%2F%2Fwww.yasir252.com%2Fsoftware%2Fdownload-adobe-premiere-pro-2025-full-version%2F&resolveLinks=true" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/bypass-tools:yasir252/resolve?url=https%3A%2F%2Fwww.yasir252.com%2Fsoftware%2Fdownload-adobe-premiere-pro-2025-full-version%2F&resolveLinks=true", { 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/bypass-tools:yasir252/resolve?url=https%3A%2F%2Fwww.yasir252.com%2Fsoftware%2Fdownload-adobe-premiere-pro-2025-full-version%2F&resolveLinks=true", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "boxes": [ { "files": [ { "fileName": "APPR2563win.rar", "fileSize": "3.4 GB" } ], "title": "Adobe Premiere Pro 2025 Free Download v25.6", "fileId": "46526", "groups": [ { "links": [ { "url": "https://pixeldrain.com/u/x8qUssd2", "host": "PixelDrain", "linkKey": "link1" }, { "url": "https://drive.google.com/drive/folders/1OAJZT9BjSw8p70HGDE_dQb09cGUR8BdE?usp=sharing", "host": "GoogleDrive", "linkKey": "link2" }, { "url": "https://www.yasir252.com/download/?url=fkgfast&q=cje41j2cqfcq&token=fa1babd0e297325c", "host": "FKFast", "linkKey": "link3" }, { "url": "https://www.yasir252.com/download/?url=vkgfile&q=Xsl0hELNTc&token=0d26ae02a0b80429", "host": "VKFile", "linkKey": "link4" } ], "title": "Installer v25.6" }, { "links": [ { "url": "https://pixeldrain.com/u/pDAtHXcy", "host": "PixelDrain", "linkKey": "link5" }, { "url": "https://www.yasir252.com/download/?url=mdfire&q=o6oyo9eavg9tccz&token=e7b6bc8a022211fb", "host": "Mediafire", "linkKey": "link6" }, { "url": "https://gofile.io/d/a3WfB4", "host": "GoFile", "linkKey": "link7" }, { "url": "https://drive.google.com/file/d/1AoTPhHjf4WNiAI3WwBi1N0bvKoYyd_Ae/view?usp=sharing", "host": "GoogleDrive", "linkKey": "link8" } ], "title": "Installer v25.4" }, { "links": [ { "url": "https://send.now/s/85RM/AdobeGenP", "host": "SendNow", "linkKey": "link9" }, { "url": "https://gofile.io/d/Kil5lB", "host": "GoFile", "linkKey": "link10" }, { "url": "https://www.yasir252.com/download/?url=fkgfast&q=r4xvbucrfmo5&token=eeaba56dec1f8d02&directory=true", "host": "FKFast", "linkKey": "link11" } ], "title": "Adobe GenP Patch" } ], "password": "www.yasir252.com" } ], "boxCount": 1, "inputUrl": "https://www.yasir252.com/software/download-adobe-premiere-pro-2025-full-version/", "scrapedAt": "2026-05-24T07:31:43.741Z", "totalLinks": 11, "resolveLinks": true, "resolvedLinks": 11 } ``` --- _Generated: 2026-08-02T14:30:28.551Z_