string
Search for all words in the product name, fuzzy matches "grandiosa
kjøttdeig løk" -> "Grandiosa Pizza Kjøttdeig&Løk 520g Stabburet"
page
optional
integer
The page to return, defaults to 1
size
optional
integer
How many results to return, 10 by default, 100 maximum
vendor
optional
string
Filter products that is provided by a certain vendor ex: "Orkla
foods"
brand
optional
string
Filter products that is of a certain brand ex: "Bama"
category_id
optional
integer
Filter products by category ID
category
optional
string
Filter products by category name (partial match, minimum 3
characters)
price_min
optional
number
Only show products where the current price is larger than the number
provided
unique
optional
boolean
Dont include duplicate products, will essentially only return one
product with the same EAN, this is useful if you are using the API
for auto-complete purposes, and don't want the same products but
from different stores to show up in your search results.
exclude_without_ean
optional
boolean
Excludes products where the EAN number is unknown/missing. (Useful
if you are manually grouping products by EAN to use in your own
system, so you don't have to deal with that edge-case).
price_max
optional
number
Only show products where the current price is smaller than the
number provided
sort
optional
date_asc
Sort by date ascending, aka oldest products first
date_desc
Sort by date descending, aka newest products first
name_asc
Sort alphabetically product name (A > Å)
name_desc
Sort alphabetically product name in reverse order (Å >
A)
price_asc
Sort by price ascending, cheapest products first
price_desc
Sort by price descending, most expensive products first
Note:
This is a POST endpoint. Send a JSON body with the parameters below.
eans
required
array
Array of EAN codes (barcodes) to get price history for.
Maximum 100 EANs per request.
Example: ["7039010019828", "7038010055737"]
days
optional
integer
Number of days of price history to include.
Default: 30 days
Maximum: 90 days (regular users) / 365 days (premium API users)
aggregation
optional
string
Price aggregation method for daily prices.
Since multiple price points may exist per day, this determines which price to show.
Options: "min" (lowest price), "max" (highest price), "avg" (average price)
Default: "min"