# Expense Receipt Parser Tool

**Use case:** 

Parse an expense receipt into JSON with merchant, category, date and amount to speed up expense report entry and approvals.

## Input

```json
{
  "imageUrls": [
    "https://ocr.space/Content/Images/receipt-ocr-original.jpg"
  ]
}
```

## Output

```json
{
  "imageUrl": {
    "label": "Image",
    "format": "link"
  },
  "vendorName": {
    "label": "Vendor",
    "format": "text"
  },
  "vendorAddress": {
    "label": "Vendor address",
    "format": "text"
  },
  "invoiceNumber": {
    "label": "Invoice number",
    "format": "text"
  },
  "date": {
    "label": "Date",
    "format": "text"
  },
  "dueDate": {
    "label": "Due date",
    "format": "text"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "lineItems": {
    "label": "Line items",
    "format": "array"
  },
  "subtotal": {
    "label": "Subtotal",
    "format": "text"
  },
  "tax": {
    "label": "Tax",
    "format": "text"
  },
  "total": {
    "label": "Total",
    "format": "text"
  },
  "paymentMethod": {
    "label": "Payment method",
    "format": "text"
  },
  "observedAt": {
    "label": "Parsed at",
    "format": "text"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Tool: Invoice & Receipt Parser to JSON](https://apify.com/scrapers_lat/invoice-receipt-parser-tool) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapers_lat/invoice-receipt-parser-tool) to learn more, explore other use cases, and run it yourself.