Allegro Scraper avatar
Allegro Scraper

Deprecated

Pricing

$20.00/month + usage

Go to Store
Allegro Scraper

Allegro Scraper

Deprecated

Developed by

Kristýna Lhoťanová

Kristýna Lhoťanová

Maintained by Community

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.

0.0 (0)

Pricing

$20.00/month + usage

2

Total users

160

Monthly users

8

Last modified

a year ago

IP

Feature Request

Closed

ioannis_piou opened this issue
2 years ago

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!

lhotanok avatar

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 :

{
"brand": "Sony",
"manufacturerCode": "H3113"
}

Example of the output with general parameters:

{
"parameters": [
{
"name": "Manufacturer's code",
"value": "H3113"
},
{
"name": "Phone brand",
"value": "Sony"
}
]
}
IP

ioannis_piou

2 years ago

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.

lhotanok avatar

Hi, I added a new parameters field as we discussed. It has the following format:

{
"url": "https://allegro.pl/oferta/sony-xperia-xa2-5-2-3gb-32gb-lte-qc-nfc-23mpx-13713506628",
"parameters": [
{
"name": "Stan",
"value": "Używany",
"valueLink": "https://allegro.pl/kategoria/sony-xperia-xa2-257666?stan=u%C5%BCywane"
},
{
"name": "Faktura",
"value": "Wystawiam fakturę VAT"
},
{
"name": "Kod producenta",
"value": "H3113"
},
{
"name": "Marka telefonu",
"value": "Sony"
},
{
"name": "Model telefonu",
"value": "XPERIA XA2"
},
{
"name": "Typ",
"value": "Smartfon"
},
{
"name": "Kolor",
"value": "czarny",
"valueLink": "https://allegro.pl/kategoria/sony-xperia-xa2-257666?kolor=czarny"
},
{
"name": "Materiał",
"value": "aluminium"
}
]
}