# Linkify — Zapi reference > Resolve a Linkify short/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/linkify - 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 --- ## Linkify **Category:** bypass-tools · **Slug:** `linkify` **Detail page:** https://zpi.web.id/api/bypass-tools/linkify Resolve a Linkify short/locked link to its destination URL. **Tags:** shortener, bypass, redirect ### Resolve Resolve a Linkify short/locked link to its destination URL. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/bypass-tools:linkify/resolve` - **Cache TTL:** 120s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `url` | string | query | yes | Short/locker link go.linkify.ru yang mau di-resolve, atau kode-nya langsung (mis. 28Mw). | **cURL:** ```bash curl "https://api.zpi.web.id/v1/bypass-tools:linkify/resolve?url=https%3A%2F%2Fgo.linkify.ru%2F28Mw" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/bypass-tools:linkify/resolve?url=https%3A%2F%2Fgo.linkify.ru%2F28Mw", { 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:linkify/resolve?url=https%3A%2F%2Fgo.linkify.ru%2F28Mw", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "ok": true, "code": "28Mw", "inputUrl": "https://go.linkify.ru/28Mw", "viaProxy": false, "linkTitle": "Brian Moser.mcpack — Яндекс Диск", "scrapedAt": "2026-06-20T02:12:46.372Z", "destinationUrl": "https://disk.yandex.ru/d/ySbilegSilCYAw" } ``` --- _Generated: 2026-08-02T14:23:47.804Z_