# OLX Warsaw Used Cars Scraper

**Use case:** 

Scrape OLX.pl car listings for Warsaw with prices, regions, seller names, business flags, listing status, and classified URLs.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.olx.pl/motoryzacja/samochody/warszawa/"
    }
  ],
  "searchQuery": "",
  "sortBy": "price:asc",
  "maxResults": 100,
  "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.