Endpoint Playground
Test Crawlora's Get a Zalando product 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/product?sku=<sku>&market=at" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| sku | string | Yes | Zalando product SKU (article number) from zalando-search or zalando-category | |
| market | string | Yes | at | Zalando country storefront the sku was found in |
{
"code": 200,
"data": {
"fetched_at": "sample",
"market": "de",
"product": {
"brand": "On",
"color": "white white/white",
"currency": "EUR",
"description": "sample",
"images": [
"sample"
],
"name": "CLOUD 6 - Trainers - white white",
"price": 160,
"sku": "ONM11A03W-A12",
"url": "https://en.zalando.de/on-cloud-trainers-white-white-onm11a03w-a12.html",
"variants": [
{
"availability": "InStock",
"currency": "EUR",
"gtin": "7615537206202",
"price": 160,
"size": "42",
"sku": "ONM11A03W-A120010000",
"url": "https://example.com/resource"
}
]
},
"source_url": "https://example.com/resource"
},
"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.
Returns normalized product details for one Zalando product, including brand, description, images, and per-size price/availability/GTIN. Pass the sku returned by zalando-search or zalando-category; Zalando's own site search resolves the sku to its canonical product page. market is required and must match the storefront the sku was found in (there is no default, and a sku is generally only listed for sale on the market(s) that carry it) — see zalando-markets for the full reference list.
{
"code": 200,
"data": {
"fetched_at": "sample",
"market": "de",
"product": {
"brand": "On",
"color": "white white/white",
"currency": "EUR",
"description": "sample",
"images": [
"sample"
],
"name": "CLOUD 6 - Trainers - white white",
"price": 160,
"sku": "ONM11A03W-A12",
"url": "https://en.zalando.de/on-cloud-trainers-white-white-onm11a03w-a12.html",
"variants": [
{
"availability": "InStock",
"currency": "EUR",
"gtin": "7615537206202",
"price": 160,
"size": "42",
"sku": "ONM11A03W-A120010000",
"url": "https://example.com/resource"
}
]
},
"source_url": "https://example.com/resource"
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/zalando/product?sku=<sku>&market=<market>" \
-H "x-api-key: $CRAWLORA_API_KEY"