POST /v3/ocr turns a document into per-page markdown synchronously. It’s provider-agnostic: model selects the engine, the document source is normalized for you, and anything model-specific goes in parameters.
Pass a model and a document. The document is one of four shapes, selected by type:
A
file_id lets you OCR a document you already have on Opper without re-sending the bytes. Upload it to Files with purpose: ocr_input (PDFs and images), then reference it here. Files respect your project’s retention and storage quota.Response
OCR is billed per page processed. The extracted markdown preserves structure — headings, tables, and lists.
Languages (Docling)
Docling accepts canonical ISO 639-1 language codes inparameters.lang (e.g. ["sv", "en"]) with parameters.ocr_engine set to tesseract or easyocr; Opper maps them to each engine’s own codes:
Structured blocks (Mistral OCR 4)
mistral/mistral-ocr-4-0 (also reachable as mistral/mistral-ocr-latest) can return the page’s layout in reading order, not just markdown. Opt in through parameters:
Response (excerpt)
blocks and confidence_scores are only present when requested. Earlier Mistral models (mistral/mistral-ocr-2512) and Docling ignore these keys and respond as before.
Discover models
GET /v3/ocr/models lists the OCR models available, each with its price_per_page:
What’s next
Files
Upload once with
purpose: ocr_input, reuse by file_id.Vision & PDFs
Reason over a document with an LLM instead of extracting it.
Models
Which models do OCR.
Control Plane
Govern providers, regions, and spend on every call.