Skip to main content

Making Requests

Endpoint

POST https://prodintel-api.blinkreceipt.com/product_lookup


Authentication

To use the API, you'll need a valid API key, which is provided by your account rep. This key serves as your unique identifier and grants access to the API.

Pass your API key with every request in the X-API-Key header field


Request Structure

ParameterTypeDescriptionRequired
merchantstringThe name of the merchant where the purchase was made, as returned in the merchant_name property from Scan API.Yes
purchase_datestringThe date of the purchase in YYYY-MM-DD format.No
productsarrayA list of products purchased.Yes
products[].descriptionstringThe description of the product.Yes
products[].product_numberstringThe product identifier number.No
products[].product_namestringThe full product name of the requested product.No
products[].full_pricefloatThe original price of the product before discounts.No
products[].unit_pricefloatThe final price per unit after any discounts.Yes
country_codestring2 letter country code abbreviation, defaults to "US"No

Example Request

{
"merchant": "Kroger",
"purchase_date": "2024-03-04",
"products": [
{
"description": "KRO SALTINES",
"product_number": "12345789",
"full_price": 6.99,
"unit_price": 4.99
}
]
}