Endpoint Playground
Test Crawlora's Zillow Search API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/zillow/search?location=<location>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| location | string | Yes | Display location | |
| page | integer | No | 1-based page | |
| status | string | No | Search context: for_sale, for_rent, or sold | |
| region_id | integer | No | Zillow region id from autocomplete, used when complete bounds are not provided | |
| region_type | integer | No | Zillow region type from autocomplete, used with region_id fallback | |
| west | number | No | Map west bound from autocomplete | |
| east | number | No | Map east bound from autocomplete | |
| south | number | No | Map south bound from autocomplete | |
| north | number | No | Map north bound from autocomplete |
{
"code": 200,
"msg": "OK",
"data": {
"location": "Los Angeles, CA",
"page": 1,
"results": [
{
"zpid": "12345678",
"address": "1 Market St",
"url": "https://www.zillow.com/homedetails/1-Market-St/12345678_zpid/",
"image": "https://photos.zillowstatic.com/photo.jpg",
"photos": [
"https://photos.zillowstatic.com/photo.jpg"
],
"price": 1000000,
"price_text": "$1,000,000",
"currency": "USD",
"beds": 2,
"baths": 1.5,
"living_area": 900,
"latitude": 34.02,
"longitude": -118.41,
"home_status": "FOR_SALE",
"status_text": "House for sale",
"home_type": "SINGLE_FAMILY",
"broker_name": "Example Realty",
"zestimate": 990000,
"days_on_zillow": 7,
"lot_area": 5000,
"lot_area_unit": "sqft",
"has_3d_model": true,
"listing_sub_type": [
"is_FSBA"
]
}
]
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns normalized Zillow public listing search results. Callers must pass complete map bounds from autocomplete when available, or a region id fallback.
{
"code": 200,
"msg": "OK",
"data": {
"location": "Los Angeles, CA",
"page": 1,
"results": [
{
"zpid": "12345678",
"address": "1 Market St",
"url": "https://www.zillow.com/homedetails/1-Market-St/12345678_zpid/",
"image": "https://photos.zillowstatic.com/photo.jpg",
"photos": [
"https://photos.zillowstatic.com/photo.jpg"
],
"price": 1000000,
"price_text": "$1,000,000",
"currency": "USD",
"beds": 2,
"baths": 1.5,
"living_area": 900,
"latitude": 34.02,
"longitude": -118.41,
"home_status": "FOR_SALE",
"status_text": "House for sale",
"home_type": "SINGLE_FAMILY",
"broker_name": "Example Realty",
"zestimate": 990000,
"days_on_zillow": 7,
"lot_area": 5000,
"lot_area_unit": "sqft",
"has_3d_model": true,
"listing_sub_type": [
"is_FSBA"
]
}
]
}
}curl "https://api.crawlora.net/api/v1/zillow/search?location=<location>" \
-H "x-api-key: $CRAWLORA_API_KEY"