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
| Parameter | Type | Description | Required |
|---|---|---|---|
merchant | string | The name of the merchant where the purchase was made, as returned in the merchant_name property from Scan API. | Yes |
purchase_date | string | The date of the purchase in YYYY-MM-DD format. | No |
products | array | A list of products purchased. | Yes |
products[].description | string | The description of the product. | Yes |
products[].product_number | string | The product identifier number. | No |
products[].product_name | string | The full product name of the requested product. | No |
products[].full_price | float | The original price of the product before discounts. | No |
products[].unit_price | float | The final price per unit after any discounts. | Yes |
country_code | string | 2 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
}
]
}