← ClaudeAtlas

deepread-invoicelisted

Extract structured data from invoices, receipts, and bills using DeepRead. Pre-built schemas for vendor, line items, totals, tax, due dates. 97%+ accuracy with human-in-the-loop flags. Free 2,000 pages/month.
deepread-tech/skills · ★ 2 · Data & Documents · score 78
Install: claude install-skill deepread-tech/skills
# DeepRead Invoice Processing Extract structured data from invoices, receipts, purchase orders, and bills. Submit a PDF or image, get back typed JSON with vendor, line items, totals, tax, and due dates — with confidence flags telling you exactly which fields need human review. > This skill instructs the agent to POST documents to `https://api.deepread.tech` and poll for results. No system files are modified. ## What You Get Back Submit an invoice PDF and get structured JSON. Extracted fields come back as a list under `extraction.fields[]` (each field has `key`, `value`, `needs_review`, and `location.page`): ```json { "schema_version": "dp02", "status": "completed", "extraction": { "fields": [ {"key": "vendor", "value": "Acme Corp", "needs_review": false, "location": {"page": 1}}, {"key": "invoice_number", "value": "INV-2026-0042", "needs_review": false, "location": {"page": 1}}, {"key": "invoice_date", "value": "2026-03-15", "needs_review": false, "location": {"page": 1}}, {"key": "due_date", "value": "2026-04-15", "needs_review": false, "location": {"page": 1}}, {"key": "subtotal", "value": 1150.00, "needs_review": false, "location": {"page": 1}}, {"key": "tax", "value": 100.00, "needs_review": false, "location": {"page": 1}}, {"key": "total", "value": 1250.00, "needs_review": false, "location": {"page": 1}}, {"key": "currency", "value": "USD", "needs_review": false, "location": {"page": 1}}, {"key": "payme