# Tempel.in Bypass โ€” Zapi reference > Baca isi paste dari tempel.in โ€” title, content, author, dan views. **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/tempel-in - 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 --- ## Tempel.in Bypass **Category:** bypass-tools ยท **Slug:** `tempel-in` **Detail page:** https://zpi.web.id/api/bypass-tools/tempel-in Baca isi paste dari tempel.in โ€” title, content, author, dan views. **Tags:** bypass, tempel.in, text ### Resolve - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/bypass-tools:tempel-in/resolve` - **Cache TTL:** 3600s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `url` | string | query | yes | URL atau slug paste tempel.in | **cURL:** ```bash curl "https://api.zpi.web.id/v1/bypass-tools:tempel-in/resolve?url=https%3A%2F%2Ftempel.in%2Fview%2FTVJ35jiR" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/bypass-tools:tempel-in/resolve?url=https%3A%2F%2Ftempel.in%2Fview%2FTVJ35jiR", { 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:tempel-in/resolve?url=https%3A%2F%2Ftempel.in%2Fview%2FTVJ35jiR", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "slug": "TVJ35jiR", "title": "Anjayy testtt", "views": 30, "author": "Anonymous", "content": "hsajhsja jkahkdja testt nih claudeee codeee", "viewUrl": "https://tempel.in/view/TVJ35jiR", "inputUrl": "https://tempel.in/view/TVJ35jiR", "postedAgo": "1 week ago", "scrapedAt": "2026-05-22T17:39:54.098Z" } ``` --- _Generated: 2026-08-02T14:28:13.694Z_