# Paste-Drop — Zapi reference > Fetch a public Paste-Drop paste content + metadata by URL or slug. **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/paste-drop - 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 --- ## Paste-Drop **Category:** bypass-tools · **Slug:** `paste-drop` **Detail page:** https://zpi.web.id/api/bypass-tools/paste-drop Fetch a public Paste-Drop paste content + metadata by URL or slug. **Tags:** paste, script, text ### Get Paste Fetch a public Paste-Drop paste content + metadata by URL or slug. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/bypass-tools:paste-drop/get` - **Cache TTL:** 600s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `url` | string | query | yes | URL paste publik atau slug-nya langsung (mis. `AdoptMeScript2024`). | **cURL:** ```bash curl "https://api.zpi.web.id/v1/bypass-tools:paste-drop/get?url=AdoptMeScript2024" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/bypass-tools:paste-drop/get?url=AdoptMeScript2024", { 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:paste-drop/get?url=AdoptMeScript2024", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "id": 43090, "url": "https://paste-drop.com/AdoptMeScript2024", "slug": "AdoptMeScript2024", "tags": "[\"Adopt Me Script\",\"Adopt Me Trade Scam Script\",\"Adopt Me Freeze Trade Script\",\"Adopt Me Auto Farm Script\",\"Adopt Me Auto Farm Pet Script\",\"Adopt Me Pet Spawner Script\",\"Adopt Me Roblox Script\",\"Adopt Me Infinite Bucks Script\",\"Adopt Me Script 2024\",\"Adopt Me Remove Pet On Second Trade Script\"]", "title": "Adopt Me Script 2024", "views": 5594, "author": { "name": "Adopt Me Script 2024", "username": "adoptmescript2024" }, "content": "--discord.gg/ShKtjJWvr2\n\nloadstring(game:HttpGet(\"https://raw.githubusercontent.com/XScriptsOfficial/AdoptMe/main/Scripts\"))()", "allowRaw": true, "createdAt": "2024-08-19 02:46", "scrapedAt": "2026-06-20T10:12:04.567Z", "updatedAt": "2024-09-04T13:53:12.000000Z", "videoEmbed": "https://www.youtube.com/embed/-I4s3erCY9k", "isProtected": false } ``` --- _Generated: 2026-08-02T14:23:17.014Z_