🤝Accountant & Bookkeeper Partner Program: Get 25% lifetime discount & recurring commission on all client signups.
Finviva Developer Platform (v1.0)

API Reference & Agent Integration

Build on Finviva’s double-entry ledger engine, trigger multimodal receipt OCR scans, and automate invoice collections via scoped OAuth 2.0 & REST APIs.

Quickstart: Trigger Multimodal Receipt OCR

Base URL: https://finvivaapp.com/api/v1
curl -X POST https://finvivaapp.com/api/v1/ocr/receipts \
  -H "Authorization: Bearer YOUR_FINVIVA_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "fileUrl": "https://storage.example.com/receipts/aws_invoice.pdf",
    "autoCategorize": true
  }'
// HTTP/2 200 OK
// RateLimit-Limit: 100
// RateLimit-Remaining: 99
{
  "vendorName": "Amazon Web Services",
  "subtotal": 480.00,
  "salesTax": 32.40,
  "totalAmount": 512.40,
  "taxCategory": "Line 18 (Utilities / Cloud Tech Stack)",
  "verified": true
}

OAuth 2.0 Scopes & Permissions

ScopePermission LevelDescription
accounting:readReadQuery General Ledger, Trial Balance, P&L, and Balance Sheet.
accounting:writeWritePost balanced double-entry journal transactions.
invoices:readReadQuery customer invoices and collection aging status.
invoices:writeWriteCreate invoices and trigger autonomous AR email chasers.
receipts:scanWriteSubmit receipt image/PDF for 1.2s multimodal OCR parsing.