Getting Started
Overview
What dOCR does and when to use it.
dOCR is a document data-extraction API. You send a document; dOCR returns structured JSON.
When to use dOCR
- You receive documents (invoices, receipts, statements, forms, IDs) and need the data in a database or workflow.
- You want structured fields, not raw OCR text.
- You'd rather call one API than build and maintain OCR + parsing + LLM pipelines yourself.
Two ways to use it
- Dashboard — upload documents in the web app and view results in Extraction History. Good for ad-hoc extractions and trying things out.
- API — call
POST /api/v1/extractfrom your backend to automate extraction at scale. This documentation focuses on the API.