Early access open now Powered by ABBYY FineReader

< 5min

from zero to production document parsing

No cloud account. Runs on your infrastructure in minutes. docker run and go.

$ docker run -p 8080:8080 ghcr.io/abbyy/fineparser:latest
See how it works
How it works

Three steps to structured data

From a raw document to clean DocLang or JSON, entirely inside your own infrastructure.

  1. 01 Docker Run

    Pull the container and run it.

    $ docker run \
      -p 8080:8080 ghcr.io/abbyy/fineparser:latest
  2. 02 Submit

    POST a document file to the API endpoint.

    curl -X POST localhost:8080/parse \
      -F file=@form.pdf
  3. 03 Parse

    Get back DocLang or JSON

    <doclang>
      <heading level="1">Form 1040 (2025)</heading>
      <table>
        <ched/>Line<ched/>Description<ched/>Amount<nl/>
        <fcel/>1a<fcel/>Wages (W-2 box 1)<fcel/>$68,400<nl/>
        <fcel/>11<fcel/>Adjusted gross income<fcel/>$71,250<nl/>
        <srow/>Total tax<lcel/><lcel/><fcel/>$9,842<nl/>
      </table>
    </doclang>
Features

Everything in one container

A complete document-fidelity stack — structure, tables, layout and text, no microservice sprawl, no external calls.

Developer experience

Parse in your language of choice

A single endpoint. Idiomatic SDKs. Predictable data structure.

import fineparser

client = fineparser.Client("http://localhost:8080")

result = client.parse("invoice.pdf")
print(result.title)
for table in result.tables:
    print(table.rows)
Enterprise

Built for teams that own their stack

Self-hosted / on-premise
Air-gapped deployment
Enterprise support
FineReader Engine trusted by Volkswagen and enterprises worldwide
About

Built on three decades of OCR expertise

FineParser is made by ABBYY, the document recognition company founded in 1989, named a Leader in the 2025 Gartner® Magic Quadrant™ for Intelligent Document Processing Solutions. Learn more about ABBYY →

Founded in 1989
500+ employees worldwide
Pricing

Pricing will be available at launch

Get early access now to lock in launch pricing.

Get early access
FAQ

Frequently asked questions

What is FineParser?

FineParser is a self-hosted, Docker-native document-parsing engine for AI applications, powered by ABBYY FineReader Engine.

Is it self-hosted?

Yes — FineParser runs entirely on your own infrastructure via docker run. Register with your email to get a license file instantly, activate the container, and you're parsing right away.

How much does it cost?

Pricing isn't public yet — FineParser is in early access ahead of launch. Sign up for early access to lock in launch pricing.

What formats does it export?

All AI formats you need — DocLang, JSON, XML and more.

What languages does it support?

200+ languages, including Latin, Cyrillic, CJK, and Arabic scripts.

Can it run fully offline / air-gapped?

FineParser only requires a connection to a single ABBYY server for subscription validation. The Enterprise tier supports full air-gapped deployment with zero connectivity.

Start parsing documents in minutes.

$ docker pull fineparser/engine:latest
Get early access