🧾 Receipt & Invoice → JSON · Data / Finance

Turn any receipt or invoice into structured JSON.

Send a photo or scan and get back merchant, address, date, currency, subtotal, tax, tip, total, payment method, a spend category, and itemized line items — plus the raw text. Built for expense apps, bookkeeping automation, and personal-finance tools.

Why use it

📸 Image in, JSON out

No OCR pipeline, no model training, no prompt engineering on your side.

🧾 Receipts and invoices

Line items with description, quantity, unit price, and amount.

🏷️ Rich fields

Merchant, address, date/time, currency, subtotal, tax, tip, total, payment method, category.

⚡ Fast & structured

Predictable JSON, ~5s typical response. Drop it straight into your app.

🔢 Clean numbers

Amounts come back as numbers — or null when unreadable, never invented.

⚙️ On-prem inference

Runs on our own GPU — private, reliable, priced low because our cost is low.

Endpoint

POST /v1/receipt-to-json
FieldTypeRequiredDescription
image_urlstringone of url/b64Public URL of the receipt/invoice image.
image_b64stringone of url/b64Base64 image bytes (or a full data: URI).
languagestringoptionalOutput language code (default en).

Example

Request
curl -X POST \
  "https://receipt-invoice-to-json-ocr-parser.p.rapidapi.com/v1/receipt-to-json" \
  -H "Content-Type: application/json" \
  -H "X-RapidAPI-Key: YOUR_KEY" \
  -H "X-RapidAPI-Host: receipt-invoice-to-json-ocr-parser.p.rapidapi.com" \
  -d '{ "image_url": "https://example.com/receipt.jpg" }'
Response
{
  "merchant": "BLUE BOTTLE CAFE",
  "merchant_address": "123 Market St, Seattle WA",
  "date": "2026-06-14",
  "time": "10:42",
  "currency": "USD",
  "subtotal": 14.75,
  "tax": 1.48,
  "tip": 3.0,
  "total": 19.23,
  "payment_method": "VISA ****4291",
  "category": "dining",
  "line_items": [
    {"description":"Latte","qty":1,"unit_price":4.5,"amount":4.5},
    {"description":"Croissant","qty":2,"unit_price":3.5,"amount":7.0}
  ],
  "raw_text": "BLUE BOTTLE CAFE\n123 Market St..."
}

Pricing

PlanPrice / moQuotaOverage
Basic$050 req/mo
Propopular$14.992,000 req/mo$0.008/req
Ultra$39.998,000 req/mo$0.006/req
Mega$12940,000 req/mo$0.004/req
Grab a free key on RapidAPI →