Parse one invoice
invoice://host/file/query/parse
{
"path": "/faktury/2026-06/FV-1.pdf"
}
Accounting connector
invoice:// turns invoice parsing into a first-class URI. invoice://host/file/query/parse returns structured fields {nip, number, issueDate, seller, net, vat, gross, currency} from one PDF/text — regex-first (text-layer PDFs via pdftotext), with an optional LLM pass (OpenRouter via litellm, use_llm=true) for layouts the regex misses. invoice://host/folder/query/audit parses every invoice under a folder into rows plus net/VAT/gross totals, optionally writing a CSV — for monthly accounting. Read-only over the invoice files. Pairs with doc:// (OCR for scans) and fs:// (dedupe) in the office flow.
ArrayArrayArrayinvoice://host/file/query/parse
{
"path": "/faktury/2026-06/FV-1.pdf"
}
invoice://host/folder/query/audit
{
"root": "/faktury/2026-06",
"csv": true
}
curl -fsSL 'https://connect.ifuri.com/install?connectors=invoice' | bash
{
"id": "invoice",
"name": "Invoice field extraction",
"status": "available",
"uriSchemes": [
"invoice"
],
"routes": [
"invoice://host/file/query/parse",
"invoice://host/folder/query/audit"
],
"install": {
"mode": "urirun-extra",
"pipSpec": "urirun-connector-invoice @ git+https://github.com/if-uri/urirun-connector-invoice.git@v0.1.0"
},
"hubUrl": "https://connect.ifuri.com/connectors/invoice"
}