Zillow Agents Scraper
Extract real estate agent profiles from Zillow with contact details and specialties
$0.029 per agent
POST /api/v1/scrape/zillow-agentsParameters
| Name | Type | Required | Description |
|---|---|---|---|
location | string | Required | City and state or zip codeExample: Las Vegas, NV |
specialty | string | Optional | Agent specialty code (see documentation for full list)Example: 1001 |
language | string | Optional | Preferred languageExample: Spanish |
searchLimit | number | Optional | Maximum agents to extract (1-500)Default: 10Example: 50 |
Examples
Find agents in Las Vegas
curl -X POST https://app.scrapercity.com/api/v1/scrape/zillow-agents \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"location": "Las Vegas, NV",
"searchLimit": 25
}'Find buyer's agents who speak Spanish
curl -X POST https://app.scrapercity.com/api/v1/scrape/zillow-agents \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"location": "Miami, FL",
"specialty": "1001",
"language": "Spanish",
"searchLimit": 50
}'Use Cases
- •Build targeted agent referral networks
- •Find agents for real estate service partnerships
- •Market analysis of agent specializations by area
- •Identify top performers in specific markets
- •Connect with multilingual agents for diverse clients
- •Generate leads for real estate photography and staging services
Best Practices
- •Location is required - use city/state or zip code
- •Specialty codes: 1001=Buyer's Agent, 1002=Listing Agent, etc.
- •Returns agent profiles with contact info and listings data
- •Maximum 500 agents per search
- •Can filter by 40+ specialties and 40+ languages
- •Results include active listings and recent sales
- •Can be cancelled while running
Every scrape returns a runId. Poll GET /api/v1/scrape/status/{runId} until it completes, then download via GET /api/downloads/{runId}?format=csv.
Authenticate every request with Authorization: Bearer YOUR_API_KEY. See the full API reference for authentication, rate limits and error codes.