Zalando Price Comparator
2 hours trial then $15.00/month - No credit card required now
Zalando Price Comparator
2 hours trial then $15.00/month - No credit card required now
Zalando: scrape without stressing! Skip the bloated browser-based tools. My Zalando scraper extracts price and stock data from all Zalando stores. Scrape prices and remainders, all without Puppeteer or Playwright. ⚡️
🔍 What is the Zalando Price Comparator?
This is a fast and efficient scraper for Zalando that allows you to retrieve price and stock data for any product size in different countries where Zalando stores are located. The scraper also retrieves data both in the original sales currency of the product and converts it to euros using the open API frankfurter.app Find the best price for the product you are interested in!
What can I use this actor for?
- Price comparison: If you have a SKU of an item, do a quick price check on that item. You can check several Zalando products at the same time.
- Availability check: Is the item you are interested in not available in your country? Use the Zalando Price Comparator to find out in which country the desired item is available in the size you need.
- Get up-to-date information: You can set Actor to run regularly to keep track of price changes for the items you are interested in. Use convenient ApiFy integrations to incorporate this data into your business.
- Find the best deal: The difference in the price of a product in different countries can be more than 25% of the product price.
⬇️ Input
Actor is very easy to use. To start its work you only need to know the SKU of the product and the countries for which you need to check. Use Apify proxy for stable work of Actor
1{ 2 "skus": [ 3 "NAA21C2FA-B11" 4 ], 5 "countries": [ 6 "at", 7 "be", 8 "hr", 9 "cz", 10 "de", 11 "fr", 12 "fi", 13 "ee", 14 "dk", 15 "hu", 16 "ie", 17 "it", 18 "lv", 19 "lu", 20 "lt", 21 "nl", 22 "pl", 23 "no", 24 "ro", 25 "sk", 26 "si", 27 "es", 28 "se", 29 "ch" 30 ], 31 "proxySettings": { 32 "useApifyProxy": true, 33 "apifyProxyGroups": [ 34 "RESIDENTIAL" 35 ] 36 } 37}
Parameter | Type | Decription |
---|---|---|
skus | Array[string] | SKUs for Zalando products |
countries | Array[string] | List of countries of Zalando stores that will be searched for |
proxySettings | object | Proxy settings in accordance with Apify standard configuration |
⬆️ Output
Actor checks all products from the SKU list in each country from the country list. From each page, it extracts data about sizes, remainders for a size, and price for that size; if the price is specified in local currency, a field is added with the price in euros. Note that for each SKU - SIZE combination, a separate row of results is assigned to avoid overly complex nested structure. Example of results for a product.
1[ 2 { 3 "sku": "N2T21G001-C11", 4 "size": "36", 5 "data": [ 6 { 7 "country": "Belgium", 8 "stock": "MANY", 9 "price": { 10 "original": { 11 "formattedOriginal": "€ 64,95", 12 "currency": "EUR", 13 "value": 6495 14 }, 15 "promotional": { 16 "formattedOriginal": "€ 49,95", 17 "currency": "EUR", 18 "value": 4995 19 } 20 } 21 }, 22 { 23 "country": "Finland", 24 "stock": "MANY", 25 "price": { 26 "original": { 27 "formattedOriginal": "64,95 €", 28 "currency": "EUR", 29 "value": 6495 30 }, 31 "promotional": { 32 "formattedOriginal": "45,95 €", 33 "currency": "EUR", 34 "value": 4595 35 } 36 } 37 }, 38 { 39 "country": "Germany", 40 "stock": "MANY", 41 "price": { 42 "original": { 43 "formattedOriginal": "64,95 €", 44 "currency": "EUR", 45 "value": 6495 46 }, 47 "promotional": { 48 "formattedOriginal": "49,95 €", 49 "currency": "EUR", 50 "value": 4995 51 } 52 } 53 }, 54 { 55 "country": "Czechia", 56 "stock": "MANY", 57 "price": { 58 "original": { 59 "formattedOriginal": "1 580,00 Kč", 60 "currency": "CZK", 61 "value": 158000, 62 "eurValue": 6279 63 }, 64 "promotional": { 65 "formattedOriginal": "1 150,00 Kč", 66 "currency": "CZK", 67 "value": 115000, 68 "eurValue": 4570 69 } 70 } 71 } 72 ] 73 }, 74 { 75 "sku": "N2T21G001-C11", 76 "size": "38", 77 "data": [ 78 { 79 "country": "Belgium", 80 "stock": "MANY", 81 "price": { 82 "original": { 83 "formattedOriginal": "€ 64,95", 84 "currency": "EUR", 85 "value": 6495 86 }, 87 "promotional": { 88 "formattedOriginal": "€ 55,95", 89 "currency": "EUR", 90 "value": 5595 91 } 92 } 93 }, 94 { 95 "country": "France", 96 "stock": "MANY", 97 "price": { 98 "original": { 99 "formattedOriginal": "64,95 €", 100 "currency": "EUR", 101 "value": 6495 102 }, 103 "promotional": { 104 "formattedOriginal": "45,95 €", 105 "currency": "EUR", 106 "value": 4595 107 } 108 } 109 }, 110 { 111 "country": "Finland", 112 "stock": "MANY", 113 "price": { 114 "original": { 115 "formattedOriginal": "64,95 €", 116 "currency": "EUR", 117 "value": 6495 118 }, 119 "promotional": { 120 "formattedOriginal": "43,95 €", 121 "currency": "EUR", 122 "value": 4395 123 } 124 } 125 }, 126 { 127 "country": "Germany", 128 "stock": "MANY", 129 "price": { 130 "original": { 131 "formattedOriginal": "64,95 €", 132 "currency": "EUR", 133 "value": 6495 134 }, 135 "promotional": { 136 "formattedOriginal": "55,95 €", 137 "currency": "EUR", 138 "value": 5595 139 } 140 } 141 }, 142 { 143 "country": "Czechia", 144 "stock": "MANY", 145 "price": { 146 "original": { 147 "formattedOriginal": "1 580,00 Kč", 148 "currency": "CZK", 149 "value": 158000, 150 "eurValue": 6279 151 }, 152 "promotional": { 153 "formattedOriginal": "940,00 Kč", 154 "currency": "CZK", 155 "value": 94000, 156 "eurValue": 3735 157 } 158 } 159 } 160 ] 161 }, 162 { 163 "sku": "N2T21G001-C11", 164 "size": "40", 165 "data": [ 166 { 167 "country": "Belgium", 168 "stock": "MANY", 169 "price": { 170 "original": { 171 "formattedOriginal": "€ 64,95", 172 "currency": "EUR", 173 "value": 6495 174 }, 175 "promotional": { 176 "formattedOriginal": "€ 55,95", 177 "currency": "EUR", 178 "value": 5595 179 } 180 } 181 }, 182 { 183 "country": "France", 184 "stock": "MANY", 185 "price": { 186 "original": { 187 "formattedOriginal": "64,95 €", 188 "currency": "EUR", 189 "value": 6495 190 }, 191 "promotional": { 192 "formattedOriginal": "45,95 €", 193 "currency": "EUR", 194 "value": 4595 195 } 196 } 197 }, 198 { 199 "country": "Finland", 200 "stock": "MANY", 201 "price": { 202 "original": { 203 "formattedOriginal": "64,95 €", 204 "currency": "EUR", 205 "value": 6495 206 }, 207 "promotional": { 208 "formattedOriginal": "45,95 €", 209 "currency": "EUR", 210 "value": 4595 211 } 212 } 213 }, 214 { 215 "country": "Germany", 216 "stock": "MANY", 217 "price": { 218 "original": { 219 "formattedOriginal": "64,95 €", 220 "currency": "EUR", 221 "value": 6495 222 }, 223 "promotional": { 224 "formattedOriginal": "57,95 €", 225 "currency": "EUR", 226 "value": 5795 227 } 228 } 229 }, 230 { 231 "country": "Czechia", 232 "stock": "MANY", 233 "price": { 234 "original": { 235 "formattedOriginal": "1 580,00 Kč", 236 "currency": "CZK", 237 "value": 158000, 238 "eurValue": 6279 239 }, 240 "promotional": { 241 "formattedOriginal": "1 090,00 Kč", 242 "currency": "CZK", 243 "value": 109000, 244 "eurValue": 4332 245 } 246 } 247 } 248 ] 249 }, 250 { 251 "sku": "N2T21G001-C11", 252 "size": "42", 253 "data": [ 254 { 255 "country": "Belgium", 256 "stock": "MANY", 257 "price": { 258 "original": { 259 "formattedOriginal": "€ 64,95", 260 "currency": "EUR", 261 "value": 6495 262 }, 263 "promotional": { 264 "formattedOriginal": "€ 44,95", 265 "currency": "EUR", 266 "value": 4495 267 } 268 } 269 }, 270 { 271 "country": "France", 272 "stock": "MANY", 273 "price": { 274 "original": { 275 "formattedOriginal": "64,95 €", 276 "currency": "EUR", 277 "value": 6495 278 }, 279 "promotional": { 280 "formattedOriginal": "45,95 €", 281 "currency": "EUR", 282 "value": 4595 283 } 284 } 285 }, 286 { 287 "country": "Finland", 288 "stock": "MANY", 289 "price": { 290 "original": { 291 "formattedOriginal": "64,95 €", 292 "currency": "EUR", 293 "value": 6495 294 }, 295 "promotional": { 296 "formattedOriginal": "51,95 €", 297 "currency": "EUR", 298 "value": 5195 299 } 300 } 301 }, 302 { 303 "country": "Italy", 304 "stock": "MANY", 305 "price": { 306 "original": { 307 "formattedOriginal": "64,95 €", 308 "currency": "EUR", 309 "value": 6495 310 }, 311 "promotional": { 312 "formattedOriginal": "55,95 €", 313 "currency": "EUR", 314 "value": 5595 315 } 316 } 317 }, 318 { 319 "country": "Germany", 320 "stock": "MANY", 321 "price": { 322 "original": { 323 "formattedOriginal": "64,95 €", 324 "currency": "EUR", 325 "value": 6495 326 }, 327 "promotional": { 328 "formattedOriginal": "44,95 €", 329 "currency": "EUR", 330 "value": 4495 331 } 332 } 333 }, 334 { 335 "country": "Czechia", 336 "stock": "MANY", 337 "price": { 338 "original": { 339 "formattedOriginal": "1 580,00 Kč", 340 "currency": "CZK", 341 "value": 158000, 342 "eurValue": 6279 343 }, 344 "promotional": { 345 "formattedOriginal": "1 260,00 Kč", 346 "currency": "CZK", 347 "value": 126000, 348 "eurValue": 5007 349 } 350 } 351 } 352 ] 353 }, 354 { 355 "sku": "N2T21G001-C11", 356 "size": "44", 357 "data": [ 358 { 359 "country": "Belgium", 360 "stock": "MANY", 361 "price": { 362 "original": { 363 "formattedOriginal": "€ 64,95", 364 "currency": "EUR", 365 "value": 6495 366 }, 367 "promotional": { 368 "formattedOriginal": "€ 55,95", 369 "currency": "EUR", 370 "value": 5595 371 } 372 } 373 }, 374 { 375 "country": "France", 376 "stock": "MANY", 377 "price": { 378 "original": { 379 "formattedOriginal": "64,95 €", 380 "currency": "EUR", 381 "value": 6495 382 }, 383 "promotional": { 384 "formattedOriginal": "44,95 €", 385 "currency": "EUR", 386 "value": 4495 387 } 388 } 389 }, 390 { 391 "country": "Finland", 392 "stock": "MANY", 393 "price": { 394 "original": { 395 "formattedOriginal": "64,95 €", 396 "currency": "EUR", 397 "value": 6495 398 }, 399 "promotional": { 400 "formattedOriginal": "45,95 €", 401 "currency": "EUR", 402 "value": 4595 403 } 404 } 405 }, 406 { 407 "country": "Italy", 408 "stock": "MANY", 409 "price": { 410 "original": { 411 "formattedOriginal": "64,95 €", 412 "currency": "EUR", 413 "value": 6495 414 }, 415 "promotional": { 416 "formattedOriginal": "57,95 €", 417 "currency": "EUR", 418 "value": 5795 419 } 420 } 421 }, 422 { 423 "country": "Germany", 424 "stock": "MANY", 425 "price": { 426 "original": { 427 "formattedOriginal": "64,95 €", 428 "currency": "EUR", 429 "value": 6495 430 }, 431 "promotional": { 432 "formattedOriginal": "55,95 €", 433 "currency": "EUR", 434 "value": 5595 435 } 436 } 437 }, 438 { 439 "country": "Czechia", 440 "stock": "MANY", 441 "price": { 442 "original": { 443 "formattedOriginal": "1 580,00 Kč", 444 "currency": "CZK", 445 "value": 158000, 446 "eurValue": 6279 447 }, 448 "promotional": { 449 "formattedOriginal": "1 090,00 Kč", 450 "currency": "CZK", 451 "value": 109000, 452 "eurValue": 4332 453 } 454 } 455 } 456 ] 457 }, 458 { 459 "sku": "N2T21G001-C11", 460 "size": "48", 461 "data": [ 462 { 463 "country": "France", 464 "stock": "MANY", 465 "price": { 466 "original": { 467 "formattedOriginal": "64,95 €", 468 "currency": "EUR", 469 "value": 6495 470 }, 471 "promotional": { 472 "formattedOriginal": "45,95 €", 473 "currency": "EUR", 474 "value": 4595 475 } 476 } 477 }, 478 { 479 "country": "Italy", 480 "stock": "MANY", 481 "price": { 482 "original": { 483 "formattedOriginal": "64,95 €", 484 "currency": "EUR", 485 "value": 6495 486 }, 487 "promotional": { 488 "formattedOriginal": "51,95 €", 489 "currency": "EUR", 490 "value": 5195 491 } 492 } 493 } 494 ] 495 } 496]
Note how the discount price varies from country to country, even for the same size.
⁉️ Your feedback
I always strive for quality in my work. So if you have any technical comments on Redfin Fast Scraper or you just found a bug, please create an issue on the Actor's Issues tab in Apify Console.
Actor Metrics
2 monthly users
-
3 stars
>99% runs succeeded
Created in Apr 2024
Modified 4 months ago