Skip to main content
POST
/
api
/
kaufland
/
products
/kaufland/products
curl --request POST \
  --url https://api.anysite.io/api/kaufland/products \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "product": "<string>",
  "timeout": 300,
  "storefront": "de"
}
'
[
  {
    "id": "<string>",
    "@type": "@kaufland_product",
    "title": "<string>",
    "description": "<string>",
    "seo_title": "<string>",
    "brand": "<string>",
    "brand_url": "<string>",
    "image": "<string>",
    "images": [],
    "price": 123,
    "uvp": 123,
    "reference_price": 123,
    "currency": "<string>",
    "condition": "<string>",
    "amount_left": 123,
    "is_in_stock": true,
    "seller": {
      "@type": "@kaufland_product_seller",
      "id": 123,
      "name": "<string>",
      "shop_url": "<string>",
      "return_period": "<string>",
      "is_direct_seller": true
    },
    "delivery_time": "<string>",
    "rating": 123,
    "review_count": 123,
    "category_id": 123,
    "category": "<string>",
    "breadcrumbs": [],
    "attributes": [],
    "is_bestseller": true,
    "release_date": "<string>",
    "ai_summary": []
  }
]

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

id
string
required
@type
string
default:@kaufland_product
title
string | null
description
string | null
seo_title
string | null
brand
string | null
brand_url
string | null
image
string | null
images
string[]
price
number | null
uvp
number | null
reference_price
number | null
currency
string | null
condition
string | null
amount_left
integer | null
is_in_stock
boolean | null
seller
KauflandProductSeller · object
delivery_time
string | null
rating
number | null
review_count
integer | null
category_id
integer | null
category
string | null
breadcrumbs
string[]
attributes
KauflandProductAttribute · object[]
is_bestseller
boolean | null
release_date
string | null
ai_summary
string[]