# Allegro Category Price Monitor

**Use case:** 

Scrape direct Allegro category URLs and filter by price, condition, and sorting for marketplace monitoring.

## Input

```json
{
  "searchQueries": [
    "laptop gaming"
  ],
  "startUrls": [
    {
      "url": "https://allegro.pl/kategoria/laptopy-491"
    }
  ],
  "maxItemsPerQuery": 30,
  "minPrice": 1000,
  "maxPrice": 5000,
  "condition": "new",
  "sortBy": "price-asc"
}
```

## Output

```json
{
  "imageUrl": {
    "label": "Image",
    "format": "image"
  },
  "id": {
    "label": "ID",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "price": {
    "label": "Price (PLN)",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "condition": {
    "label": "Condition",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "seller": {
    "label": "Seller",
    "format": "text"
  },
  "isSponsored": {
    "label": "Sponsored",
    "format": "boolean"
  }
}
```

## About this Actor

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