What can you do with the Jumbo product API?
- Scrape product information, including title, brand, category, EAN, SKU, currency, offers, and content (description, images, specs, and reviews) for a given EAN on Jumbo.nl.
API response
request_id | unique ShoppingScraper request_id |
query link | the requested url from ShoppingScraper |
ean | the requested EAN code |
endpoint | type of endpoint used |
app | chosen app |
metadata | additional metadata to be used for your own internal references |
geo | selected country for request |
language | selected language |
status | server response from the request (200/404/500) |
message | status message from the request |
stats | number of sellers found for this EAN |
timestamp | record of the time of the request |
pagespeed | amount of seconds of request |
results | type of data returned |
title | matched product title with EAN |
brand | brand of the product |
category name and url | name of category and bread crumb link of the product |
ean | requested EAN |
extended | additional EAN codes how this product can be identified |
sku | retailer product id |
link | link to product page |
currency | used currency of country |
stats offers | number of offers found for this EAN |
offers price | price of product at specific seller offer |
offers shipment | shipment type of seller offer |
offers shippingCosts | shipping costs of specific seller offer |
offers availability | availability of specific product offer |
offers promise | delivery promise of the product |
offers state | state of specific product offer |
offers ranking | ranking of product offer |
content description | description found |
content images thumbnail | image found |
reviews count | total count of number of reviews |
Matching
We only return data if we are 100% certain. We match products based on the EAN/GTIN code.
Sample URL
https://api.shoppingscraper.com/product/jumbo/{COUNTRY_CODE}/{EAN_GTIN}?api_key={API_KEY}&metadata={producitd:5555}
Sample payload
{ "shoppingscraper": { "request_id": "3396374e-c685-4d5b-919d-13bcc7b06628", "query": { "link": "http://api.shoppingscraper.com/product/jumbo/nl/8718452633364?api_key=xxx", "ean": "8718452633364" }, "endpoint": { "type": "page", "app": "jumbo" }, "metadata": { }, "geo": { "country": "nl", "language": "nl" }, "status": { "response": 200, "message": "OK" }, "stats": { "results": 1, "timestamp": "Fri Mar 03 2023 13:32:59 UTC+0000", "pagespeed": 10.074 }, "results": [ { "classification": "product", "title": "Jumbo - Gevouwen Flatbreads Naturel - 4 Stuks", "brand": "JUMBO", "category": [ { } ], "ean": "8718452633364", "extended": { }, "sku": "466646PAK", "currency": "EUR", "ranking": { }, "stats": { "offers": 1 }, "offers": [ { "price": 1.97, "shipment": "standard", "shippingCosts": 0.0, "state": "new", "ranking": { "productList": 1 } } ], "content": { "specs": [ ], "description": "Dit brood bevat 3,7 g voedingsvezels per 100 g", "images": [ "https://static-images.jumbo.com/product_images/270720222117_466646PAK-1_360x360_2.png" ], "reviews": { } }, "thumbnail": "https://static-images.jumbo.com/product_images/270720222117_466646PAK-1_360x360_2.png", "reviews": { } } ] } }