Skip to main content
POST
/
api
/
jumbo
/
products
/
search
/jumbo/products/search
curl --request POST \
  --url https://api.anysite.io/api/jumbo/products/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "keyword": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@jumbo_search_product",
    "title": "<string>",
    "subtitle": "<string>",
    "brand": "<string>",
    "category": "<string>",
    "image": "<string>",
    "url": "<string>",
    "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>"
    },
    "is_in_assortment": true,
    "is_sponsored": false,
    "promotions": [],
    "badges": [],
    "characteristics": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
keyword
string
required

Search keyword

Minimum string length: 1
Examples:

"pindakaas"

"melk"

count
integer
required

Max number of results to return

Required range: x >= 1
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_search_product
title
string | null
subtitle
string | null
brand
string | null
category
string | null
image
string | null
url
string | null
price
number | null
list_price
number | null
price_per_unit
number | null
price_unit
string | null
availability
JumboAvailability · object
is_in_assortment
boolean | null
is_sponsored
boolean
default:false
promotions
JumboPromotion · object[]
badges
JumboBadge · object[]
characteristics
JumboCharacteristic · object[]