⛑️ Request Headers

Include the following headers in your request:

parameterdescription
acceptapplication/json - Specifies the desired response format as JSON.
Content-Typemultipart/form-data - Indicates that the request payload is in multipart form data format.

An example of the request header with an endpoint and an API key.

curl -X 'POST' \
  'http://localhost:3002/api/receipt/v1/verbose/file' \
  -H 'accept: application/json' \
  -H 'apikey: YOUR_API_KEY' \
  -H 'Content-Type: multipart/form-data' \