# Sub4Unlock Bypass โ€” Zapi reference > Bypass sub4unlock.co shortlink โ€” ambil URL tujuan tanpa harus subscribe/like. **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/sub4unlock - 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 --- ## Sub4Unlock Bypass **Category:** bypass-tools ยท **Slug:** `sub4unlock` **Detail page:** https://zpi.web.id/api/bypass-tools/sub4unlock Bypass sub4unlock.co shortlink โ€” ambil URL tujuan tanpa harus subscribe/like. **Tags:** bypass, sub4unclock, subscribe ### Resolve - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/bypass-tools:sub4unlock/resolve` - **Cache TTL:** 3600s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `url` | string | query | yes | URL sub4unlock.co/ yang mau di-bypass | | `confirmUnlock` | boolean | query | no | Kirim konfirmasi unlock ke server. Default true. false = skip confirm, ambil langsung dari payload (lebih cepat) | **cURL:** ```bash curl "https://api.zpi.web.id/v1/bypass-tools:sub4unlock/resolve?url=https%3A%2F%2Fsub4unlock.co%2FI9zoNVN&confirmUnlock=true" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/bypass-tools:sub4unlock/resolve?url=https%3A%2F%2Fsub4unlock.co%2FI9zoNVN&confirmUnlock=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:sub4unlock/resolve?url=https%3A%2F%2Fsub4unlock.co%2FI9zoNVN&confirmUnlock=true", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "alias": "I9zoNVN", "linkId": 84976, "finalUrl": "https://google.com", "inputUrl": "https://sub4unlock.co/I9zoNVN", "confirmed": true, "scrapedAt": "2026-05-22T17:36:23.421Z", "skippedActions": [ { "icon": "youtube", "type": "Subscribe on Youtube", "actionUrl": "https://www.youtube.com/watch?v=6_YMnm5JFGc&list=RD6_YMnm5JFGc&start_radio=1" }, { "icon": "youtube", "type": "Like & Subscribe on Youtube", "actionUrl": "https://www.youtube.com/anjay" }, { "icon": "youtube", "type": "Like & Comment on Video", "actionUrl": "https://www.youtube.com/watch?v=6_YMnm5JFGc&list=RD6_YMnm5JFGc&start_radio=1" } ] } ``` --- _Generated: 2026-08-02T14:26:09.506Z_