# Shrinkme Bypass — Zapi reference > Bypass shrinkme.click / shrinkme.io shortlink dan ekstrak URL destinasi dari metadata OG. **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/shrinkme - 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 --- ## Shrinkme Bypass **Category:** bypass-tools · **Slug:** `shrinkme` **Detail page:** https://zpi.web.id/api/bypass-tools/shrinkme Bypass shrinkme.click / shrinkme.io shortlink dan ekstrak URL destinasi dari metadata OG. **Tags:** bypass, shrinkme, shortener ### Resolve - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/bypass-tools:shrinkme/resolve` - **Cache TTL:** 3600s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `url` | string | query | yes | URL shrinkme.click atau shrinkme.io shortlink yang mau di-bypass | **cURL:** ```bash curl "https://api.zpi.web.id/v1/bypass-tools:shrinkme/resolve?url=https%3A%2F%2Fshrinkme.click%2Fanjahssjhdjdjawd" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/bypass-tools:shrinkme/resolve?url=https%3A%2F%2Fshrinkme.click%2Fanjahssjhdjdjawd", { 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:shrinkme/resolve?url=https%3A%2F%2Fshrinkme.click%2Fanjahssjhdjdjawd", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "finalUrl": "https://grok.com", "inputUrl": "https://shrinkme.click/anjahssjhdjdjawd", "scrapedAt": "2026-05-22T17:28:24.651Z", "shortCode": "anjahssjhdjdjawd", "shortDomain": "shrinkme.click", "destinationImage": "https://grok.com/icon-512x512.png", "destinationTitle": "Grok", "destinationDescription": "Grok is an AI assistant built by xAI. Chat, create images, write code, and get real-time answers from the web and X." } ``` --- _Generated: 2026-08-02T14:27:48.096Z_