# Miami FL Rental Listings Scraper

**Use case:** 

Extract rental listings in Miami, FL, sorted by newest. Get up to 200 listings in CSV or JSON format directly from Realtor.com.

## Input

```json
{
  "location": "Miami, FL",
  "metro": "",
  "listingType": "forRent",
  "propertyType": "",
  "searchUrls": [
    "https://www.realtor.com/realestateandhomes-search/Austin_TX"
  ],
  "sortBy": "newest",
  "maxResults": 200,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "groups": [
      "RESIDENTIAL"
    ],
    "countryCode": "US"
  }
}
```

## Output

```json
{
  "address": {
    "label": "Address",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "state": {
    "label": "State",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "beds": {
    "label": "Beds",
    "format": "number"
  },
  "baths": {
    "label": "Baths",
    "format": "number"
  },
  "sqft": {
    "label": "Sqft",
    "format": "number"
  },
  "propertyType": {
    "label": "Property type",
    "format": "text"
  },
  "status": {
    "label": "Status",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Realtor.com Scraper - US Real Estate Listings](https://apify.com/logiover/realtor-com-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/logiover/realtor-com-scraper) to learn more, explore other use cases, and run it yourself.