# GZenX — Zapi reference > Resolve a GZenX script page to its title + loadstring payload. **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/gzenx - 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 --- ## GZenX **Category:** bypass-tools · **Slug:** `gzenx` **Detail page:** https://zpi.web.id/api/bypass-tools/gzenx Resolve a GZenX script page to its title + loadstring payload. **Tags:** paste, script, roblox ### GZenX Resolve a GZenX script page to its title + loadstring payload. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/bypass-tools:gzenx/resolve` - **Cache TTL:** 600s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `url` | string | query | yes | Full page URL (article atau script page), atau slug-nya langsung. | **cURL:** ```bash curl "https://api.zpi.web.id/v1/bypass-tools:gzenx/resolve?url=https%3A%2F%2Fwww.gzenx.com%2Fsubpages%2Fezfb7qll.php" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/bypass-tools:gzenx/resolve?url=https%3A%2F%2Fwww.gzenx.com%2Fsubpages%2Fezfb7qll.php", { 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:gzenx/resolve?url=https%3A%2F%2Fwww.gzenx.com%2Fsubpages%2Fezfb7qll.php", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "url": "https://www.gzenx.com/subpages/p36yy966.php", "title": "*NEW* Weak Legacy 2 Script (PASTEBIN 2025) (AUTO FARM , AUTO LEVEL , AUTO ATTACK)", "script": "loadstring(game:HttpGet(\"https://raw.githubusercontent.com/Omgshit/Scripts/main/MainLoader.lua\"))()", "scrapedAt": "2026-06-20T10:13:17.161Z", "usedFlare": false } ``` --- _Generated: 2026-08-02T14:27:44.604Z_