Web Intelligence Toolkit

Turn unstructured web content into structured, classified, multi-lingual data.

Use case

Scrape any URL, convert to clean markdown, OCR embedded images, classify the topic, detect language, and score sentiment — ideal for content monitoring agents or knowledge-base ingestion.

APIs in this bundle (6)

Cycle cost ≈ $0.035 USDC
Network Base L2
Settle <2s
Signup none

Code example

import { x402Fetch } from "x402-agent-tools";

async function processUrl(url: string) {
  const raw = await x402Fetch(`https://web-scraper.api.klymax402.com/api/scrape?url=${url}`);
  const md = await x402Fetch(`https://html-to-markdown.api.klymax402.com/api/convert`, { method: "POST", body: JSON.stringify({ html: raw.html }) });
  const lang = await x402Fetch(`https://language-detector.api.klymax402.com/api/detect`, { method: "POST", body: JSON.stringify({ text: md.markdown }) });
  const sentiment = await x402Fetch(`https://sentiment-analyzer.api.klymax402.com/api/analyze`, { method: "POST", body: JSON.stringify({ text: md.markdown }) });
  return { markdown: md.markdown, language: lang.code, sentiment: sentiment.score };
}
Install npm package Full API catalog (llms.txt) Live activity