Convert any webpage ke clean Markdown via Jina Reader — ideal untuk AI/LLM ingestion. Strip nav, ads, scripts; keep title + content.
readpassing, 4.4s/v1/web-tools:jina-reader/read5m cache1 paramchecking key…// npm i zpi-sdk
import { ZpiClient } from "zpi-sdk";
const client = new ZpiClient({ apiKey: "zpi_xxxxxxxxxxxxxxxxxxxxxxxx" });
const data = await client.run("web-tools:jina-reader", "read", {
"url": "https://example.com"
});
console.log(data);curl -X GET "https://api.zpi.web.id/v1/web-tools:jina-reader/read?url=https%3A%2F%2Fexample.com" \
-H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"/v1/web-tools:jina-reader/readFetch & extract content sebagai markdown.urlstringrequiredcurl -X GET "https://api.zpi.web.id/v1/web-tools:jina-reader/read?url=https%3A%2F%2Fexample.com" \
-H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"{
"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"
}