Extract structured data from documents: invoices, contracts, resumes, receipts. Returns entities, dates, amounts, and relationships in clean JSON.
# Get your free API key first curl -X POST https://api.aaido.dev/signup \ -H "Content-Type: application/json" \ -d '{"email": "you@example.com"}' # Make your first API call curl -X POST https://api.aaido.dev/v1/products/docprocessor/process \ -H "X-API-Key: YOUR_KEY" \ -H "Content-Type: application/json" \ -d '{"text": "Invoice #INV-2026-0042\nDate: May 28, 2026\nBill To: Acme Corp\nItem: API License - $299.00\nTax: $26.91\nTotal: $325.91\nDue: June 27, 2026", "doc_type": "invoice"}'
{"doc_type": "invoice", "entities": {"invoice_number": "INV-2026-0042", "date": "2026-05-28", "vendor": null, "client": "Acme Corp", "items": [{"description": "API License", "amount": 299.00}], "tax": 26.91, "total": 325.91, "due_date": "2026-06-27"}, "confidence": 0.92}