Zoopla Scraper avatar
Zoopla Scraper
Try for free

3 days trial then $30.00/month - No credit card required now

View all Actors
Zoopla Scraper

Zoopla Scraper

epctex/zoopla-scraper
Try for free

3 days trial then $30.00/month - No credit card required now

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.

The code examples below show how to run the Actor and get its results. To run the code, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token, which you can find under Settings > Integrations in Apify Console. Learn more

1# Set API token
2API_TOKEN=<YOUR_API_TOKEN>
3
4# Prepare Actor input
5cat > input.json <<'EOF'
6{
7  "startUrls": [
8    "https://www.zoopla.co.uk/overseas/details/64410387/",
9    "https://www.zoopla.co.uk/new-homes/details/64410305/",
10    "https://www.zoopla.co.uk/to-rent/details/64411515/",
11    "https://www.zoopla.co.uk/for-sale/details/62414617/",
12    "https://www.zoopla.co.uk/for-sale/property/oxford/?q=oxford&results_sort=newest_listings&search_source=for-sale",
13    "https://www.zoopla.co.uk/to-rent/property/oxford/",
14    "https://www.zoopla.co.uk/new-homes/property/oxfordshire"
15  ],
16  "maxItems": 20,
17  "endPage": 1,
18  "extendOutputFunction": "($) => { return {} }",
19  "customMapFunction": "(object) => { return {...object} }",
20  "proxy": {
21    "useApifyProxy": true
22  }
23}
24EOF
25
26# Run the Actor using an HTTP API
27# See the full API reference at https://docs.apify.com/api/v2
28curl "https://api.apify.com/v2/acts/epctex~zoopla-scraper/runs?token=$API_TOKEN" \
29  -X POST \
30  -d @input.json \
31  -H 'Content-Type: application/json'
Developer
Maintained by Community
Actor metrics
  • 3 monthly users
  • 1 star
  • 100.0% runs succeeded
  • Created in Apr 2023
  • Modified about 23 hours ago