Spaces:
Sleeping
Sleeping
metadata
title: Receipt Invoice Reader API
emoji: 🧾
colorFrom: green
colorTo: blue
sdk: docker
pinned: false
Receipt & Invoice Reader API
Extract structured data from any receipt or invoice photo using AI.
Endpoints
POST /extract/upload
Upload an image file → get structured JSON
POST /extract/base64
Send base64 image → get structured JSON
GET /health
Health check
Response Example
{
"success": true,
"data": {
"vendor": "Pizza House",
"date": "2026-03-12",
"total": 450.00,
"tax": 40.50,
"currency": "INR",
"payment_method": "UPI",
"items": [
{"name": "Margherita Pizza", "quantity": 1, "price": 250},
{"name": "Cold Drink", "quantity": 1, "price": 160}
]
}
}