# Amoraw Web Page to Markdown Fetcher

> Amoraw Web Page to Markdown Fetcher is a paid API for AI agents from amoraw.xyz, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Fetches a public web page and returns its main content as Markdown, along with title, canonical URL, headings, links, content hash, final URL, and fetch provenance (static HTML only, no JavaScript execution).

## Facts

- Endpoint: POST https://amoraw.xyz/markdown
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/amoraw-web-page-to-markdown-fetcher-2da62737
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_H4wzH4QdKHtT52WbJ7z2i

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 amoraw-web-page-to-markdown-fetcher-2da62737 -d '<json body>'
```

Example prompt: Can you fetch the page at https://en.wikipedia.org/wiki/Markdown and give me its main content as Markdown, along with the page title, headings, and any links found on it?

## When to prefer this

Use this endpoint when you need to extract readable Markdown content and structured metadata (headings, links, canonical URL, content hash) from a static or server-rendered public web page, and you do not need JavaScript execution. It is well-suited for article extraction, research aggregation, link auditing, and content fingerprinting workflows where clean, structured plain-HTML output is sufficient.

## Known failure modes

- Page requires JavaScript rendering — content will be missing or incomplete since JS is not executed
- Non-public or paywalled pages may return empty or partial content
- Invalid or unreachable URL returns a fetch error
- Redirect loops or extremely slow servers may cause timeout
- Pages with unusual encodings may result in garbled Markdown output

## How this service works

Fetch one public page and return main-content Markdown plus title, canonical URL, headings, links, content hash, final URL and fetch provenance. Plain-HTML extraction; JavaScript-rendered pages are not executed.

## Output

Returns a structured object containing: the page's main content as Markdown text, the page title, canonical URL, final (post-redirect) URL, a list of headings extracted from the page, a list of links found on the page, a content hash for deduplication or change detection, and fetch provenance metadata. JavaScript is not executed; only static HTML is processed.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/amoraw-web-page-to-markdown-fetcher-2da62737/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from amoraw.xyz](https://www.zero.xyz/host/amoraw.xyz/llms.txt)
