
Zoopla.co.uk Scraper
- dhrumil/zoopla-scraper
- Modified
- Users 38
- Runs 55.6k
- Created by
Dhrumil Bhankhar
Scrape Zoopla.co.uk to crawl millions of sale/rent real estate properties from United Kingdom. Our real estate scraper also lets you monitor specific listing for new updates/listing. You can provide multiple search result listings to scrape/monitor.
To run the code examples, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token. For a more detailed explanation, please read about running Actors via the API in Apify Docs.
# Set API token
API_TOKEN=<YOUR_API_TOKEN>
# Prepare Actor input
cat > input.json <<'EOF'
{
"listUrls": [
{
"url": "https://www.zoopla.co.uk/for-sale/property/london/ec4/fleet-street-temple-blackfriars-st-pauls/?beds_min=4&q=ec4&radius=0.25&results_sort=newest_listings&search_source=for-sale"
}
],
"proxy": {
"useApifyProxy": true
}
}
EOF
# Run the Actor
curl "https://api.apify.com/v2/acts/dhrumil~zoopla-scraper/runs?token=$API_TOKEN" \
-X POST \
-d @input.json \
-H 'Content-Type: application/json'