# Markdown to HTML Converter

> Markdown to HTML Converter is a paid API for AI agents from intel.rallylive.ca, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Converts Markdown text to safe, escaped HTML including headings, paragraphs, bold/italic, code blocks, links, images, lists, blockquotes, and horizontal rules.

## Facts

- Endpoint: GET https://intel.rallylive.ca/data/markdown-to-html
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/markdown-to-html-converter-dffaedc4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BMqJvfM5oYXMGt85mxH1w

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 markdown-to-html-converter-dffaedc4
```

Example prompt: Convert this markdown to HTML for me, including the code blocks and bullet lists, and make sure the output is safely escaped: '# Hello\n\nThis is **bold** and `inline code`.\n\n- item one\n- item two'

## When to prefer this

Choose this endpoint when you need a simple, safe, hosted Markdown-to-HTML conversion without setting up a local library — especially useful for AI agents rendering their own output to the web, converting README files, or safely displaying user-submitted markdown. It handles HTML escaping automatically, making it safer than naive string replacement. At $0.01 per call it is cost-effective for on-demand conversions.

## Known failure modes

- Missing or empty input markdown returns an error
- Malformed query parameters cause a 400 bad request
- Payment not provided or insufficient results in 402 Payment Required
- Server errors return 5xx responses
- Extremely large markdown payloads may be rejected or time out

## How this service works

Markdown to HTML: headings, paragraphs, bold/italic, inline code and fenced code blocks, links, images, bullet and numbered lists, blockquotes and rules, with HTML escaped for safety. Render agent output for the web. $0.01 per call.

## Output

Returns HTML markup equivalent of the input Markdown, with HTML characters escaped for safety. Includes rendered headings (h1-h6), paragraphs, bold and italic text, inline code and fenced code blocks, hyperlinks, images, unordered and ordered lists, blockquotes, and horizontal rules.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "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/markdown-to-html-converter-dffaedc4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from intel.rallylive.ca](https://www.zero.xyz/host/intel.rallylive.ca/llms.txt)
