# Multi Invoice Parser to JSON

**Use case:** 

Process two invoice layouts in one job and export vendor, tax and total fields as structured JSON for each invoice.

## Input

```json
{
  "imageUrls": [
    "https://templates.invoicehome.com/invoice-template-us-neat-750px.png",
    "https://templates.invoicehome.com/invoice-template-us-classic-white-750px.png"
  ]
}
```

## 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.