Integrations

Connect to your ERP, not around it

Native connectors for SAP, Oracle NetSuite, and QuickBooks. For everything else, a clean REST API that any integration layer can call.

Native ERP connectors

Built for the ERPs your ops and finance teams actually run.

SAP

Connects via RFC/BAPI function modules. Extracted invoice data posts directly to SAP MM and FI modules. Supports both on-prem and S/4HANA cloud with appropriate auth configuration.

Scale plan required

Oracle NetSuite

Integrates through SuiteScript REST endpoints. Creates vendor bills, purchase orders, and journal entries from extracted document fields. OAuth2 credentials, no IT intervention required for SaaS NetSuite.

Scale plan required

QuickBooks Online

OAuth2 authentication against QBO API. Creates bills and purchase orders from extracted invoice data. Vendor matching by name. Available on the Professional plan and up.

Professional plan and up

REST API (any ERP)

Full JSON output via webhook on every completed extraction. Configure your endpoint URL, set auth headers, and define your field schema. Middleware layers (Zapier, Make, custom code) connect the rest.

Professional plan and up

REST API

A clean API built for integration layers

The Parseloom API is designed for developers who need to plug extraction into an existing data pipeline. API key or Bearer token auth. Synchronous response for small documents, webhooks for async bulk processing.

  • POST /v1/extract for single-document extraction
  • Webhook delivery on extraction complete
  • Field schema defined as JSON - your names, your types
  • Error codes for partial extraction and low-confidence fields
  • Rate limits: 60 req/min on Professional, 300 req/min on Scale
View full API reference
POST /v1/extract
// Request
curl -X POST https://api.parseloom.com/v1/extract \
  -H "Authorization: Bearer sk_live_..." \
  -F "[email protected]" \
  -F "template=invoice_standard"

// Response
{
  "extraction_id": "ext_9f2a...",
  "fields": {
    "vendor_name": "Acme Supplies LLC",
    "invoice_date": "2026-06-01",
    "total_amount": 4182.00,
    "confidence": 0.97
  }
}

Supported formats

Input formats

  • PDF Native and scanned (rasterized)
  • TIFF Multi-page document scans
  • PNG Single-page document images
  • JPEG Mobile-captured documents

Output formats

  • JSON Default. Line items as arrays. UTF-8 encoded.
  • CSV Flat row per document. Line items flattened.
  • XLSX Multi-tab: summary + line items on separate sheets.

Connect your first document source today

Free tier includes REST API access on a 100-page monthly limit. No credit card to start.