# Extract Allegro product reviews to JSON

**Use case:** 

Collect public Allegro buyer opinions with ratings, text, pros, cons, dates, and helpfulness for one product.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://allegro.pl/produkt/korki-adidas-f50-elite-ag-buty-pilkarskie-lanki-na-sztuczna-trawe-orlik-4549a95f-0be1-41b3-954f-015bea7131b3?offerId=18016530911"
    }
  ],
  "maxReviewsPerProduct": 10,
  "minRating": 1,
  "maxRating": 5,
  "withImagesOnly": false
}
```

## Output

```json
{
  "productTitle": {
    "label": "Product",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "opinion": {
    "label": "Opinion",
    "format": "string"
  },
  "pros": {
    "label": "Pros",
    "format": "string"
  },
  "cons": {
    "label": "Cons",
    "format": "string"
  },
  "createdAt": {
    "label": "Created",
    "format": "string"
  },
  "helpfulVotes": {
    "label": "Helpful votes",
    "format": "number"
  },
  "images": {
    "label": "Images",
    "format": "array"
  },
  "sellerLogin": {
    "label": "Seller",
    "format": "string"
  },
  "productUrl": {
    "label": "Product URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Allegro Reviews Scraper](https://apify.com/automation-lab/allegro-reviews-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/allegro-reviews-scraper) to learn more, explore other use cases, and run it yourself.