# Bitly Bypass — Zapi reference > Resolve bit.ly / bitly.is / j.mp / amzn.to short URLs ke destination aslinya. **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/bitly - 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 --- ## Bitly Bypass **Category:** bypass-tools · **Slug:** `bitly` **Detail page:** https://zpi.web.id/api/bypass-tools/bitly Resolve bit.ly / bitly.is / j.mp / amzn.to short URLs ke destination aslinya. **Tags:** bypass, shortener, bitly ### Resolve - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/bypass-tools:bitly/resolve` - **Cache TTL:** 3600s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `url` | string | query | yes | URL bit.ly/bitly.is/j.mp/amzn.to atau code aja | **cURL:** ```bash curl "https://api.zpi.web.id/v1/bypass-tools:bitly/resolve?url=https%3A%2F%2Fbit.ly%2F4nIf3hj" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/bypass-tools:bitly/resolve?url=https%3A%2F%2Fbit.ly%2F4nIf3hj", { 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:bitly/resolve?url=https%3A%2F%2Fbit.ly%2F4nIf3hj", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "inputUrl": "https://bit.ly/4nIf3hj", "shortCode": "4nIf3hj", "knownDomain": true, "resolvedVia": "redirect", "shortDomain": "bit.ly", "destinationUrl": "https://seeklogo.com/search?q=bitly" } ``` --- _Generated: 2026-08-02T14:22:59.101Z_