# UOS Genesis HTML to Markdown Converter

> UOS Genesis HTML to Markdown Converter is a paid API for AI agents from genesis.palsus2023.workers.dev, paid per call via x402, $0.004/call, status unknown (last checked 2026-09-14).

Converts raw HTML content into clean, readable Markdown format

## Facts

- Endpoint: POST https://genesis.palsus2023.workers.dev/v1/html_to_markdown
- Price: $0.004/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/uos-genesis-html-to-markdown-converter-0d8944b0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_oKVbodCKLHEzd04ehZHVf

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 uos-genesis-html-to-markdown-converter-0d8944b0 -d '<json body>'
```

Example prompt: Take this HTML I grabbed from the page — `<h1>Welcome</h1><p>This is a <strong>test</strong> paragraph.</p>` — and convert it to clean Markdown for me.

## When to prefer this

Choose this endpoint when you need a lightweight, pay-per-call HTML-to-Markdown conversion without setting up a local library or managing infrastructure. Ideal for agent pipelines that scrape web content and need to normalize it into Markdown for LLM consumption, note-taking, or documentation. Prefer it over general-purpose text strippers when you want to preserve semantic structure (headings, lists, links, emphasis) rather than just extracting plain text.

## Known failure modes

- Malformed or unparseable HTML may produce garbled or incomplete Markdown output
- Deeply nested or non-standard HTML structures may not convert cleanly
- Very large HTML documents may time out or be rejected
- Missing or empty request body returns an error
- Unsupported HTML elements may be silently dropped or passed through as raw text

## How this service works

UOS Genesis machine utility: html_to_markdown

## Output

A Markdown-formatted string equivalent of the submitted HTML content, with HTML tags converted to appropriate Markdown syntax (headings, bold, links, lists, code blocks, etc.) and unnecessary markup stripped away.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "input"
     ],
     "properties": {
      "input": {
       "type": "string",
       "description": "HTML document or fragment to transform into Markdown."
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object"
  }
 },
 "additionalProperties": true
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/uos-genesis-html-to-markdown-converter-0d8944b0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from genesis.palsus2023.workers.dev](https://www.zero.xyz/host/genesis.palsus2023.workers.dev/llms.txt)
