Skip to main content
POST
/
api
/
zalando
/
brands
/
products
/zalando/brands/products
curl --request POST \
  --url https://api.anysite.io/api/zalando/brands/products \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "brand": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "url": "<string>",
    "@type": "@zalando_brand_product",
    "name": "<string>",
    "brand": "<string>",
    "price": 123,
    "list_price": 123,
    "discount_percentage": 123,
    "currency": "<string>",
    "image": "<string>",
    "silhouette": "<string>",
    "gender": "<string>",
    "flags": [],
    "sizes": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
brand
string
required

Zalando brand alias (the brand page URL segment, e.g. 'nike-sportswear') or full brand URL

Minimum string length: 1
Example:

"nike-sportswear"

count
integer
required

Max number of 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

id
string
required
url
string
required
@type
string
default:@zalando_brand_product
name
string | null
brand
string | null
price
number | null
list_price
number | null
discount_percentage
number | null
currency
string | null
image
string | null
silhouette
string | null
gender
string | null
flags
string[]
sizes
ZalandoBrandProductSize · object[]