Zoopla Scraper

  • epctex/zoopla-scraper
  • Modified
  • Users 7
  • Runs 348
  • Created by Author's avatarepctex

Get extensive information from zoopla.co.uk for data on millions of properties. Scrape real estate opportunities, titles, prices, descriptions, amenities, images, features, nearby points of interest, and many more attributes in seconds. Specify any search term you want and use it with no limits.

Free trial for 3 days

Then $30.00/month

No credit card required now

Zoopla Scraper

Free trial for 3 days

Then $30.00/month

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'
{
  "startUrls": [
    "https://www.zoopla.co.uk/overseas/details/64410387/",
    "https://www.zoopla.co.uk/new-homes/details/64410305/",
    "https://www.zoopla.co.uk/to-rent/details/64411515/",
    "https://www.zoopla.co.uk/for-sale/details/62414617/",
    "https://www.zoopla.co.uk/for-sale/branch/chancellors-east-oxford-oxford-13801/",
    "https://www.zoopla.co.uk/to-rent/branch/residential-land-london-19482/",
    "https://www.zoopla.co.uk/for-sale/property/oxford/?q=oxford&results_sort=newest_listings&search_source=for-sale",
    "https://www.zoopla.co.uk/to-rent/property/oxford/",
    "https://www.zoopla.co.uk/new-homes/property/oxfordshire"
  ],
  "maxItems": 20,
  "endPage": 1,
  "extendOutputFunction": "($) => { return {} }",
  "customMapFunction": "(object) => { return {...object} }",
  "proxy": {
    "useApifyProxy": true
  }
}
EOF

# Run the Actor
curl "https://api.apify.com/v2/acts/epctex~zoopla-scraper/runs?token=$API_TOKEN" \
  -X POST \
  -d @input.json \
  -H 'Content-Type: application/json'