# MBoost — Zapi reference > Resolve an MBoost locked 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/mboost - 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 --- ## MBoost **Category:** bypass-tools · **Slug:** `mboost` **Detail page:** https://zpi.web.id/api/bypass-tools/mboost Resolve an MBoost locked link to its destination URL. **Tags:** link-locker, bypass, redirect ### Resolve Resolve an MBoost locked link to its destination URL. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/bypass-tools:mboost/resolve` - **Cache TTL:** 120s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `url` | string | query | yes | Link halaman unlock (host/). Handler ekstrak destination tanpa nyelesaiin step/captcha. | **cURL:** ```bash curl "https://api.zpi.web.id/v1/bypass-tools:mboost/resolve?url=https%3A%2F%2Fmboost.me%2Fabc" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/bypass-tools:mboost/resolve?url=https%3A%2F%2Fmboost.me%2Fabc", { 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:mboost/resolve?url=https%3A%2F%2Fmboost.me%2Fabc", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "ok": true, "tier": "t1", "steps": [ "Subscribe and turn on notifications", "Comment and like", "Browse this website" ], "views": 528, "pageid": "abc", "viaBrowser": false, "originalUrl": "https://mboost.me/abc", "stepsBypassed": 3, "destinationUrl": "https://pastebin.com/7ayMihLZ" } ``` --- _Generated: 2026-08-02T14:28:08.311Z_