Turn messy invoice text into a clean CSV you can import to Excel, Google Sheets, or your accounting software. Free online converter + developer API. No credit card, no signup.
Try live demo View docsCopy-paste an invoice (or paste the text pulled from its PDF) and get a clean, machine-readable CSV in seconds — no manual retyping, no spreadsheet fiddling. Perfect for importing supplier invoices into Excel, Google Sheets, QuickBooks, or a database. Works for any currency and any layout because it's AI-powered, not template-based.
Use the free web converter on this page, or hit the same engine via the API when you need to automate it. The /v1/extract endpoint returns the invoice fields as JSON or CSV, so you can build an automated pipeline for every invoice you receive.
{
"ok": true,
"data": { ... }
}The free tier handles 20 conversions a day per IP, no account needed. Go over that? The API plan gives you 30k calls a month. Start free and scale as your volume grows.
POST https://docstruct.marwannaili-23-07.workers.dev/v1/extract
Content-Type: application/json
{"text": "<paste invoice/statement/receipt/contract text>", "type": "invoice", "output": "json"}
→ {"ok": true, "data": { ... structured fields ... }}