curl -X POST https://api.sharpocr.com/v1/parse \
-H "Authorization: Bearer $SHARPOCR_KEY" \
-F file=@invoice.pdf \
-F schema=eu_invoice
{
"supplier": { "value": "Acme B.V.", "confidence": 0.99 },
"vat_id": { "value": "NL812345678B01", "confidence": 0.98,
"checksum_valid": true },
"total_gross": { "value": 1210.00, "currency": "EUR", "confidence": 0.97 },
"line_items": [ /* … */ ],
"checks": { "line_items_sum_matches_total": true }
}
Illustrative response. The API is not open yet — this page exists to find
the people who need it.