Skip to main content
POST
/
api
/
jumbo
/
products
/jumbo/products
curl --request POST \
  --url https://api.anysite.io/api/jumbo/products \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "product": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@jumbo_product",
    "ean": "<string>",
    "title": "<string>",
    "subtitle": "<string>",
    "brand": "<string>",
    "brand_url": "<string>",
    "category": "<string>",
    "categories": [],
    "description": "<string>",
    "url": "<string>",
    "image": "<string>",
    "images": [],
    "price": 123,
    "list_price": 123,
    "price_per_unit": 123,
    "price_unit": "<string>",
    "availability": {
      "@type": "@jumbo_availability",
      "status": "<string>",
      "is_available": true,
      "label": "<string>",
      "stock_limit": 123,
      "reason": "<string>",
      "note": "<string>"
    },
    "ingredients": "<string>",
    "allergens_contains": [],
    "allergens_may_contain": [],
    "nutrition_table": {
      "@type": "@jumbo_nutrition_table",
      "columns": [],
      "rows": []
    },
    "nutriscore": "<string>",
    "nutriscore_image": "<string>",
    "storage": "<string>",
    "recycling": "<string>",
    "preparation_and_usage": "<string>",
    "origin": "<string>",
    "regulated_product_name": "<string>",
    "additives": "<string>",
    "nutrition_health_claims": "<string>",
    "alcohol_by_volume": 123,
    "mandatory_information": "<string>",
    "safety": "<string>",
    "safety_warning": "<string>",
    "drained_weight": 123,
    "fish_catch_area": "<string>",
    "fish_origin": "<string>",
    "fish_place_of_provenance": "<string>",
    "place_of_rearing": "<string>",
    "place_of_slaughter": "<string>",
    "place_of_birth": "<string>",
    "manufacturer": {
      "@type": "@jumbo_manufacturer",
      "description": "<string>",
      "address": "<string>",
      "phone": "<string>",
      "website": "<string>"
    },
    "promotions": [],
    "badges": [],
    "characteristics": [],
    "is_medicine": false,
    "is_retail_set": false,
    "replacement_product_url": "<string>",
    "alternatives": [],
    "cross_sells": [],
    "retail_set_products": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
product
string
required

Jumbo product id (SKU) or a product URL containing it

Minimum string length: 1
Examples:

"184179DS"

"https://www.jumbo.com/producten/jumbo-halfvolle-melk-2-l-771364CAN"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
@type
string
default:@jumbo_product
ean
string | null
title
string | null
subtitle
string | null
brand
string | null
brand_url
string | null
category
string | null
categories
JumboCategory · object[]
description
string | null
url
string | null
image
string | null
images
string[]
price
number | null
list_price
number | null
price_per_unit
number | null
price_unit
string | null
availability
JumboAvailability · object
ingredients
string | null
allergens_contains
string[]
allergens_may_contain
string[]
nutrition_table
JumboNutritionTable · object
nutriscore
string | null
nutriscore_image
string | null
storage
string | null
recycling
string | null
preparation_and_usage
string | null
origin
string | null
regulated_product_name
string | null
additives
string | null
nutrition_health_claims
string | null
alcohol_by_volume
number | null
mandatory_information
string | null
safety
string | null
safety_warning
string | null
drained_weight
number | null
fish_catch_area
string | null
fish_origin
string | null
fish_place_of_provenance
string | null
place_of_rearing
string | null
place_of_slaughter
string | null
place_of_birth
string | null
manufacturer
JumboManufacturer · object
promotions
JumboPromotion · object[]
badges
JumboBadge · object[]
characteristics
JumboCharacteristic · object[]
is_medicine
boolean
default:false
is_retail_set
boolean
default:false
replacement_product_url
string | null
alternatives
JumboRelatedProduct · object[]
cross_sells
JumboRelatedProduct · object[]
retail_set_products
JumboRelatedProduct · object[]