Extract receipt data with a simple REST API. Send an image or PDF, get structured JSON—merchant name, date, total, line items. Free tier: 100 scans/month to get started.
Use this endpoint to scan receipts. Authenticate with your API key (get one from the dashboard after signup).
https://parsedaddy.com/api/v1/receipt-scanAuthentication: Send your API key in the x-api-key header, or Authorization: Bearer YOUR_API_KEY.
Request: multipart/form-data with a single field file (image or PDF).
curl -X POST https://parsedaddy.com/api/v1/receipt-scan \
-H "x-api-key: YOUR_API_KEY" \
-F "file=@/path/to/receipt.jpg"{
"success": true,
"extracted_fields": {
"_format": "tabular",
"headers": {
"vendor_name": "Acme Coffee",
"date": "2024-03-15",
"total_amount": "12.50",
"invoice_number": "R-001"
},
"line_items": [],
"columns": [...],
"rows": [...],
"totals": {}
},
"ai_structured_data": { ... },
"extracted_text": "...",
"processing_time": 2100,
"document_type": "receipt",
"usage": { "used": 1, "limit": 100 }
}Start free, scale as you grow. All plans include API access and JSON responses.
Free
Perfect for trying the API and small projects
~$0.05 each
For apps and tools with moderate volume
~$0.03 each
For growing products and teams
Volume pricing
High volume and custom requirements
Simple POST with multipart file. JSON in, JSON out.
Typical response in 1–3 seconds. Same engine as ParseDaddy receipt scanning.
API key authentication. No receipt data stored beyond processing.
Get your API key and start with 100 free scans per month.
Get API Key