For developers building bookkeeping, expense, or agentic-commerce tools. Stop hand-rolling vision-LLM prompts and ABN/GST validation logic. One API call turns a receipt or invoice image/PDF into clean, versioned JSON — vendor, line items, tax, totals — with Australian GST and ABN checksum validation built in from day one.
POST /v1/extract
{
"document": "<base64 image or PDF>"
}
{
"vendor": { "name": "Acme Pty Ltd", "abn": "51 824 753 556", "abn_valid": true },
"date": "2026-07-14",
"line_items": [{ "description": "Widget", "qty": 2, "unit_price": 12.50, "gst": 2.50 }],
"total": { "subtotal": 25.00, "gst": 2.50, "total": 27.50 },
"schema_version": "1.0"
}
Generic OCR APIs (Mindee, Veryfi) get you raw fields. None of them know that an Australian ABN has an 11-digit modulus-89 checksum, or that GST apportionment rules differ for entertainment expenses. You'd build and maintain that yourself, on top of someone else's schema that can change under you. We maintain the schema, the accuracy SLA, and the AU-specific validation — so you don't have to re-derive it from the ATO's own documentation every time a client complains about a rejected ABN.
Turn receipts and invoices into structured, validated JSON — vendor, line items, tax, totals, with AU GST/ABN awareness built in. Caller-supplied documents, provider-swap vision LLM under the hood.
| Alternative | Why you might still need Receipt Extraction |
|---|---|
| Mindee | Generic global OCR — no AU GST/ABN field awareness or checksum validation. |
| Veryfi | Generic global OCR SDK — same AU-tax-field gap as Mindee. |
| MCP Receipt OCR (Lido) | 50 free pages then $29/mo for 100 — no AU-specific validation, steep per-page cost at volume. |
| MCP Invoice OCR | Same generic-extraction shape as Lido's server — no locale-aware tax fields. |
| Raw GPT-vision prompting | No schema versioning, no accuracy SLA, no maintained AU GST/ABN validation logic. |
This page names real alternatives and their real limitations — a comparison that hides the free option isn't worth reading. Try it or browse the source.
We're opening a free tier (20 documents/month, no card required) to the first developers who sign up. Tell us what you're building and we'll notify you the moment it's live.