Early access

Send an invoice PDF. Get structured JSON. No setup.

Built for developers who need invoice data fast.

POST a PDF. Get structured invoice data back. No templates. No configuration.

Currently in development — join early access.

See signup

Simple test page. No fake demo. Just a clear early access flow.

Example
curl -X POST https://api.example.com/extract \
-F "file=@invoice.pdf"

How it works

A simple flow developers can understand immediately.

1. Send a PDF

Send an invoice PDF with one request.

2. We extract the data

No templates. No manual parsing logic.

3. Get structured JSON

Use the result directly in your product or workflow.

Why invoice parsing is painful

Most teams do not want a document-processing project. They just want the data.

Every PDF is different

Layouts change. Rules break. Edge cases pile up fast.

Regex does not scale

What works for one invoice often fails on the next one.

OCR is not enough

Raw text is not the same thing as usable structured data.

Setup kills momentum

If integration takes too long, many side projects stop there.

A simple API that just works

Extract invoice data from PDF without configuration.

  • supplier
  • date
  • invoice number
  • total
  • line items

Example: request and response

One request in. Structured output out.

Request
curl -X POST https://api.example.com/extract \
-F "file=@invoice.pdf"
Response
{
  "supplier": "ACME Corp",
  "invoice_number": "INV-2026-0042",
  "date": "2026-03-15",
  "total": 1240.00,
  "currency": "EUR",
  "line_items": [
    {
      "description": "Consulting",
      "quantity": 2,
      "unit_price": 500,
      "total": 1000
    }
  ]
}

Use cases

Clear, practical use cases for developers.

Add invoice parsing to a micro-SaaS

Ship a focused feature without building a parsing layer yourself.

Automate invoice processing

Move invoice data into your workflow faster.

Build internal tools faster

Use structured data instead of raw PDFs.

Ship without writing parsing logic

Save time on extraction and focus on the rest of your product.

FAQ

What does it extract? Key invoice data: supplier, date, total, and line items.
Do I need to configure anything? No. No templates. No setup.
Is it available now? Not yet. It is currently in development.
Who is this for? Developers building tools that need invoice data.