Skip to main content
POST
/
api
/
kaufland
/
products
/
variants
/kaufland/products/variants
curl --request POST \
  --url https://api.anysite.io/api/kaufland/products/variants \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "product": "<string>",
  "timeout": 300,
  "storefront": "de"
}
'
[
  {
    "@type": "@kaufland_variant_group",
    "name": "<string>",
    "title": "<string>",
    "items": []
  }
]

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:

"417061639"

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

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_variant_group
name
string | null
title
string | null
items
KauflandVariantItem · object[]