
Zoopla.co.uk Scraper
Under maintenance
Pricing
$30.00/month + usage

Zoopla.co.uk Scraper
Under maintenance
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.
0.0 (0)
Pricing
$30.00/month + usage
5
Total users
118
Monthly users
6
Runs succeeded
0%
Last modified
11 days ago
Crawling stops after an hour while running it through the code
Closed
private async fetchAndStoreData(): Promise { try { //Run the Actor and wait for it to finish const run = await client.actor("teOj85DgYAQSZUKeJ").call(input);
//Fetch and print Actor results from the run's dataset (if any)console.log('Results from dataset');const { items } = await client.dataset(run.defaultDatasetId).listItems();if (items) {await this.listingsService.saveListings(items);}} catch (error) {console.error('Failed to fetch data:', error);}}
}
I'm using that code in my nest js server

I have checked the run. It stopped after an hour because timeout is 3600 seconds under the settings of the actor.
Please increase timeout to the value suitable to your usecase. In case, you have no idea, don't worry. I just set default timeout to be 0 now. So, it will run until the list is over.