# Jina Reader โ€” Zapi reference > Convert any webpage ke clean Markdown via Jina Reader โ€” ideal untuk AI/LLM ingestion. Strip nav, ads, scripts; keep title + content. **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/web-tools/jina-reader - Endpoint catalog: https://zpi.web.id/category/web-tools - Concise index: https://zpi.web.id/llms.txt - Full reference: https://zpi.web.id/llms-full.txt --- ## Jina Reader **Category:** web-tools ยท **Slug:** `jina-reader` **Detail page:** https://zpi.web.id/api/web-tools/jina-reader Convert any webpage ke clean Markdown via Jina Reader โ€” ideal untuk AI/LLM ingestion. Strip nav, ads, scripts; keep title + content. **Tags:** reader, markdown, ai, extract ### Read Fetch & extract content sebagai markdown. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/web-tools:jina-reader/read` - **Cache TTL:** 300s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `url` | string | query | yes | URL lengkap halaman yang akan di-extract menjadi Markdown bersih | **cURL:** ```bash curl "https://api.zpi.web.id/v1/web-tools:jina-reader/read?url=https%3A%2F%2Fexample.com" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/web-tools:jina-reader/read?url=https%3A%2F%2Fexample.com", { 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/web-tools:jina-reader/read?url=https%3A%2F%2Fexample.com", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "url": "https://example.com", "title": "Example Domain", "source": "r.jina.ai", "content": "This domain is for use in documentation examples without needing permission. Avoid use in operations.\n\n[Learn more](https://iana.org/domains/example)", "finalUrl": "https://example.com/", "wordCount": 17, "publishedTime": "Fri, 22 May 2026 08:19:40 GMT" } ``` --- _Generated: 2026-08-02T14:22:48.910Z_