# Zillow API Scraper Example - Miami Rentals

**Use case:** 

Get detailed listings for Miami rentals, including prices, features, and agent info.

## Input

```json
{
  "q": "Miami, FL",
  "zpids": [],
  "north": "",
  "south": "",
  "east": "",
  "west": "",
  "includeDetail": true,
  "maxItems": 250,
  "listingType": "forRent",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "zpid": {
    "label": "ZPID",
    "format": "number"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "streetAddress": {
    "label": "Street address",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "state": {
    "label": "State",
    "format": "text"
  },
  "zipcode": {
    "label": "ZIP",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "pricePerSquareFoot": {
    "label": "Price / sqft",
    "format": "number"
  },
  "bedrooms": {
    "label": "Beds",
    "format": "number"
  },
  "bathrooms": {
    "label": "Baths",
    "format": "number"
  },
  "livingArea": {
    "label": "Living area (sqft)",
    "format": "number"
  },
  "lotSize": {
    "label": "Lot size",
    "format": "number"
  },
  "lotSizeUnit": {
    "label": "Lot size unit",
    "format": "text"
  },
  "yearBuilt": {
    "label": "Year built",
    "format": "number"
  },
  "propertyType": {
    "label": "Property type",
    "format": "text"
  },
  "listingStatus": {
    "label": "Listing status",
    "format": "text"
  },
  "marketingStatus": {
    "label": "Marketing status",
    "format": "text"
  },
  "daysOnZillow": {
    "label": "Days on Zillow",
    "format": "number"
  },
  "latitude": {
    "label": "Latitude",
    "format": "number"
  },
  "longitude": {
    "label": "Longitude",
    "format": "number"
  },
  "brokerName": {
    "label": "Broker",
    "format": "text"
  },
  "agentName": {
    "label": "Agent",
    "format": "text"
  },
  "agentBusinessName": {
    "label": "Agent business",
    "format": "text"
  },
  "agentPhone": {
    "label": "Agent phone",
    "format": "text"
  },
  "taxAssessedValue": {
    "label": "Tax assessed value",
    "format": "number"
  },
  "taxAssessmentYear": {
    "label": "Tax year",
    "format": "text"
  },
  "photoCount": {
    "label": "Photo count",
    "format": "number"
  },
  "photos": {
    "label": "Photos (full-res)",
    "format": "array"
  },
  "hasVideos": {
    "label": "Has videos",
    "format": "text"
  },
  "has3DTour": {
    "label": "Has 3D tour",
    "format": "text"
  },
  "resoFacts": {
    "label": "Facts & features",
    "format": "object"
  },
  "detail": {
    "label": "Full HDP detail",
    "format": "object"
  },
  "raw": {
    "label": "Raw API record",
    "format": "object"
  }
}
```

## About this Actor

This example demonstrates how to use [Zillow API Scraper](https://apify.com/rl1987/zillow-api-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/rl1987/zillow-api-scraper) to learn more, explore other use cases, and run it yourself.