# JS-Rendered Page to Markdown

> JS-Rendered Page to Markdown is a paid API for AI agents from x402.shizu.me, paid per call via x402, $0.014/call, status unknown (last checked 2026-09-14).

Fetches a JavaScript-rendered page through a real browser and returns clean Markdown (or HTML) content, including title and description, enabling scraping of SPAs and JS-heavy sites.

## Facts

- Endpoint: GET https://x402.shizu.me/render
- Price: $0.014/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/js-rendered-page-to-markdown-4c64f48b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Jz_ve1xiDQ7yLc_SxteAd

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability js-rendered-page-to-markdown-4c64f48b
```

Example prompt: Can you fetch the content from https://example.com/some-spa-page and give it to me as clean markdown? It's a JavaScript-heavy site so a plain fetch won't work.

## When to prefer this

Use this endpoint when a plain HTTP fetch cannot retrieve page content because the site relies on JavaScript (React, Vue, Angular, Next.js SSR, etc.) to render its content. Prefer this over a static scraper when the target page is a SPA, loads data dynamically via XHR/fetch, or otherwise requires a real browser to hydrate. Choose the markdown format for clean text extraction suitable for LLM processing; choose HTML if you need the raw DOM structure.

## Known failure modes

- Invalid or unreachable URL returns an error with no content
- Page requires authentication and returns a login screen instead of real content
- JavaScript-heavy page takes too long to render and times out
- Insufficient USDC credit results in a 402 payment required error
- Malformed format parameter may default to markdown or return an error

## How this service works

Fetch a JavaScript-rendered page through a real browser and return clean markdown (or html) — content from SPA/JS-heavy sites that a plain fetch can't see. Query: url (required), format (markdown|html, default markdown). Returns title, description, content.

## Output

Returns a JSON object containing the page title, a short description (meta description), and the full page content rendered by a real browser — either as clean Markdown (default) or raw HTML, depending on the format parameter.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "method": {
     "const": "GET"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "url": {
       "type": "string"
      },
      "format": {
       "type": "string"
      }
     },
     "required": [
      "url",
      "format"
     ]
    }
   },
   "required": [
    "method"
   ]
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "url": "https://example.com",
  "title": "…",
  "format": "markdown",
  "content": "# …"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/js-rendered-page-to-markdown-4c64f48b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.shizu.me](https://www.zero.xyz/host/x402.shizu.me/llms.txt)
