Skip to main content

Making Requests

The BlinkReceipt Scan API supports two primary input methods for processing receipts:

  1. Image Assets (Multipart Form-Data): Allows direct upload of receipt image files.
  2. Image URLs (Application/x-www-form-urlencoded): Allows processing of receipt images via URLs.

Endpoint

POST https://api.blinkreceipt.com/v14


Image Assets (Multipart Form-Data)

Use this method to upload images directly from your application.

Required Parameters

ParameterTypeDescription
license_keystringYour BlinkReceipt API license key.
imagebinaryPNG or JPEG image of a receipt (max size: 10 MB).
frame_idxintegerThe frame index for multi-frame receipts (starting at 1).
last_framebooleanMarks the last frame in a multi-frame session or indicates single-frame receipts.

Image URLs (Application/x-www-form-urlencoded)

Use this method to pass URLs pointing to receipt images.

Required Parameters

ParameterTypeDescription
license_keystringYour BlinkReceipt API license key.
image_urls[0]stringPublicly accessible URL of the receipt image.
detect_duplicatesbooleanEnables duplicate detection for submitted receipts.