How RecordEngine scores every document and how to use that score in your review workflow.
Every document RecordEngine processes receives an AI confidence score from 0 to 100. This score tells you how certain the AI is that it correctly extracted all the important fields — so you can focus your review time where it actually matters instead of manually checking every document.
Below the score badge you’ll see a plain-language explanation from the AI. For example:
“Clear invoice with all 8 required fields present. Line items sum correctly to the stated total of ¥12,450. High confidence.”
“Vendor name and invoice number extracted successfully, but the invoice date field appears partially cut off at the bottom of the page. Stated total does not match sum of line items — difference of ¥120. Moderate confidence.”
“Document appears to be a blurry photograph of a handwritten receipt. Several fields could not be read with certainty. Manual verification strongly recommended.”
This reasoning tells you exactly which field to check rather than making you re-read the whole document.
Sort the document list by confidence score (lowest first) to tackle your most uncertain documents at the start of the day. High-confidence documents can often be approved quickly without line-by-line verification.
In the Advanced Search page, use the Confidence Level filter to show only Low or Poor documents. Combine with a date range or contact filter to focus on a specific batch.
The confidence score and label are included automatically in every outbound webhook payload — so your downstream systems can make decisions based on extraction quality:
Copy
Ask AI
{ "id": 847, "filename": "acme-invoice-nov-2025.pdf", "status": "Export", "confidence_score": 87, "confidence_label": "Good", "confidence_reasoning": "All 8 fields extracted. Line items sum correctly. Minor uncertainty on tax rate field.", "extracted_fields": { "vendor": "Acme Corporation", "invoice_number": "INV-2025-1147", "invoice_date": "2025-11-15", "total_amount": "12450.00", "currency": "CNY" }}
If you’re consistently seeing low scores on a particular document type, the most common fix is to create a custom extraction profile with field labels that match exactly what’s in your documents. The AI performs significantly better when the profile is tailored to the document format.