Skip to main content
POST
/
api
/
kaufland
/
products
/
offers
/kaufland/products/offers
curl --request POST \
  --url https://api.anysite.io/api/kaufland/products/offers \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "product": "<string>",
  "timeout": 300,
  "storefront": "de"
}
'
[
  {
    "@type": "@kaufland_offer",
    "id": "<string>",
    "price": 123,
    "currency": "<string>",
    "condition": "<string>",
    "delivery_rate": 123,
    "delivery_time": "<string>",
    "fulfillment_type": "<string>",
    "is_hauler": true,
    "seller": {
      "@type": "@kaufland_offer_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_offer
id
string | null
price
number | null
currency
string | null
condition
string | null
delivery_rate
number | null
delivery_time
string | null
fulfillment_type
string | null
is_hauler
boolean | null
seller
KauflandOfferSeller · object