Allegro Scraper
This Actor is unavailable because the developer has decided to deprecate it. Would you like to try a similar Actor instead?
See alternative ActorsAllegro Scraper
Allegro Scraper allows you to scrape data from allegro.pl, one of the most popular online shopping platforms in Poland and the largest e-commerce platform of European origin.
Hello, I would like to suggest the addition of the model, manufacturer's code, and brand in the results. Sadly without such info, it's a deal breaker for me and I would love to rent this scraper if this is possible Thank you!
Hi Ioannis, it should be possible to add this info.
Let's take a look at the example product: https://allegro.pl/oferta/sony-xperia-xa2-5-2-3gb-32gb-lte-qc-nfc-23mpx-13713506628
Do you need to extract data from the section with product parameters?
- Manufacturer's code: H3113
- Phone brand: Sony
And do you need the data to be stored in separate output fields brand
and manufacturerCode
or would a general parameters
field with all parameter values work as well?
Asking because Allegro is not 100% consistent with parameter names so it would be a bit challenging for the actor to always recognize the right parameter row.
Example of the output with dedicated fields brand
and manufacturerCode
:
1{ 2 "brand": "Sony", 3 "manufacturerCode": "H3113" 4}
Example of the output with general parameters:
1{ 2 "parameters": [ 3 { 4 "name": "Manufacturer's code", 5 "value": "H3113" 6 }, 7 { 8 "name": "Phone brand", 9 "value": "Sony" 10 } 11 ] 12}
That sounds amazing! I actually would not mind having the second option with all the parameters, It sure is better for me to have all the parameters even in this format, and as I understand, also for you since there are no standard naming conventions.
Hi, I added a new parameters
field as we discussed. It has the following format:
1{ 2 "url": "https://allegro.pl/oferta/sony-xperia-xa2-5-2-3gb-32gb-lte-qc-nfc-23mpx-13713506628", 3 "parameters": [ 4 { 5 "name": "Stan", 6 "value": "Używany", 7 "valueLink": "https://allegro.pl/kategoria/sony-xperia-xa2-257666?stan=u%C5%BCywane" 8 }, 9 { 10 "name": "Faktura", 11 "value": "Wystawiam fakturę VAT" 12 }, 13 { 14 "name": "Kod producenta", 15 "value": "H3113" 16 }, 17 { 18 "name": "Marka telefonu", 19 "value": "Sony" 20 }, 21 { 22 "name": "Model telefonu", 23 "value": "XPERIA XA2" 24 }, 25 { 26 "name": "Typ", 27 "value": "Smartfon" 28 }, 29 { 30 "name": "Kolor", 31 "value": "czarny", 32 "valueLink": "https://allegro.pl/kategoria/sony-xperia-xa2-257666?kolor=czarny" 33 }, 34 { 35 "name": "Materiał", 36 "value": "aluminium" 37 } 38 ] 39}