# EZ4Short — Zapi reference > Resolve an EZ4Short short link to its final 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/ez4short - 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 --- ## EZ4Short **Category:** bypass-tools · **Slug:** `ez4short` **Detail page:** https://zpi.web.id/api/bypass-tools/ez4short Resolve an EZ4Short short link to its final destination URL. **Tags:** shortener, bypass, redirect ### Resolve Resolve an EZ4Short short link to its final destination URL. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/bypass-tools:ez4short/resolve` - **Cache TTL:** 120s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `url` | string | query | yes | Short link yang mau di-resolve, atau kode-nya langsung. | **cURL:** ```bash curl "https://api.zpi.web.id/v1/bypass-tools:ez4short/resolve?url=https%3A%2F%2Fez4short.com%2FPJjTK" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/bypass-tools:ez4short/resolve?url=https%3A%2F%2Fez4short.com%2FPJjTK", { 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:ez4short/resolve?url=https%3A%2F%2Fez4short.com%2FPJjTK", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "url": "https://game5s.com/onet-connect-animal/", "code": "PJjTK", "hops": 2, "inputUrl": "https://ez4short.com/PJjTK", "scrapedAt": "2026-06-20T02:11:47.312Z" } ``` --- _Generated: 2026-08-02T14:29:50.971Z_