# Blox-Script Key — Zapi reference > Resolve a Blox-Script key-gate to its issued key. **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/blox-script - 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 --- ## Blox-Script Key **Category:** bypass-tools · **Slug:** `blox-script` **Detail page:** https://zpi.web.id/api/bypass-tools/blox-script Resolve a Blox-Script key-gate to its issued key. **Tags:** key-system, roblox, bypass ### Resolve Resolve a Blox-Script key-gate to its issued key. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/bypass-tools:blox-script/resolve` **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `url` | string | query | no | Gate / get-key page URL. Optional — the key is minted server-side regardless of the marker, so this is informational only. | **cURL:** ```bash curl "https://api.zpi.web.id/v1/bypass-tools:blox-script/resolve?url=https%3A%2F%2Fboblox-script.com%2Fget-key%3Fc%3DAfajy%26hash%3DKf93jD0sLpQ2mZx7Bv4Nc8Tr1Yh6Ge5Wd0Su9Aj3Pk2Lq7Mn4Xz8Cb1Rv6Hy" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/bypass-tools:blox-script/resolve?url=https%3A%2F%2Fboblox-script.com%2Fget-key%3Fc%3DAfajy%26hash%3DKf93jD0sLpQ2mZx7Bv4Nc8Tr1Yh6Ge5Wd0Su9Aj3Pk2Lq7Mn4Xz8Cb1Rv6Hy", { 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:blox-script/resolve?url=https%3A%2F%2Fboblox-script.com%2Fget-key%3Fc%3DAfajy%26hash%3DKf93jD0sLpQ2mZx7Bv4Nc8Tr1Yh6Ge5Wd0Su9Aj3Pk2Lq7Mn4Xz8Cb1Rv6Hy", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "key": "hykf6zq5wq418ucg7w90yj", "tier": "direct", "message": "Key Generated Successfully", "inputUrl": "https://boblox-script.com/get-key?c=Afajy&hash=Kf93jD0sLpQ2mZx7Bv4Nc8Tr1Yh6Ge5Wd0Su9Aj3Pk2Lq7Mn4Xz8Cb1Rv6Hy", "viaBrowser": false, "expiresInHours": 4 } ``` --- _Generated: 2026-08-02T14:22:59.383Z_