# Linkvertise — Zapi reference > Resolve a Linkvertise locked link (and link-to.net/link-hub.net family) 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/linkvertise - 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 --- ## Linkvertise **Category:** bypass-tools · **Slug:** `linkvertise` **Detail page:** https://zpi.web.id/api/bypass-tools/linkvertise Resolve a Linkvertise locked link (and link-to.net/link-hub.net family) to its destination URL. **Tags:** link-locker, bypass, linkvertise ### Resolve Resolve a Linkvertise locked link (and link-to.net/link-hub.net family) to its destination URL. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/bypass-tools:linkvertise/resolve` **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `url` | string | query | yes | Locked short link yang mau di-resolve (linkvertise.com / link-to.net / link-hub.net / link-target.org / link-target.net / link-center.net / direct-link.net), atau bare `/`. | **cURL:** ```bash curl "https://api.zpi.web.id/v1/bypass-tools:linkvertise/resolve?url=https%3A%2F%2Flinkvertise.com%2F119714%2FEzHub" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/bypass-tools:linkvertise/resolve?url=https%3A%2F%2Flinkvertise.com%2F119714%2FEzHub", { 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:linkvertise/resolve?url=https%3A%2F%2Flinkvertise.com%2F119714%2FEzHub", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "url": "http://www.mediafire.com/file/zz5s5rb82c8v4vy/EZ+Hub.txt/file", "slug": "EzHub", "userId": "119714", "inputUrl": "https://linkvertise.com/119714/EzHub", "scrapedAt": "2026-06-20T02:10:56.807Z", "viaBrowser": true } ``` --- _Generated: 2026-08-02T14:26:11.930Z_