Extract structured data from invoices in seconds. Upload PDF or image, get JSON with vendor, line items, totals, and dates.
No credit card required • 50 free credits • $0.10 per invoice
curl -X POST "https://api.chargedapi.com/extract/invoice" \
-H "X-API-Key: your_api_key" \
-F "file=@invoice.pdf"
# Response:
{
"invoice_number": "INV-2024-001",
"vendor": "Acme Corp",
"date": "2024-12-15",
"line_items": [
{"description": "Service", "amount": 500.00}
],
"total": 540.00
}
Name, address, contact, tax ID
Description, quantity, unit price, total
Subtotal, tax, discounts, grand total
Invoice date, due date, payment terms
curl -X POST \
"https://api.chargedapi.com/extract/invoice" \
-H "X-API-Key: YOUR_KEY" \
-F "file=@invoice.pdf"
import requests
r = requests.post(
"https://api.chargedapi.com/extract/invoice",
headers={"X-API-Key": "YOUR_KEY"},
files={"file": open("invoice.pdf", "rb")}
)
data = r.json()
const form = new FormData();
form.append('file', fs.createReadStream('invoice.pdf'));
fetch('https://api.chargedapi.com/extract/invoice', {
method: 'POST',
headers: {'X-API-Key': 'YOUR_KEY'},
body: form
});
Auto-import invoices into QuickBooks, Xero, FreshBooks without manual entry.
Process hundreds of vendor invoices automatically. Reduce AP workload by 80%.
Let users snap photos of invoices and extract data instantly.
Pay per invoice. No subscriptions, no minimums.
PDF, PNG, JPG, JPEG, TIFF, WEBP, and scanned documents. We handle both digital and scanned invoices.
95%+ accuracy for standard invoices. Our AI is trained on millions of invoice formats. You can also verify with confidence scores returned in the response.
Most invoices are processed in 2-5 seconds. Complex multi-page invoices may take up to 10 seconds.
Yes. All data is encrypted in transit (HTTPS) and at rest. Files are automatically deleted after processing. We never store or share your invoice data.
Yes! Our API supports parallel processing. Check our documentation for batch processing examples in Python, Node.js, and Bash.
Start extracting invoice data in minutes. 50 free credits included.
Get Started Free