Invoices, receipts, bank statements, contracts — one API call turns them into clean JSON or CSV. Stop typing data by hand. Free to start.
{ "type": "invoice", ... } — paste a document and click Extract
Bookkeepers, e-commerce sellers, and accountants turn hours of typing into seconds with a single API call.
Clean JSON per document type. No surprises, no markdown, no hallucinations in the output. Just data.
Runs on Cloudflare Workers in 300+ cities. Fast from anywhere, no server to manage.
Integrate with your stack — databases, sheets, accounting software, or plain files.
Start free. Upgrade when you need volume.
Payments via a secure checkout (Stripe/LemonSqueezy) — links live once signup opens. Get an API key early →
curl -X POST https://docstruct.marwannaili-23-07.workers.dev/v1/extract \
-H "Content-Type: application/json" \
-d '{
"text": "Harbor Trading INVOICE #INV-2026-1901 Date: 08/02/2026 ...",
"type": "invoice",
"output": "json"
}'
# → { "ok": true, "data": { "vendor": {...}, "number": "INV-2026-1901", ... } }