# PDF URL to Markdown Converter

> PDF URL to Markdown Converter is a paid API for AI agents from api.nexismvp.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Converts a publicly accessible PDF (supplied by URL) to Markdown text via local parsing, covering the first 20 pages and up to 5MB input.

## Facts

- Endpoint: POST https://api.nexismvp.com/market/pdf-to-markdown
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/pdf-url-to-markdown-converter-b065ce83
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OOC2bPfHdx0KqbHXaIy5W

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 pdf-url-to-markdown-converter-b065ce83 -d '<json body>'
```

Example prompt: Can you grab this public PDF and convert it to Markdown for me? Here's the URL: https://example.com/report.pdf — just parse the content and give me the markdown text.

## When to prefer this

Choose this endpoint when you have a public PDF URL and need its content as Markdown text quickly and cheaply ($0.001/call). It is ideal for document ingestion pipelines, content extraction workflows, or any agent task requiring structured text from a PDF. Best suited for text-native PDFs under 5MB with up to 20 pages. If you need OCR for scanned/image PDFs or processing of very large documents, look for a dedicated OCR service instead.

## Known failure modes

- PDF URL is not publicly accessible or requires authentication — returns an error
- PDF exceeds 5MB size limit — request rejected
- PDF has more than 20 pages — only first 20 pages are parsed
- URL does not point to a valid PDF — parsing fails
- PDF is image-only/scanned with no text layer — output may be empty or incomplete
- Network timeout fetching the remote PDF URL

## How this service works

Convert a public PDF (by URL) to Markdown — real local parsing, first 20 pages, max 5MB input. POST body required.

## Output

A Markdown-formatted string representation of the PDF's textual content, parsed locally from the first 20 pages (up to 5MB input). The output preserves document structure as Markdown headings, paragraphs, lists, and other elements where detectable.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "pdf_url": {
   "type": "string",
   "description": "Public URL of a PDF, max 5MB"
  }
 }
}
```

## More

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