Beslist.nl Scraper avatar

Beslist.nl Scraper

Pricing

Pay per event

Go to Apify Store
Beslist.nl Scraper

Beslist.nl Scraper

Pricing

Pay per event

Rating

0.0

(0)

Developer

SR

SR

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

10 hours ago

Last modified

Share

Point it at a Beslist category or search term and it returns the products with their barcodes, the cheapest and dearest price across every shop selling them, and how many shops that is.

No login, no cookie, no API key. It reads the ordinary browse page from an exit inside the Netherlands, so the prices are the ones Dutch shoppers actually see.

What you get

  • The EAN in the product URL on catalogue products, so one browse page hands you dozens of barcodes without opening a single product page. That is an exact join key against your own catalogue, against Amazon, against Google Shopping. Coverage depends on the category: electronics runs at or near 100%, apparel at zero, and product_id carries Beslist's own identifier either way
  • A real price range, not a single number. lowest_offer and highest_offer are the cheapest and dearest of the shops selling that product, and price_spread is the difference. On laptops that spread runs to €250 on a single model
  • How many shops sell it, read from the card's own "Vergelijk 3 prijzen" link. A product sold by one shop and a product sold by eight are completely different competitive situations
  • The range cross-checked against the page's own structured data, with the number of mismatches reported in the run summary. If the two ever disagree you find out from the summary rather than from a bad decision
  • Selectors built to survive a frontend deploy. Beslist ships hashed CSS module class names; every selector here matches the stable prefix, never the hash
  • Soft blocks detected rather than parsed. A 202 carrying a 2 KB shell is retried, not reported as an empty category
  • ean_only for catalogue work, which drops rows that carry no barcode

Why a comparison site instead of a shop

A shop tells you its own price. A comparison site tells you the market's.

For pricing work that difference is everything. If you sell a product for €629 you cannot tell from your own site whether that is competitive. Beslist lists the same barcode across every merchant carrying it and prints the cheapest and dearest, which is the number you need: not "what does this cost" but "what is the range, and where in it am I".

The barcode is what makes it usable at scale. Most retail scrapers return a title and a price, and joining those to your own products means fuzzy string matching that is wrong often enough to be dangerous. An EAN is exact. In the categories that carry them, and electronics and appliances do, that turns Beslist from a website into a lookup table you can join against. The run summary reports the coverage so you never have to assume it.

Input

FieldTypeRequiredDefaultWhat it does
querystringone of the twolaptopsWhat to look up. Dutch terms work best
urlstringone of the twoA beslist.nl category or search URL. Takes precedence
limitintegerno50Products to return, 1 to 900. A page carries about 45
ean_onlybooleannofalseDrop rows with no barcode in the URL
retriesintegerno3Retry attempts per page

Output

{
"position": 2,
"ean": "0199896035279",
"url": "https://www.beslist.nl/p/hp-17-cn4853nd-laptop-17-3-inch/6/0199896035279/",
"title": "HP - 17-cn4853nd - Laptop - 17.3 Inch - Intel Core 7",
"price": 599.0,
"lowest_offer": 599.0,
"highest_offer": 729.0,
"price_spread": 130.0,
"price_text": "€599,- - €729,-",
"currency": "EUR",
"offer_count": 2,
"structured_low": 599.0,
"structured_high": 729.0,
"is_popular": false,
"image": "https://hwimages.beslist.net/...",
"enriched": true,
"query": "laptops"
}

Use cases

Finding where you sit in the market. Run your category, join on ean against your own catalogue, and compare your price to lowest_offer. Every product where you are above it is one you are losing on price, and price_spread tells you how much room the market actually has.

Finding products worth stocking. A high price_spread with a high offer_count means a competitive product where shops still disagree on price, which is where margin hides. A zero spread means everyone charges the same and there is nothing to win.

Building an EAN list for a category. Set ean_only and raise limit, and one run gives you the barcodes for a whole category. Feed those to an Amazon, Google Shopping or bol.com lookup and you have the same products priced on every channel.

Watching a competitor's price moves. Schedule the same category daily and diff lowest_offer per ean. A drop in the minimum means somebody undercut, and offer_count tells you whether a new seller arrived.

Sanity-checking your own feed. If your product is on Beslist, its barcode appears here with the price the market shows. A mismatch against what you believe you charge usually means a stale feed.

How it compares

this actorstealth_mode/beslist-product-search-scraperharvestedge/dutch-supermarkets-all-11
Per 1.000 products$2,00no per-item rate at all$5,00
Actor-start fee$0,002$0,005none
EAN per rowyes, where the category has themnot statedno
Price range across merchantsyesnono
Number of shops per productyesnono
Range verified against structured datayesnono
Monthly usersnew15

Honest about the other side: harvestedge has five monthly users and covers eleven Dutch supermarkets, which is a different job entirely and one this actor does not do. On Beslist itself the only competitor has one user and charges a flat fee per run with no per-row rate, so a large run there is cheaper than here and a small one is dearer.

Pricing

Two events. run_start costs $0,002 per run. product costs $0,0020 per product written to the dataset, which is $2,00 per 1.000. Pages that come back as a challenge shell never reach the dataset and are never billed. All pricing is pay-per-event, with no per-compute-unit charges.

Limits and gotchas

  • lowest_offer and highest_offer are a range, not a discount. The card prints them as two prices side by side and they look exactly like a was/now markdown. They are not. The page's own structured data reports the same pair as lowPrice and highPrice of an aggregate offer. Treating the higher one as a former price would tell you half a category is on sale when none of it is.
  • Structured data covers the first ten products only. structured_low and structured_high are present on those and absent on the rest. The DOM range is on every row either way; the structured pair exists to verify it, and structuredMismatches in the run summary is the check.
  • EAN coverage is a category property, not a quality one. Beslist runs two id schemes in the same URL slot: a barcode for catalogue products and a V4_<uuid> for a merchant's own listing. Electronics categories return barcodes on essentially every row; apparel searches return none at all, because sneakers are listed per merchant rather than per catalogue entry. Check withEan in the run summary before building a join, and use ean_only to drop the rest.
  • An unknown search term returns HTTP 404, because Beslist has no empty-results page. The run reports no_results and exits successfully rather than failing.
  • The card and the structured data occasionally disagree, almost always on the from-price and by a few euros. Neither is a parse error; the card is what a shopper sees, so lowest_offer follows the card and structured_low is returned beside it. structuredMismatches in the summary counts them, typically one row in ten.
  • Class names are hashed and will change. Beslist ships CSS modules, so price--FX-nM becomes something else on their next frontend build. Every selector here matches the prefix before the hash, which is what makes that survivable, but a large enough redesign still needs a new parser.
  • A 202 with a tiny body is a block, not an empty page. It is retried with a fresh fingerprint and reported as stub_page if it persists, rather than being written out as zero products.
  • The offer count is what the card claims. It comes from Beslist's own "Vergelijk N prijzen" text and reflects merchants in their index, not every shop in the country.

FAQ

Can I get EAN barcodes from Beslist without opening every product page? Yes, and that is the main reason to use this. The barcode is in the product URL on the browse page, so a single page yields about 45 of them.

Is the second price a discount? No. It is the most expensive offer among the shops selling that product. price and lowest_offer are the cheapest, highest_offer the dearest, and price_spread the gap.

Why does my apparel search return no barcodes? Because apparel is listed per merchant on Beslist, not per catalogue product, so those URLs carry a V4_ identifier instead of an EAN. product_id still gives you a stable key. Electronics and appliance categories return real barcodes.

Why do some products show the same price twice? Because every shop selling it charges the same, so the range has zero width. price_spread is 0 on those.

How many products can I get in one run? Up to 900, which is about 20 pages. Beyond that, split by category.

Does it return each individual shop's price? No. It returns the range, the count and the barcode from the browse page. The per-merchant breakdown lives on the product page, which this actor does not open.