# Sub2Unlock — Zapi reference > Resolves destination URLs from Sub2Unlock locked links and returns the final target URL. **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/sub2unlock - 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 --- ## Sub2Unlock **Category:** bypass-tools · **Slug:** `sub2unlock` **Detail page:** https://zpi.web.id/api/bypass-tools/sub2unlock Resolves destination URLs from Sub2Unlock locked links and returns the final target URL. **Tags:** bypass, shortener ### Bypass Sub2Unlock Takes a Sub2Unlock locked link and returns the final destination URL. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/bypass-tools:sub2unlock/bypass` - **Cache TTL:** 300s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `url` | string | query | yes | Subscribe-to-unlock locked link URL. | **cURL:** ```bash curl "https://api.zpi.web.id/v1/bypass-tools:sub2unlock/bypass?url=https%3A%2F%2Fsub2unlock.com%2FhYTuA" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/bypass-tools:sub2unlock/bypass?url=https%3A%2F%2Fsub2unlock.com%2FhYTuA", { 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:sub2unlock/bypass?url=https%3A%2F%2Fsub2unlock.com%2FhYTuA", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "ok": true, "tier": "direct", "sourceHost": "sub2unlock.com", "originalUrl": "https://sub2unlock.com/hYTuA", "destinationUrl": "https://www.roblox.com/games/914010731/Kuzen-Trainer-Ro-Ghoul-ALPHA?privateServerLinkCode=zYljAto6oYDtprfYLrfjoRPrcr6pedEB" } ``` --- _Generated: 2026-08-02T14:26:09.501Z_