# Extract Zillow Listing Agent Contacts & Leads

**Use case:** 

Get the Zillow listing agent name, phone, email, license number, broker and MLS — one deduped, lead-scored record per agent. Export to CSV.

## Input

```json
{
  "locations": [
    "Miami, FL"
  ],
  "listingType": "forSale",
  "forSaleByOwnerOnly": false,
  "homeTypes": [],
  "daysOnZillow": "",
  "sort": "relevant",
  "includePropertyDetails": true,
  "extractAgentLeads": true,
  "maxPhotosPerListing": 10,
  "maxResults": 200,
  "maxResultsPerSearch": 0,
  "maxRunSeconds": 240,
  "detailConcurrency": 3,
  "deduplicateResults": true,
  "monitorMode": false,
  "monitorStoreName": "zillow-scraper-monitor",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "type": {
    "label": "Type"
  },
  "agentName": {
    "label": "Agent"
  },
  "agentPhone": {
    "label": "Phone"
  },
  "agentEmail": {
    "label": "Email"
  },
  "agentLicenseNumber": {
    "label": "License #"
  },
  "brokerName": {
    "label": "Brokerage"
  },
  "brokerPhone": {
    "label": "Broker phone"
  },
  "mlsId": {
    "label": "MLS ID"
  },
  "city": {
    "label": "City"
  },
  "state": {
    "label": "State"
  },
  "leadScore": {
    "label": "Lead score"
  },
  "sampleListingUrl": {
    "label": "Listing"
  }
}
```

## About this Actor

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