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.

from apify_client import ApifyClient

# Initialize the ApifyClient with your API token
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "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 },
}

# Run the Actor and wait for it to finish
run = client.actor("epctex/zoopla-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)