# Belgrade Room Rentals Data Scraper

**Use case:** 

Retrieve listings for rooms for rent in Belgrade from Halooglasi. Export detailed data for up to 200 properties in CSV, JSON, or Excel.

## Input

```json
{
  "locationSlugs": [
    "beograd"
  ],
  "transaction": "rent",
  "propertyType": "room",
  "priceMin": 0,
  "priceMax": 0,
  "areaMin": 0,
  "areaMax": 0,
  "roomsMin": 0,
  "roomsMax": 0,
  "ownerType": "all",
  "sort": "latest",
  "maxListings": 200,
  "maxPagesPerTask": 10,
  "requestDelay": 1000,
  "maxRetries": 3,
  "timeBudgetSecs": 110,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "RS"
  }
}
```

## Output

```json
{
  "adId": {
    "label": "Ad ID",
    "format": "string"
  },
  "propertyType": {
    "label": "Property Type",
    "format": "string"
  },
  "transactionType": {
    "label": "Transaction",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "priceCurrency": {
    "label": "Currency",
    "format": "string"
  },
  "areaSqm": {
    "label": "Area (m²)",
    "format": "number"
  },
  "pricePerSqm": {
    "label": "Price per m²",
    "format": "number"
  },
  "rooms": {
    "label": "Rooms",
    "format": "number"
  },
  "roomsLabel": {
    "label": "Rooms Label",
    "format": "string"
  },
  "floor": {
    "label": "Floor",
    "format": "string"
  },
  "city": {
    "label": "City",
    "format": "string"
  },
  "municipality": {
    "label": "Municipality",
    "format": "string"
  },
  "microLocation": {
    "label": "Micro Location",
    "format": "string"
  },
  "advertiserName": {
    "label": "Advertiser Name",
    "format": "string"
  },
  "advertiserType": {
    "label": "Advertiser Type",
    "format": "string"
  },
  "datePosted": {
    "label": "Date Posted",
    "format": "string"
  },
  "detailUrl": {
    "label": "Detail URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Halooglasi Scraper - Serbia Real Estate Data](https://apify.com/logiover/halooglasi-property-scraper-serbia-real-estate) with a specific input configuration. Visit the [Actor detail page](https://apify.com/logiover/halooglasi-property-scraper-serbia-real-estate) to learn more, explore other use cases, and run it yourself.