Skip to main content
POST
/
api
/
zalando
/
products
/
search
/zalando/products/search
curl --request POST \
  --url https://api.anysite.io/api/zalando/products/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "keyword": "<string>",
  "count": 2,
  "timeout": 300,
  "brand": "<string>",
  "size": "<string>",
  "color": "<string>",
  "min_price": 1,
  "max_price": 1,
  "sort": "popularity"
}
'
[
  {
    "id": "<string>",
    "url": "<string>",
    "@type": "@zalando_search_product",
    "name": "<string>",
    "brand": "<string>",
    "color": "<string>",
    "price": 123,
    "list_price": 123,
    "discount_percentage": 123,
    "currency": "<string>",
    "lowest_price_30d": 123,
    "image": "<string>",
    "gender": "<string>",
    "is_sponsored": false
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
keyword
string
required

Search keyword

Minimum string length: 1
Examples:

"sneaker"

"red dress"

"leather jacket"

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
brand
string | null

Restrict results to a single brand (Zalando brand slug, e.g. nike, adidas-originals).

size
string | null

Restrict results to a size (e.g. M, 42, XL).

color
string | null

Restrict results to a colour (e.g. red, black, blue).

min_price
number | null

Minimum price in EUR.

Required range: x > 0
max_price
number | null

Maximum price in EUR.

Required range: x > 0
sort
enum<string>
default:popularity

Result ordering.

Available options:
popularity,
activation_date,
price_asc,
price_desc,
sale

Response

Successful Response

id
string
required
url
string
required
@type
string
default:@zalando_search_product
name
string | null
brand
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
gender
string | null
is_sponsored
boolean
default:false