I built an API that extracts invoice and PDF data automatically

:bullseye: What is your goal?

I built an API that extracts structured data from invoices, receipts, and PDFs automatically.
I want to show how it can be used inside Make.com to automate document parsing workflows.

:thinking: What is the problem & what have you tried?

Many Make users struggle with parsing invoices or receipts — filters and OCR modules often fail when layouts change.
I created DocAPI to solve this by returning clean JSON from any document, no templates or regex needed.

:clipboard: Error messages or input/output bundles

curl.exe -X POST “https://docapi.site/api/process -H "Authorization: Bearer dk..."
-F “file=@invoice.pdf” `
-F “extract_type=invoice”

{ “vendor”: “Acme Corp”, “total”: 129.50, “date”: “2026-06-04” }

:link: Create public scenario page

docapi.site