Zillow Search by Coordinates Scraper avatar

Zillow Search by Coordinates Scraper

Pricing

from $0.15 / 1,000 results

Go to Apify Store
Zillow Search by Coordinates Scraper

Zillow Search by Coordinates Scraper

The Zillow Search by Coordinates Scraper retrieves real-time property listings within a radius of any latitude and longitude point. Filter by price, beds, baths, home type, and status to collect structured listing data for real estate research and lead generation.

Pricing

from $0.15 / 1,000 results

Rating

0.0

(0)

Developer

AxCrawler

AxCrawler

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

11 hours ago

Last modified

Categories

Share

How does Zillow Search by Coordinates Scraper work?

The Zillow Search by Coordinates Scraper retrieves real-time property listings located within a specified radius of a given latitude and longitude point. The data extracted includes property attributes such as address, price, number of bedrooms and bathrooms, living area, home type, listing status, and Zestimate, among other relevant real estate details.

This Actor performs live queries directly to Zillow, ensuring that all data returned is current and accurate at the time of the request. There is no caching involved, so every invocation retrieves fresh data.

The extraction process involves receiving input parameters for one or more coordinate-based searches, executing the data retrieval for each search, and returning structured JSON output containing the matching property listings.

Input data

Input data must be provided in JSON format and must contain one mandatory array field "input". Each item in the array represents a coordinate-based search request and can include the following fields:

ParameterRequiredTypeDescription
latYesnumberLatitude of the search center point, e.g. 34.01822.
longYesnumberLongitude of the search center point, e.g. -118.504744.
dYesnumberDiameter of the search radius in miles, e.g. 0.1.
price_minNonumberMinimum price filter for the properties returned.
price_maxNonumberMaximum price filter for the properties returned.
beds_minNonumberMinimum number of bedrooms filter.
beds_maxNonumberMaximum number of bedrooms filter.
baths_minNonumberMinimum number of bathrooms filter.
baths_maxNonumberMaximum number of bathrooms filter.
sqft_minNonumberMinimum living area (square feet) filter.
sqft_maxNonumberMaximum living area (square feet) filter.
built_minNonumberMinimum year built filter.
built_maxNostringMaximum year built filter.
hoa_minNonumberMinimum HOA fee filter.
hoa_maxNonumberMaximum HOA fee filter.
monthlyPayment_minNonumberMinimum estimated monthly payment filter.
monthlyPayment_maxNonumberMaximum estimated monthly payment filter.
greatSchoolsRating_minNonumberMinimum GreatSchools rating filter for nearby schools.
statusNostringStatus type of the properties to search for. Possible values: forSale (default), forRent, recentlySold.
listing_typeNostringListing type. Possible values: By agent (default), By owner & other (for off market properties).
sortNostringSorting order of the results. Possible values: priorityscore (default), saved, listingstatus, mostrecentchange, globalrelevanceex, featured, priced, pricea, paymentd, paymenta, days, beds, baths, size, lot, zest, zesta.
dozNostringDays on Zillow filter. Possible values: any, 1, 7, 14, 30, 90, 6m, 12m, 24m, 36m.
pageNonumberPage number of the results to retrieve.
outputNostringOutput format of the response. Possible values: json (default), csv, xlsx.
keywordsNostringFree-text keyword filter applied to the search.
enableSchoolsNobooleanWhether to include nearby school information in the results.
isSingleFamilyNobooleanFilter for single-family homes.
isCondoNobooleanFilter for condominiums.
isTownhouseNobooleanFilter for townhouses.
isMultiFamilyNobooleanFilter for multi-family properties.
isApartmentNobooleanFilter for apartments.
isManufacturedNobooleanFilter for manufactured homes.
isLotLandNobooleanFilter for lot/land properties.
isAuctionNobooleanFilter for properties listed as auctions.
hasAirConditioningNobooleanFilter for properties with air conditioning.
hasGarageNobooleanFilter for properties with a garage.
hasPoolNobooleanFilter for properties with a pool.
isWaterfrontNobooleanFilter for waterfront properties.
isWaterViewNobooleanFilter for properties with a water view.
isMountainViewNobooleanFilter for properties with a mountain view.
isCityViewNobooleanFilter for properties with a city view.
isParkViewNobooleanFilter for properties with a park view.
is3dHomeNobooleanFilter for listings with a 3D home tour.
singleStoryNobooleanFilter for single-story properties.
isNewConstructionNobooleanFilter for new construction properties.
isComingSoonNobooleanFilter for coming-soon listings.
onlyWithPhotosNobooleanFilter to only include listings that have photos.
onlyPriceReductionNobooleanFilter to only include listings with a recent price reduction.
isZillowOwnedOnlyNobooleanFilter to only include Zillow-owned properties.
isForSaleByOwnerNobooleanFilter for properties for sale by owner.
isForSaleByAgentNobooleanFilter for properties for sale by agent.
isForSaleForeclosureNobooleanFilter for foreclosure listings.
isElementarySchoolNobooleanFilter results by proximity to elementary schools.
isMiddleSchoolNobooleanFilter results by proximity to middle schools.
isPublicSchoolNobooleanFilter results by proximity to public schools.
isPrivateSchoolNobooleanFilter results by proximity to private schools.
onlyRentalAcceptsApplicationsNobooleanFilter for rentals currently accepting applications.
onlyRentalPetsAllowedNobooleanFilter for rentals that allow pets.
onlyRentalCatsAllowedNobooleanFilter for rentals that allow cats.
onlyRentalSmallDogsAllowedNobooleanFilter for rentals that allow small dogs.
onlyRentalLargeDogsAllowedNobooleanFilter for rentals that allow large dogs.
onlyRentalIncomeRestrictedNobooleanFilter for income-restricted rentals.

Multiple coordinate searches can be executed in a single run by providing multiple entries in the "input" array.

Example input

{
"input": [
{
"lat": 34.01822,
"long": -118.504744,
"d": 0.5,
"status": "forSale",
"price_max": 1000000,
"output": "json"
},
{
"lat": 40.712776,
"long": -74.005974,
"d": 1,
"status": "forRent",
"beds_min": 2,
"sort": "priced"
}
]
}

Output data

{
"results": [
{
"zpid": 20485843,
"streetAddress": "966 Palisades Beach Rd",
"city": "Santa Monica",
"state": "CA",
"zipcode": "90403",
"country": "USA",
"currency": "USD",
"latitude": 34.018696,
"longitude": -118.50533,
"price": 22000000,
"bedrooms": 5,
"bathrooms": 8,
"livingArea": 6647,
"lotAreaValue": 5471.136,
"lotAreaUnit": "sqft",
"homeType": "SINGLE_FAMILY",
"homeStatus": "FOR_SALE",
"daysOnZillow": -1,
"isFeatured": false,
"isZillowOwned": false,
"zestimate": 20568900,
"rentZestimate": 38658,
"taxAssessedValue": 5963020,
"imgSrc": "https://photos.zillowstatic.com/fp/cb6543a9d6cf02c8cc36d6242c9ec446-p_e.jpg"
}
],
"resultsPerPage": 41,
"totalPages": 1,
"totalResultCount": 1
}

How much does Zillow Search by Coordinates Scraper cost?

The cost of using this Actor depends on the volume of data retrieved and the number of coordinate-based search requests made. It is recommended to execute a test run with a small sample input to estimate the cost applicable for your use case before scaling up your usage.

What to consider when using this Actor?

This Actor integrates the full lifecycle of web data extraction ensuring stability and reliability:

  1. Proxy Rotation: Uses a large proxy pool to avoid blocks by Zillow, ensuring smooth data retrieval.

  2. Geo Targeting: Determines appropriate proxy location based on the provided coordinates to minimize geo-restriction issues.

  3. Captcha and Blocking Handling: Automatically manages captchas or temporary access blocks without user intervention.

  4. Stability and Reliability: Designed to handle large scale requests with error handling and retries for consistent and dependable operation.

More Zillow Actors by Axesso

Looking for a different slice of Zillow data? Axesso offers a full suite of real-time Zillow Actors - each one dedicated to a specific endpoint:

ActorWhat it does
Zillow Accessibility Scores ScraperThe Zillow Accessibility Scores Scraper retrieves real-time walk, transit, and bike scores for any property listed on Zillow using ZPID ...
Zillow Market Data ScraperThe Zillow Market Data Scraper retrieves real-time rental market data for any city, neighborhood, or ZIP code on Zillow, including ...
Zillow Nearby Schools ScraperThe Zillow Nearby Schools Scraper retrieves real-time data on schools near any property listed on Zillow using ZPID or URL.
Zillow Price and Tax History ScraperThe Zillow Price and Tax History Scraper retrieves real-time price and tax history for any property listed on Zillow using ZPID or URL.
Zillow Property Details Scraper V2The Zillow Property Details Scraper V2 fetches detailed, real-time property data by ZPID or URL from Zillow.
Zillow Property Photos ScraperThe Zillow Property Photos Scraper retrieves real-time photo galleries for any property listed on Zillow using ZPID or URL.
Zillow Property Search ScraperThe Zillow Property Search Scraper returns real-time listings by neighborhood, city, or ZIP code.
Zillow Rent Estimate ScraperThe Zillow Rent Estimate Scraper retrieves real-time rent zestimates, market summaries, and comparable rental floorplans for any ...
Zillow Search by Address ScraperThe Zillow Search by Address Scraper retrieves real-time property data by address from Zillow, providing accurate details including ...
Zillow Search by MLS ScraperThe Zillow Search by MLS Scraper retrieves real-time property listings by MLS number from Zillow, returning matching addresses and ZPIDs.
Zillow Search by Polygon ScraperThe Zillow Search by Polygon Scraper retrieves real-time property listings within a custom map area defined by polygon coordinates.
Zillow Similar Properties ScraperThe Zillow Similar Properties Scraper retrieves real-time listings of comparable homes for sale near any property on Zillow using ...
Zillow Similar Rental Properties ScraperThe Zillow Similar Rental Properties Scraper retrieves real-time listings of comparable rental homes near any property on Zillow using ...
Zillow Similar Sold Properties ScraperThe Zillow Similar Sold Properties Scraper retrieves real-time data on recently sold comparable homes near any property on Zillow using ...
Zillow Zestimate History ScraperThe Zillow Zestimate History Scraper retrieves historical Zestimate value estimates for any property listed on Zillow using ZPID or URL.

All Axesso Actors are built and maintained to the same standards: real-time data without caching, high availability and active maintenance, consistent input patterns, and responsive support when you need help. If you are missing a specific endpoint, reach out - the portfolio is continuously growing.

Where else you can find Axesso - Data Service solutions?

Axesso provides APIs and Actors through its own API Portal and on RapidAPI. Axesso has a proven track record delivering stable services to thousands of subscribers over a period exceeding five years.

  • Direct API access: You can also consume the same real-time Zillow data directly via the Axesso Zillow API - ideal for high-volume or backend integrations.

Use cases for our Axesso Actors

  1. Market Research: Gather detailed property listing data for a specific area to support analysis and decision-making.

  2. Price Monitoring: Track price changes and listing status for properties within a target radius.

  3. Inventory Management: Automate the collection of property listings and status by geographic area.

  4. Property Valuation: Use Zestimates and pricing data from nearby listings to assess property values.

  5. Agent Insights: Retrieve listing data to identify agent and brokerage activity within a coordinate radius.

  6. Content Aggregation: Collect property data for real estate websites or applications based on location.

  7. Lead Generation: Extract property listings within a target area for buyer or seller outreach.

  8. Competitive Analysis: Monitor market trends and competitor listings around specific coordinates.

  9. Data Enrichment: Enhance existing real estate databases with live, location-based property data.