Endpoint Playground
Test Crawlora's Browse a Zalando category or brand 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/category?category=<category>&market=at" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| category | string | Yes | Zalando category or brand URL slug, in the target market's own language | |
| market | string | Yes | at | Zalando country storefront |
{
"code": 200,
"data": {
"category": "shoes",
"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"
}
],
"source_url": "https://example.com/resource",
"total_count": 145032
},
"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.
Browses a Zalando category or brand listing by URL slug (e.g. shoes, womens-dresses, on-running) and returns the same normalized result cards as zalando-search, plus the category's upstream total_count. Category slugs are market-specific (each storefront uses its own local-language slug, e.g. "shoes" on de/gb, "chaussures" on fr, "scarpe" on it) — take them from that market's own site navigation or a product's url field. 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": {
"category": "shoes",
"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"
}
],
"source_url": "https://example.com/resource",
"total_count": 145032
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/zalando/category?category=<category>&market=<market>" \
-H "x-api-key: $CRAWLORA_API_KEY"