Skip to main content
POST
/
api
/
zalando
/
products
/zalando/products
curl --request POST \
  --url https://api.anysite.io/api/zalando/products \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "product": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "url": "<string>",
    "@type": "@zalando_product",
    "name": "<string>",
    "brand": "<string>",
    "brand_alias": "<string>",
    "color": "<string>",
    "price": 123,
    "list_price": 123,
    "discount_percentage": 123,
    "currency": "<string>",
    "lowest_price_30d": 123,
    "image": "<string>",
    "images": [],
    "description": "<string>",
    "category": "<string>",
    "category_id": "<string>",
    "is_in_stock": true,
    "silhouette": "<string>",
    "gender": "<string>",
    "flags": [],
    "return_policy": "<string>",
    "delivery_label": "<string>",
    "highlights": [],
    "sizes": [],
    "attributes": {},
    "variant_count": 123,
    "variants": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
product
string
required

Zalando product URL (a canonical product page address ending in -{config-sku}.html)

Minimum string length: 1
Example:

"https://www.zalando.de/nike-sportswear-court-borough-recraft-unisex-sneaker-low-white-ni116d0lr-a15.html"

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_product
name
string | null
brand
string | null
brand_alias
string | null
color
string | null
price
number | null
list_price
number | null
discount_percentage
number | null
currency
string | null
lowest_price_30d
number | null
image
string | null
images
string[]
description
string | null
category
string | null
category_id
string | null
is_in_stock
boolean | null
silhouette
string | null
gender
string | null
flags
string[]
return_policy
string | null
delivery_label
string | null
highlights
string[]
sizes
ZalandoProductSize · object[]
attributes
Attributes · object
variant_count
integer | null
variants
ZalandoProductVariant · object[]