# Lisbon Apartment Listings from OLX.pt

**Use case:** 

Collect apartment listings from OLX Portugal for Lisbon with prices, locations, listing URLs, and optional detail-page fields.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.olx.pt/imoveis/apartamento-casa-a-venda/lisboa/"
    }
  ],
  "searchQuery": "iphone",
  "categoryPath": "/imoveis/",
  "maxResults": 100,
  "includeDetails": true,
  "maxPages": 5,
  "maxRequestRetries": 3
}
```

## Output

```json
{
  "listingId": {
    "label": "Listing ID",
    "format": "text"
  },
  "url": {
    "label": "Listing URL",
    "format": "link"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "priceText": {
    "label": "Price text",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "location": {
    "label": "Location",
    "format": "text"
  },
  "postedAt": {
    "label": "Posted / updated",
    "format": "text"
  },
  "categoryPath": {
    "label": "Category path",
    "format": "text"
  },
  "imageUrl": {
    "label": "Main image",
    "format": "link"
  },
  "imageUrls": {
    "label": "Image URLs",
    "format": "array"
  },
  "sellerName": {
    "label": "Seller",
    "format": "text"
  },
  "sellerType": {
    "label": "Seller type",
    "format": "text"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "attributes": {
    "label": "Attributes",
    "format": "object"
  },
  "isPromoted": {
    "label": "Promoted",
    "format": "boolean"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "link"
  },
  "page": {
    "label": "Page",
    "format": "number"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

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