POST
/
v1
/
invoices
/
ocr
{
  "extracted_data": {
    "invoice_number": "<string>",
    "date": "2023-12-25",
    "total": 123,
    "currency": "<string>",
    "iban": "<string>",
    "recipient": {
      "name": "<string>",
      "address": "<string>",
      "zip": "<string>",
      "city": "<string>"
    },
    "items": [
      {
        "description": "<string>",
        "quantity": 123,
        "price": 123
      }
    ]
  },
  "confidence_score": 0.5
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json · any

The body is of type any.

Response

200
application/json
OCR processing result
extracted_data
object
confidence_score
number
Required range: 0 <= x <= 1