> ## Documentation Index
> Fetch the complete documentation index at: https://docs.parserouter.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Introduction

> MinerU – The SOTA open-source PDF parsing model, as a production-ready API.

## What is ParseRouter?

ParseRouter turns documents — PDFs and images — into clean, structured output through [MinerU](https://github.com/opendatalab/MinerU) the state-of-the-art open-source document parsing model, served as a production-ready API.

You don't run GPUs, manage model weights, or stitch together OCR pipelines. You send a file, you get back Markdown and structured blocks. And unlike a typical parsing endpoint, you always know **exactly which model** processed your document — at a **flat, per-page price**. No black boxes.

## Why ParseRouter?

<CardGroup cols={2}>
  <Card title="State-of-the-art accuracy" icon="bullseye">
    Powered by MinerU, a leading open-source model for tables, formulas, and complex layouts.
  </Card>

  <Card title="Transparent pricing" icon="receipt">
    A flat rate of **1 credit per page**. You're only charged for documents that parse successfully.
  </Card>

  <Card title="Know your model" icon="eye">
    Every request names the engine and model that ran it. Reproducible, auditable, no surprises.
  </Card>

  <Card title="Built for production" icon="bolt">
    Predictable rate limits, explicit error codes, and a simple bearer-token API you can integrate in minutes.
  </Card>
</CardGroup>

## How it works

1. **Get an API key** from your dashboard (`sk-pr-…`).
2. **Upload a document** to the parse endpoint as multipart form data.
3. **Receive structured output** – Markdown plus per-page blocks (titles, paragraphs, tables, and more).

```bash theme={null}
curl -X POST https://api.parserouter.com/v1/mineru/parse \
  -H "Authorization: Bearer sk-pr-..." \
  -F "file=@invoice.pdf" \
  -F "model=mineru2.5-pro-2605"
```

## Next steps

<CardGroup cols={2}>
  <Card title="Quickstart" icon="rocket" href="/quickstart">
    Go from API key to your first parsed document in under five minutes.
  </Card>

  <Card title="API Reference" icon="code" href="/parse">
    Full details on the parse endpoint, parameters, and response shape.
  </Card>

  <Card title="Credits & billing" icon="coins" href="/billing">
    How per-page pricing works and when you're charged.
  </Card>

  <Card title="Limits" icon="gauge" href="/limits">
    Rate limits, the per-document page cap, and timeout guidance.
  </Card>
</CardGroup>
