# Link2Unlock Bypass โ€” Zapi reference > Bypass link2unlock.com locker โ€” skip semua social tasks dan langsung dapat URL tujuan. **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/link2unlock - 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 --- ## Link2Unlock Bypass **Category:** bypass-tools ยท **Slug:** `link2unlock` **Detail page:** https://zpi.web.id/api/bypass-tools/link2unlock Bypass link2unlock.com locker โ€” skip semua social tasks dan langsung dapat URL tujuan. **Tags:** bypass.link2unlock, link ### Resolve - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/bypass-tools:link2unlock/resolve` - **Cache TTL:** 3600s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `url` | string | query | yes | URL link2unlock yang mau di-bypass | **cURL:** ```bash curl "https://api.zpi.web.id/v1/bypass-tools:link2unlock/resolve?url=https%3A%2F%2Flink2unlock.com%2Fefb8f" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/bypass-tools:link2unlock/resolve?url=https%3A%2F%2Flink2unlock.com%2Fefb8f", { 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:link2unlock/resolve?url=https%3A%2F%2Flink2unlock.com%2Fefb8f", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "name": "Anjay Test", "note": "testt ajaj", "alias": "efb8f", "linkId": 66834, "unlocks": [ { "url": "https://www.youtube.com/shorts/5mlltpmKJL4", "name": "Downlonhhh niehhh" } ], "inputUrl": "https://link2unlock.com/efb8f", "scrapedAt": "2026-05-22T17:09:45.206Z", "primaryUrl": "https://www.youtube.com/shorts/5mlltpmKJL4", "skippedTasks": [ { "icon": "/icons/youtube.svg", "social": "youtube", "message": "Subscribe", "actionUrl": "https://www.youtube.com/shorts/5mlltpmKJL4" }, { "icon": "/icons/like.svg", "social": "like", "message": "Like Video", "actionUrl": "https://www.youtube.com/shorts/5mlltpmKJL4" }, { "icon": "/icons/instagram.svg", "social": "instagram", "message": "Follow Instagram", "actionUrl": "https://www.instagram.com/shorts/5mlltpmKJL4" } ] } ``` --- _Generated: 2026-08-02T14:26:18.747Z_