# OLX Poland Laptop Search Scraper

**Use case:** 

Search OLX Poland for laptop classifieds and extract listing titles, prices, locations, seller details, posted dates, and URLs.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.olx.pl/motoryzacja/samochody/"
    }
  ],
  "searchQuery": "laptop",
  "categoryId": 6,
  "sortBy": "created_at:desc",
  "maxResults": 50,
  "maxRequestRetries": 3
}
```

## Output

```json
{
  "id": {
    "label": "ID",
    "format": "number"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "priceLabel": {
    "label": "Price label",
    "format": "text"
  },
  "negotiable": {
    "label": "Negotiable",
    "format": "boolean"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "region": {
    "label": "Region",
    "format": "text"
  },
  "condition": {
    "label": "Condition",
    "format": "text"
  },
  "isBusiness": {
    "label": "Business ad",
    "format": "boolean"
  },
  "sellerName": {
    "label": "Seller",
    "format": "text"
  },
  "isHighlighted": {
    "label": "Highlighted",
    "format": "boolean"
  },
  "isUrgent": {
    "label": "Urgent",
    "format": "boolean"
  },
  "createdTime": {
    "label": "Posted",
    "format": "datetime"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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