# Script Pastebins — Zapi reference > Resolve a Script Pastebins post to its title + script 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/scriptpastebins - 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 --- ## Script Pastebins **Category:** bypass-tools · **Slug:** `scriptpastebins` **Detail page:** https://zpi.web.id/api/bypass-tools/scriptpastebins Resolve a Script Pastebins post to its title + script payload. **Tags:** paste, script, roblox ### Resolve Paste Resolve a Script Pastebins post to its title + script payload. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/bypass-tools:scriptpastebins/resolve` - **Cache TTL:** 600s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `url` | string | query | yes | Full paste URL, atau slug-nya langsung, atau post id (angka). | **cURL:** ```bash curl "https://api.zpi.web.id/v1/bypass-tools:scriptpastebins/resolve?url=https%3A%2F%2Fscriptpastebins.com%2Fdum-hub-blox-fruits%2F" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/bypass-tools:scriptpastebins/resolve?url=https%3A%2F%2Fscriptpastebins.com%2Fdum-hub-blox-fruits%2F", { 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:scriptpastebins/resolve?url=https%3A%2F%2Fscriptpastebins.com%2Fdum-hub-blox-fruits%2F", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "id": 4838, "url": "https://scriptpastebins.com/dum-hub-blox-fruits/", "slug": "dum-hub-blox-fruits", "title": "Dum Hub – Blox Fruits", "script": "loadstring(game:HttpGet(\"https://raw.githubusercontent.com/DumHubdz/DumHubdzVN/refs/heads/main/DumHubdzVN.lua\"))()", "scrapedAt": "2026-06-20T02:10:34.648Z", "usedFlare": false } ``` --- _Generated: 2026-08-02T14:24:16.234Z_