# Axon Markdown Renderer

> Axon Markdown Renderer is a paid API for AI agents from axonx.vercel.app, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Converts input text or content properties into rendered HTML markdown with character count metadata

## Facts

- Endpoint: GET https://axonx.vercel.app/api/markdown
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/axon-markdown-renderer-a3b9497d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GaB5OouONfD8LowtQwpUh

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 axon-markdown-renderer-a3b9497d
```

Example prompt: Convert this markdown text to HTML for me: '# Bitcoin Analysis\n\nBTC is trading at $65,000 with strong momentum.' and give me the character count too.

## When to prefer this

Choose this endpoint when you need to convert markdown-formatted text to HTML with character count metadata, particularly within workflows already using Axon's x402-based crypto intelligence suite. It is a lightweight, pay-per-call conversion step costing $0.02 USDC on Base, suitable for rendering AI-generated markdown reports, crypto research summaries, or any structured text into display-ready HTML.

## Known failure modes

- Missing or malformed 'properties' input returns an error or empty HTML
- Invalid markdown syntax may render partially or produce unexpected HTML
- Missing x402 micropayment header results in 402 Payment Required response
- Network timeout on Vercel serverless cold start
- Empty input returns minimal or empty HTML with charCount of 0

## How this service works

Axon provides AI-powered crypto intelligence endpoints covering token research, market analysis, contract auditing, sentiment tracking, news summarization, portfolio advice, deep research, text translation, language detection, SEO content generation, and contract explanation. All analytical endpoints require x402 micropayment on Base.

## Output

Returns a JSON object containing an 'html' field with the fully rendered HTML string (e.g. '<h1>Hello</h1>') and a 'charCount' integer representing the number of characters in the rendered output.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "html": "<h1>Hello</h1>",
  "charCount": 10
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/axon-markdown-renderer-a3b9497d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from axonx.vercel.app](https://www.zero.xyz/host/axonx.vercel.app/llms.txt)
