# tpi.li — Zapi reference > Resolve a tpi.li (ShrinkEarn) short 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/tpi-li - 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 --- ## tpi.li **Category:** bypass-tools · **Slug:** `tpi-li` **Detail page:** https://zpi.web.id/api/bypass-tools/tpi-li Resolve a tpi.li (ShrinkEarn) short link to its destination URL. **Tags:** shortener, bypass, redirect ### Resolve Resolve a tpi.li (ShrinkEarn) short link to its destination URL. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/bypass-tools:tpi-li/resolve` - **Cache TTL:** 120s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `url` | string | query | yes | URL short link (tpi.li / oil.la / tii.la / oei.la / iir.la / tvi.la / oii.la / lnbz.la). Host auto-detect. | **cURL:** ```bash curl "https://api.zpi.web.id/v1/bypass-tools:tpi-li/resolve?url=https%3A%2F%2Ftpi.li%2Fgo" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/bypass-tools:tpi-li/resolve?url=https%3A%2F%2Ftpi.li%2Fgo", { 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:tpi-li/resolve?url=https%3A%2F%2Ftpi.li%2Fgo", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "ok": true, "usedFlare": true, "sourceHost": "tpi.li", "originalUrl": "https://tpi.li/go", "destinationUrl": "https://bysedikamoum.com/download/rr5myi289ywu" } ``` --- _Generated: 2026-08-02T14:29:48.145Z_