# Paster.so — Zapi reference > Fetch a public Paster.so paste content by URL or id. **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/paster-so - 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 --- ## Paster.so **Category:** bypass-tools · **Slug:** `paster-so` **Detail page:** https://zpi.web.id/api/bypass-tools/paster-so Fetch a public Paster.so paste content by URL or id. **Tags:** paste, code, text ### Get Paste Fetch a public Paster.so paste content by URL or id. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/bypass-tools:paster-so/get` - **Cache TTL:** 600s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `url` | string | query | yes | URL paste publik atau id-nya langsung (mis. `dHSLD`). | **cURL:** ```bash curl "https://api.zpi.web.id/v1/bypass-tools:paster-so/get?url=https%3A%2F%2Fpaster.so%2FdHSLD" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/bypass-tools:paster-so/get?url=https%3A%2F%2Fpaster.so%2FdHSLD", { 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:paster-so/get?url=https%3A%2F%2Fpaster.so%2FdHSLD", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "id": "dHSLD", "url": "https://paster.so/dHSLD", "title": "STW 130", "content": "🔞STW 130\nMega Link⤵️⤵️🔥🔥\nhttps://link-target.net/621465/stw-130\nJoin Channel Telegram⤵️⤵️🔥🔥\nhttps://t.me/+48RUbyitwQQyZmM1\nBackup Channel Telegram⤵️⤵️🔥🔥\nhttps://t.me/Big_A55Collection2", "scrapedAt": "2026-06-20T10:12:07.565Z", "contentHtml": "

🔞STW 130

Mega Link⤵️⤵️🔥🔥

https://link-target.net/621465/stw-130

Join Channel Telegram⤵️⤵️🔥🔥

https://t.me/+48RUbyitwQQyZmM1

Backup Channel Telegram⤵️⤵️🔥🔥

https://t.me/Big_A55Collection2

" } ``` --- _Generated: 2026-08-02T14:26:10.931Z_