---
name: zx10r-x402-api.onrender.com
description: zx10r-x402-api.onrender.com provides a single web scraping endpoint that fetches a public URL and returns structured page data including the title, headings, links, metadata, word count, and truncated markdown content. It performs a single-page HTTP-level scrape without full browser rendering.
host: zx10r-x402-api.onrender.com
---

# zx10r-x402-api.onrender.com

This host is a lightweight, single-purpose web scraping service. It serves agents that need to extract readable content and structural metadata (headings, links, title) from a publicly accessible web page in one request. It is distinct from full browser automation tools in that it does not execute JavaScript or handle dynamic rendering.

## When to use this host

Use this host when an agent needs to extract readable text, headings, links, or metadata from a single static or server-rendered public web page. It is appropriate for one-off content retrieval tasks such as summarizing an article, extracting links from a landing page, or reading structured data from a public HTML page. Do not use it for JavaScript-heavy single-page applications (SPAs) that require a full browser runtime — use a headless browser service (e.g., Playwright or Puppeteer-based APIs) instead. Do not use it for bulk site crawling or multi-page scraping workflows; it handles exactly one URL per call. It also does not support authentication, login-gated pages, or CAPTCHA-protected content.

## Capabilities

### Web Page Extraction

Fetches a single public URL and returns structured page data including title, headings, links, HTTP status, load time, word count, and truncated markdown content.

- **`scrape-webpage-to-markdown`** — Scrapes a URL and returns structured page data including title, headings, links, metadata, word count, and truncated markdown content.

## Skill reference

### `scrape-webpage-to-markdown`

**ZX10R Web Scraper** — Scrapes a URL and returns structured page data including title, headings, links, metadata, word count, and truncated markdown content.

*Use when:* Use when an agent needs to extract structured content from a public web page, such as retrieving the title, headings, links, or readable markdown text from a given URL.

*Not for:* Do not use for JavaScript-heavy single-page apps that require full browser rendering beyond basic scraping, or for bulk crawling of entire sites — this is a single-page, single-shot scrape.

**Inputs:**

- `url` (string, required) — The fully qualified URL of the web page to scrape.
- `maxChars` (integer) — Maximum number of characters to include in the returned markdown content. Truncates markdown if the page content exceeds this limit.

**Returns:** Returns a count and an items array with one scrape object containing the page title, headings, links, word count, open graph data, and truncated markdown for the requested URL.

**Example:** `GET https://zx10r-x402-api.onrender.com/v1/scrape?url=https://example.com&maxChars=100`

---
