Realtor.ca Scraper | Canada avatar
Realtor.ca Scraper | Canada

Pricing

$25.00/month + usage

Go to Store
Realtor.ca Scraper | Canada

Realtor.ca Scraper | Canada

Developed by

ScrapeMind

ScrapeMind

Maintained by Community

Extract real estate listings, property details, and agent information from realtor.ca for any city or search. Download data as JSON, CSV, or Excel for research, lead generation, or analysis.

0.0 (0)

Pricing

$25.00/month + usage

4

Total users

31

Monthly users

12

Runs succeeded

99%

Issues response

2.3 days

Last modified

2 months ago

You can access the Realtor.ca Scraper | Canada programmatically from your own applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in Integrations settings in Apify Console.

1import { ApifyClient } from 'apify-client';
2
3// Initialize the ApifyClient with your Apify API token
4// Replace the '<YOUR_API_TOKEN>' with your token
5const client = new ApifyClient({
6 token: '<YOUR_API_TOKEN>',
7});
8
9// Prepare Actor input
10const input = {
11 "startUrls": [
12 {
13 "url": "https://www.realtor.ca/map#ZoomLevel=11&Center=43.708087%2C-79.376385&LatitudeMax=43.92955&LongitudeMax=-79.03306&LatitudeMin=43.48581&LongitudeMin=-79.71971&CurrentPage=2&Sort=6-D&PGeoIds=g30_dpz89rm7&GeoName=Toronto%2C%20ON&PropertyTypeGroupID=1&TransactionTypeId=2&PropertySearchTypeId=0&Currency=CAD"
14 }
15 ],
16 "Proxy config": {
17 "useApifyProxy": false
18 }
19};
20
21// Run the Actor and wait for it to finish
22const run = await client.actor("scrapemind/realtor-ca-scraper").call(input);
23
24// Fetch and print Actor results from the run's dataset (if any)
25console.log('Results from dataset');
26console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
27const { items } = await client.dataset(run.defaultDatasetId).listItems();
28items.forEach((item) => {
29 console.dir(item);
30});
31
32// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

Automated Realtor.ca Scraper for Real Estate Data Collection API in JavaScript

The Apify API client for JavaScript is the official library that allows you to use Realtor.ca Scraper | Canada API in JavaScript or TypeScript, providing convenience functions and automatic retries on errors.

Install the apify-client

$npm install apify-client

Other API clients include: