Docs
FinAudit AI
FinAudit AI
Financial document parsing and fraud detection API. Extract structured data from receipts and invoices, audit bank statements, and detect anomalies with 12-language OCR.
Overview
FinAudit AI parses financial documents into structured JSON and applies AI-driven fraud detection. Supports receipts, invoices, and bank statements across 12 languages.
Base URL: https://api.apivult.com/v1/compliance/finance
Authentication
Include your API key in every request header: X-API-Key: YOUR_API_KEY
Endpoints
| Method | Endpoint | Description |
|---|---|---|
| POST | /v1/compliance/finance/parse | Extract structured data from receipts or invoices |
| POST | /v1/compliance/finance/audit | Audit a bank statement for anomalies and summaries |
| POST | /v1/compliance/finance/fraud-check | Run fraud risk scoring on a financial document |
Supported Document Types
receipt · invoice · bank_statement · expense_report
Supported Languages
English, Spanish, French, German, Italian, Portuguese, Dutch, Polish, Chinese, Japanese, Korean, Arabic
Quick Start
curl -X POST "https://api.apivult.com/v1/compliance/finance/parse" \
-H "X-API-Key: YOUR_API_KEY" \
-F "[email protected]" \
-F "doc_type=receipt" \
-F "language=en"Response:
{
"vendor": "Coffee Shop Ltd",
"date": "2024-03-15",
"total": 12.50,
"currency": "USD",
"line_items": [
{ "description": "Latte", "quantity": 1, "unit_price": 5.00 },
{ "description": "Sandwich", "quantity": 1, "unit_price": 7.50 }
],
"tax": 0.00
}Rate Limits
| Plan | Requests/Month |
|---|---|
| Free | 500 |
| Basic | 1,000 |
| Pro | 10,000 |