# SocialWolvez — Zapi reference > Resolve a SocialWolvez social-gate 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/socialwolvez - 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 --- ## SocialWolvez **Category:** bypass-tools · **Slug:** `socialwolvez` **Detail page:** https://zpi.web.id/api/bypass-tools/socialwolvez Resolve a SocialWolvez social-gate link to its destination URL. **Tags:** link-locker, social, bypass ### Resolve link Resolve a SocialWolvez social-gate link to its destination URL. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/bypass-tools:socialwolvez/resolve` - **Cache TTL:** 120s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `url` | string | query | yes | Short link locker (.../l/) atau kode-nya saja | **cURL:** ```bash curl "https://api.zpi.web.id/v1/bypass-tools:socialwolvez/resolve?url=https%3A%2F%2Fsocialwolvez.com%2Fapp%2Fl%2F81439f4a" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/bypass-tools:socialwolvez/resolve?url=https%3A%2F%2Fsocialwolvez.com%2Fapp%2Fl%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:socialwolvez/resolve?url=https%3A%2F%2Fsocialwolvez.com%2Fapp%2Fl%2F81439f4a", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "title": "Night Mystic Hub - Blox Fruits Script", "finalUrl": "https://lootdest.org/s?QVip5Czw", "inputUrl": "https://socialwolvez.com/app/l/81439f4a", "subtitle": "DO WHAT IT ASK TO GET THE SCRIPT", "shortCode": "81439f4a", "taskCount": 3, "viaBrowser": false } ``` --- _Generated: 2026-08-02T14:28:48.708Z_