Skip to main content
POST
/
api
/
kaufland
/
products
/
buy-box
/kaufland/products/buy-box
curl --request POST \
  --url https://api.anysite.io/api/kaufland/products/buy-box \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "product": "<string>",
  "timeout": 300,
  "storefront": "de"
}
'
[
  {
    "@type": "@kaufland_buy_box",
    "unit_id": "<string>",
    "price": 123,
    "uvp": 123,
    "reference_price": 123,
    "discount_off_uvp": 123,
    "currency": "<string>",
    "condition": "<string>",
    "amount_left": 123,
    "is_in_stock": true,
    "delivery_time": "<string>",
    "delivery_days_max": 123,
    "shipping_rate": 123,
    "fulfillment_type": "<string>",
    "seller": {
      "@type": "@kaufland_buy_box_seller",
      "id": 123,
      "name": "<string>",
      "shop_url": "<string>",
      "return_period": "<string>",
      "is_direct_seller": true
    }
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
product
string
required

Kaufland.de product id or a product URL containing it

Minimum string length: 1
Examples:

"483046862"

"https://www.kaufland.de/product/483046862/"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
storefront
enum<string>
default:de
Available options:
de,
at,
cz,
sk,
it,
fr

Response

Successful Response

@type
string
default:@kaufland_buy_box
unit_id
string | null
price
number | null
uvp
number | null
reference_price
number | null
discount_off_uvp
number | null
currency
string | null
condition
string | null
amount_left
integer | null
is_in_stock
boolean | null
delivery_time
string | null
delivery_days_max
integer | null
shipping_rate
number | null
fulfillment_type
string | null
seller
KauflandBuyBoxSeller · object