Endpoint Playground
Test Crawlora's Search Zalando products API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/zalando/search?q=<q>&market=at" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | Yes | Product search keyword | |
| market | string | Yes | at | Zalando country storefront |
{
"code": 200,
"data": {
"count": 24,
"fetched_at": "sample",
"market": "de",
"products": [
{
"brand": "On",
"condition": "NEW",
"currency": "EUR",
"discount_percent": 20,
"image": "sample",
"name": "CLOUD 6 - Trainers - white white",
"original_price": 199.95,
"price": 160,
"silhouette": "LOW_SHOE",
"sku": "ONM11A03W-A12",
"url": "https://en.zalando.de/on-cloud-trainers-white-white-onm11a03w-a12.html"
}
],
"query": "running shoes",
"source_url": "https://example.com/resource",
"total_count": 4911
},
"msg": "OK"
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Searches a Zalando country storefront by keyword and returns normalized result cards with price, brand, and image. Returns the first page of results as rendered by Zalando plus the upstream total_count; deeper pagination is not yet supported. market is required (there is no default storefront) and accepts 25 country storefronts — see zalando-markets for the full current list with domains.
{
"code": 200,
"data": {
"count": 24,
"fetched_at": "sample",
"market": "de",
"products": [
{
"brand": "On",
"condition": "NEW",
"currency": "EUR",
"discount_percent": 20,
"image": "sample",
"name": "CLOUD 6 - Trainers - white white",
"original_price": 199.95,
"price": 160,
"silhouette": "LOW_SHOE",
"sku": "ONM11A03W-A12",
"url": "https://en.zalando.de/on-cloud-trainers-white-white-onm11a03w-a12.html"
}
],
"query": "running shoes",
"source_url": "https://example.com/resource",
"total_count": 4911
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/zalando/search?q=<q>&market=<market>" \
-H "x-api-key: $CRAWLORA_API_KEY"