Skip to main content
POST
/
api
/
kaufland
/
products
/
reviews
/kaufland/products/reviews
curl --request POST \
  --url https://api.anysite.io/api/kaufland/products/reviews \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "product": "<string>",
  "count": 2,
  "timeout": 300,
  "sorting": "bestFirst"
}
'
[
  {
    "@type": "@kaufland_review",
    "id": 123,
    "rating": 123,
    "title": "<string>",
    "text": "<string>",
    "author": "<string>",
    "date": "<string>",
    "created_at": "<string>",
    "is_verified_purchase": true,
    "is_product_test": true,
    "external_source": "<string>",
    "media": []
  }
]

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/"

count
integer
required

Max number of reviews 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:bestFirst
Available options:
bestFirst,
worstFirst,
newestFirst,
oldestFirst

Response

Successful Response

@type
string
default:@kaufland_review
id
integer | null
rating
integer | null
title
string | null
text
string | null
author
string | null
date
string | null
created_at
string | null
is_verified_purchase
boolean | null
is_product_test
boolean | null
external_source
string | null
media
string[]