Mindee
Mindee is a document parsing and intelligent document processing platform. Its REST API (api-v2.mindee.net) provides asynchronous inference across five model families — Extraction, Classification, Crop, OCR, and Split — plus a unified Jobs endpoint for polling. Mindee ships prebuilt models for invoices, receipts, passports, IDs, resumes, bank statements, and barcodes, along with customer-configurable extraction models with their own Data Schemas. Native SDKs cover Python, Node.js, Java, PHP, Ruby, and .NET, and front-end vision SDKs cover React and Vue. Mindee also stewards the open-source docTR OCR library.
APIs
Mindee Extraction API
Extract structured fields from invoices, receipts, IDs, passports, resumes, bank statements, and any other document type via Mindee's configurable extraction models. Enqueue a f...
Mindee Classification API
Classify documents into predefined categories so they can be routed to the appropriate downstream extraction model. Enqueue at POST /v2/products/classification/enqueue and retri...
Mindee Crop API
Detect, isolate, and crop the document area inside a larger scanned image. Useful for cleaning up phone-captured documents prior to classification or extraction. Async enqueue/r...
Mindee OCR API
Run full-page optical character recognition on a document and return the raw text plus bounding polygons. Enqueue at POST /v2/products/ocr/enqueue and retrieve the OCR payload f...
Mindee Split API
Split a multi-document PDF or image batch into individual documents that can each be classified and extracted independently. Async enqueue/results pattern at /v2/products/split/.
Mindee Jobs API
Poll the status of asynchronous Mindee inference jobs across every Mindee model family via GET /v2/jobs/{job_id}. Jobs return Waiting, Processing, Failed, or Success states and ...
Collections
Mindee Classification API
POSTMANMindee Crop API
POSTMANMindee Extraction API
POSTMANMindee Jobs API
POSTMANMindee OCR API
POSTMANMindee Split API
POSTMANMindee Crop API
OPENMindee Jobs API
OPENMindee OCR API
OPENMindee Split API
OPENArazzo Workflows
Mindee Bank Statement Extraction
Enqueue a bank statement with RAG and raw text enabled, poll until processed, then read the extracted transactions and balances.
ARAZZOMindee Classify Document Type
Enqueue a document for classification, poll until processed, then read the predicted document type.
ARAZZOMindee Classify Then Extract
Classify an unknown document, then run extraction on the same file once the type is known, reading the parsed fields.
ARAZZOMindee Crop Document
Enqueue a document for cropping, poll until processed, then read the detected objects and their crop coordinates.
ARAZZOMindee Custom Document Extraction
Enqueue an arbitrary document against a custom model with raw text capture, poll until processed, then read fields and full text.
ARAZZOMindee Extract From URL
Enqueue a publicly hosted document by URL for extraction, poll until processed, then read the extracted fields.
ARAZZOMindee Invoice Extraction
Enqueue an invoice for extraction, poll the job until processed, then read the extracted fields.
ARAZZOMindee OCR Full Text
Enqueue a document for full-page OCR, poll until processed, then read the per-page words and text content.
ARAZZOMindee OCR Then Extract
Run OCR over a document to capture its raw text, then extract structured fields from the same file, reading both outputs.
ARAZZOMindee Passport and ID Extraction
Enqueue a passport or identity document with polygon locations, poll until processed, then read the extracted holder fields.
ARAZZOMindee Poll Job With Failure Branch
Enqueue an extraction, poll the job, and branch explicitly on Processed, Processing, or Failed before reading the result.
ARAZZOMindee Receipt Extraction
Enqueue a receipt with confidence scoring, poll until processed, then read the extracted line items and totals.
ARAZZOMindee Split Multi-Document File
Enqueue a multi-document file for splitting, poll until processed, then read the identified document ranges.
ARAZZOMindee Split Then Extract
Split a multi-document file into ranges, then extract structured fields from the original file, reading splits and fields.
ARAZZO