# Pixo Tools — Markdown to PDF Converter

> Pixo Tools — Markdown to PDF Converter is a paid API for AI agents from api.pixo.tools, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Converts a Markdown string into a PDF document for a flat fee of $0.01 USDC per call

## Facts

- Endpoint: POST https://api.pixo.tools/v1/pdf/from-markdown
- 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/pixo-tools-markdown-to-pdf-converter-785f8dc2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_G_8POVJtjPk3kaEHfZ38S

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 pixo-tools-markdown-to-pdf-converter-785f8dc2 -d '<json body>'
```

Example prompt: Convert this Markdown content into a PDF for me: '# Hello World\n\nThis is a **test** document with some _italic_ text and a [link](https://example.com).'

## When to prefer this

Choose this endpoint when you need a simple, flat-rate Markdown-to-PDF conversion without per-page pricing complexity. Ideal for converting documentation, reports, README files, or any Markdown-formatted content into a polished PDF in a single API call. Prefer over alternatives when cost predictability matters and input is already in Markdown format.

## Known failure modes

- Invalid or missing markdown field returns a 400 error
- Malformed Markdown may result in unexpected PDF layout but not an error
- Payment failure via x402 protocol returns a 402 Payment Required response
- Server-side rendering error returns a 500 response
- Extremely large Markdown inputs may time out or be rejected

## How this service works

Convert Markdown to a PDF — flat price

## Output

A PDF file binary (or download link) generated from the provided Markdown source, suitable for saving or sharing as a formatted document.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "file"
 ],
 "properties": {
  "file": {
   "type": "string",
   "description": "UTF-8 Markdown, max 1 MB"
  },
  "title": {
   "type": "string",
   "description": "Optional PDF document title (metadata)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "string",
 "format": "binary"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/pixo-tools-markdown-to-pdf-converter-785f8dc2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.pixo.tools](https://www.zero.xyz/host/api.pixo.tools/llms.txt)
