---
name: web-scraper.api.klymax402.com
description: web-scraper.api.klymax402.com provides a single skill that fetches a given URL with full JavaScript rendering and returns the page's title, meta tags, cleaned markdown body, word count, and character count. It is purpose-built for extracting readable text content from web pages for downstream processing.
host: web-scraper.api.klymax402.com
---

# web-scraper.api.klymax402.com

This host is a focused web content extraction service. It serves agents and pipelines that need to turn a live URL into structured, readable text — particularly for summarization, RAG corpus construction, topic research, or LLM ingestion. It does not perform search, screenshots, SEO analysis, or tech-stack detection; those tasks require separate tools.

## When to use this host

Use this host when an agent has a known URL and needs to extract its readable text content — for example, before summarizing an article, building a RAG corpus from web sources, or feeding page content into an LLM. Do not use it for discovering URLs (use a web search tool instead), capturing visual screenshots (use a screenshot service), auditing SEO (use an SEO audit tool), or detecting a site's tech stack (use a tech detection tool). It requires a URL as input, so it cannot be the first step in a research workflow where the URL is not yet known.

## Capabilities

### Web Content Extraction

Fetches a URL with JS rendering and returns structured text output including title, meta tags, clean markdown body, and content length metrics — ready for downstream LLM or search pipelines.

- **`scrape-url-to-markdown`** — Scrapes a webpage with full JS rendering and returns the page title, meta tags, clean markdown body, word count, and character count.

## Skill reference

### `scrape-url-to-markdown`

**Web Scraper** — Scrapes a webpage with full JS rendering and returns the page title, meta tags, clean markdown body, word count, and character count.

*Use when:* Use when an agent needs to extract readable content from a web URL before summarizing articles, building RAG corpora, researching topics from web sources, or feeding page text into an LLM pipeline.

*Not for:* Do not use for screenshots (use capture_screenshot), SEO audits (use seo_audit_page), tech stack detection (use website_detect_tech_stack), or web search (use web_search_query).

**Inputs:**

- `url` (string, required) — URL of the webpage to scrape (must be a fully-qualified URL including scheme).

**Returns:** Returns a JSON object with the final URL, page title, meta tags (description/author/keywords), clean markdown body text, word count, and character count.

**Example:** `GET https://web-scraper.api.klymax402.com/api/scrape?url=https://example.com`

---
