Skip to main content
POST
/
api
/
kaufland
/
categories
/
products
/kaufland/categories/products
curl --request POST \
  --url https://api.anysite.io/api/kaufland/categories/products \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "category": "<string>",
  "count": 2,
  "timeout": 300,
  "sorting": "natural",
  "min_price": 1,
  "max_price": 1,
  "deals_only": false,
  "filters": {}
}
'
[
  {
    "id": "<string>",
    "@type": "@kaufland_search_product",
    "title": "<string>",
    "url": "<string>",
    "image": "<string>",
    "price": 123,
    "list_price": 123,
    "currency": "<string>",
    "condition": "New",
    "seller_name": "<string>",
    "delivery": "<string>",
    "rating": 123,
    "review_count": 123,
    "is_bestseller": false
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
category
string
required

Kaufland.de category id or a category URL containing it

Minimum string length: 1
Examples:

"53071"

"https://www.kaufland.de/c/spielkonsolen/~53071/"

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
sorting
enum<string>
default:natural
Available options:
natural,
price-asc,
price-desc,
newest-arrivals,
customer-reviews,
bestsellers
min_price
number | null

Minimum price filter in EUR

Required range: x >= 0
max_price
number | null

Maximum price filter in EUR

Required range: x >= 0
rating
enum<string> | null

Minimum average star rating filter

Available options:
1,
2,
3,
4
delivery
enum<string> | null

Delivery benefit filter

Available options:
free_delivery,
3d
deals_only
boolean
default:false

Only return products that are currently on deal

filters
Filters · object

Category-specific attribute facet filters keyed by the numeric facet id, e.g. {'21': '1351889'} for a brand or {'351': '1883'} for a colour.

Response

Successful Response

id
string
required
@type
string
default:@kaufland_search_product
title
string | null
url
string | null
image
string | null
price
number | null
list_price
number | null
currency
string | null
condition
string
default:New
seller_name
string | null
delivery
string | null
rating
number | null
review_count
integer | null
is_bestseller
boolean
default:false