Skip to main content
POST
/
api
/
kaufland
/
sellers
/kaufland/sellers
curl --request POST \
  --url https://api.anysite.io/api/kaufland/sellers \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "seller": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "@type": "@kaufland_seller",
    "name": "<string>",
    "alias": "<string>",
    "url": "<string>",
    "product_count": 123,
    "products": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
seller
string
required

Kaufland.de seller (shop) name or a shop URL containing it

Minimum string length: 1
Examples:

"ANTCOOL"

"https://www.kaufland.de/shops/ANTCOOL/"

count
integer
required

Max number of seller products to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

@type
string
default:@kaufland_seller
name
string | null
alias
string | null
url
string | null
product_count
integer | null
products
KauflandSearchProduct · object[]