# Linkzy — Zapi reference > Resolve a Linkzy locked link to its destination 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/linkzy - 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 --- ## Linkzy **Category:** bypass-tools · **Slug:** `linkzy` **Detail page:** https://zpi.web.id/api/bypass-tools/linkzy Resolve a Linkzy locked link to its destination URL. **Tags:** link-locker, bypass, redirect ### Resolve Resolve a Linkzy locked link to its destination URL. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/bypass-tools:linkzy/resolve` - **Cache TTL:** 120s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `url` | string | query | yes | Unlock link locker (path /unlock/ atau /u/), atau kode-nya langsung. | **cURL:** ```bash curl "https://api.zpi.web.id/v1/bypass-tools:linkzy/resolve?url=https%3A%2F%2Flinkzy.space%2Funlock%2F81439f4a" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/bypass-tools:linkzy/resolve?url=https%3A%2F%2Flinkzy.space%2Funlock%2F81439f4a", { 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:linkzy/resolve?url=https%3A%2F%2Flinkzy.space%2Funlock%2F81439f4a", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "code": "81439f4a", "title": "Night Mystic Hub - Blox Fruits Script", "creator": "ScriptLix", "inputUrl": "https://linkzy.space/unlock/81439f4a", "viaProxy": false, "scrapedAt": "2026-06-20T02:12:48.028Z", "destinationUrl": "https://lootdest.org/s?QVip5Czw", "requiredActions": [ { "url": "https://www.youtube.com/@Jaiaca01", "action": "notifications", "platform": "youtube" }, { "url": "https://discord.gg/NETzYhAqMg", "action": "join_server", "platform": "discord" }, { "url": "https://youtu.be/E8Rbbo33GLg", "action": "like-comment", "platform": "youtube" } ] } ``` --- _Generated: 2026-08-02T14:25:51.395Z_