Realtor.ca Scraper
Pricing
from $2.50 / 1,000 results
Realtor.ca Scraper
Scrape Realtor.ca, Canada's national MLS portal. Extracts active listings with a deep schema: price, beds/baths (X+Y format), ownership type, CAD taxes & condo fees, heating/cooling, features, photos, agent contact, plus REALTOR agent & brokerage profiles. 5 modes, bilingual EN/FR.
Pricing
from $2.50 / 1,000 results
Rating
0.0
(0)
Developer
Haketa
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
3 hours ago
Last modified
Categories
Share
Realtor.ca Scraper — Canada MLS Listings, Agents & Brokerages Extractor (CREA / Realtor.ca API Alternative)
The most complete Realtor.ca data extraction tool on Apify. Pull live MLS listings, REALTOR agent profiles, and brokerage office records from Realtor.ca — Canada's national MLS portal operated by CREA — with a deep, normalized schema covering price (CAD), beds/baths in Canadian X+Y format, ownership type, taxes, condo fees, heating fuel, agent contact, and brokerage franchise data. Built for prop-tech, investor research, immigration intel, brokerage analytics, mortgage broker outreach, and Canadian real-estate data teams who need MLS Canada data without building their own Akamai-bypassing crawler.
What This Actor Does
The Realtor.ca Scraper is a production-grade Apify Actor that extracts the full public MLS listing universe from Realtor.ca — the national real-estate portal operated by the Canadian Real Estate Association (CREA) and powered by data from every member real-estate board in Canada (TREB, REBGV, OREB, CREB, QPAREB, and 70+ others). Realtor.ca is the single most-trafficked Canadian real-estate website and the only consumer-facing surface that aggregates listings from coast to coast — Toronto's Yorkville condos, Vancouver's Kitsilano detached homes, Montreal's Plateau triplexes, Calgary acreages, Halifax waterfronts, and Yellowknife cabins all live in one searchable index.
In a single run, the actor returns structured records covering:
- Active for-sale residential listings — single-family detached, semi-detached, townhomes, condo apartments, lofts, co-ops, mobile homes, vacant land
- Active for-rent residential listings — apartments, condos, rental houses, basement suites
- Active commercial listings — office, retail, industrial, multi-family investment, hospitality, business-for-sale
- REALTOR agent profiles — licensed CREA REALTOR members with bio, designations, languages, service areas, and current listing counts
- Brokerage / office profiles — franchise affiliations (RE/MAX, Royal LePage, Century 21, Sutton, Coldwell Banker, EXP, Engel & Völkers, independent boutiques), agent counts, and total active listings
Every record arrives flattened, normalized, and ready for ingestion into Postgres, BigQuery, Snowflake, Google Sheets, Salesforce, HubSpot, or any BI / CRM stack — no parsing scripts, no Akamai cookie wrangling, no per-province board logic, no CSV stitching.
Why scrape Realtor.ca yourself when this exists?
Realtor.ca is one of the most aggressively anti-bot real-estate portals on the public internet. Teams that try to roll their own crawler — even experienced ones — discover the same problems in the same order:
- Realtor.ca sits behind Akamai Bot Manager with pre-flight token gating, fingerprint scoring, and a reCAPTCHA challenge wall — datacenter IPs are blocked within seconds
- The undocumented
api2.realtor.ca/Listing.svc/PropertySearch_Postendpoint requires a rotatingApplicationId, signed query parameters, and consistent client fingerprints — reverse-engineering it takes days - Pagination is cursor-based with a hard 200-results-per-query cap; provincewide queries silently truncate unless you split the geography into a bounding-box grid
- Listing detail pages are bilingual (English + French) — Quebec inventory is FR-only and naive parsers drop or mangle accented characters
- Beds/baths come as
"3 + 1"strings (above-ground + basement) — a uniquely Canadian convention foreign scrapers stringify as"3"and lose half the bedrooms - Ownership types include Freehold, Condominium, Strata (BC), Leasehold, Co-operative, Life Lease, and Crown — each implies a different cost structure
- Taxes are annual CAD values with a separate
taxYear; condo fees include acondoFeeIncludesarray (heat, water, parking, common elements) that nobody parses correctly the first time - Agent and office data live behind separate
Profile.svc/GetAgentByIdandProfile.svc/GetOfficeByIdcalls — joining them to listings requires three coordinated request streams - Realtor.ca throttles aggressively: more than 2-4 parallel requests from the same fingerprint triggers a 24-hour cooldown
- The HTML pages dehydrate JSON state into
window.__PRELOADED_STATE__— when the schema changes (it has 4 times in 24 months), every selector-based scraper breaks silently - CREA's robots.txt and ToS expressly forbid datacenter crawling — only residential-IP, low-concurrency access keeps you under the radar
This actor solves all of that: rotating Canadian residential proxy, conservative concurrency, the correct ApplicationId, automatic bounding-box grid splitting, X+Y bed/bath decoding, EN/FR language detection, joined agent + office enrichment, and a flat output schema you can drop straight into a warehouse.
Quick Start
One-Click Run (Apify UI)
- Open the actor page on Apify Store: haketa/realtor-ca-scraper
- Click "Try for free" — defaults will scrape Ottawa for-sale residential listings as a sanity check
- Replace the
searchUrlsvalue with any Realtor.ca search page URL — for examplehttps://www.realtor.ca/on/toronto/real-estatefor Toronto orhttps://www.realtor.ca/bc/vancouver/real-estatefor Vancouver - Hit Start — your dataset is available in the Dataset tab within minutes, downloadable as JSON, CSV, Excel, HTML, XML, or JSON-Lines
API Run (Python)
from apify_client import ApifyClientclient = ApifyClient("YOUR_APIFY_TOKEN")run = client.actor("haketa/realtor-ca-scraper").call(run_input={"mode": "search-area","searchUrls": ["https://www.realtor.ca/on/toronto/real-estate","https://www.realtor.ca/bc/vancouver/real-estate"],"transactionType": "for-sale","propertyTypeGroup": "residential","priceMin": 500000,"priceMax": 2000000,"bedroomsMin": 2,"fetchDetails": True,"fetchAgentProfiles": False,"fetchOfficeProfiles": False,"maxItems": 500,"maxPages": 10,"proxyConfiguration": {"useApifyProxy": True,"apifyProxyGroups": ["RESIDENTIAL"],"apifyProxyCountry": "CA"}})for record in client.dataset(run["defaultDatasetId"]).iterate_items():print(record["mlsNumber"], record["addressLine"], record["city"], record["priceAmount"])
API Run (Node.js / TypeScript)
import { ApifyClient } from 'apify-client';const client = new ApifyClient({ token: 'YOUR_APIFY_TOKEN' });const run = await client.actor('haketa/realtor-ca-scraper').call({mode: 'map-bbox',mapBoundingBox: {latMin: 43.62, // Toronto downtown corelatMax: 43.72,lngMin: -79.45,lngMax: -79.32},transactionType: 'for-sale',propertyTypeGroup: 'residential',priceMin: 800000,bedroomsMin: 2,fetchDetails: true,maxItems: 300,proxyConfiguration: {useApifyProxy: true,apifyProxyGroups: ['RESIDENTIAL'],apifyProxyCountry: 'CA'}});const { items } = await client.dataset(run.defaultDatasetId).listItems();console.log(`Pulled ${items.length} downtown Toronto for-sale listings`);
API Run (cURL)
curl -X POST "https://api.apify.com/v2/acts/haketa~realtor-ca-scraper/runs?token=YOUR_APIFY_TOKEN" \-H "Content-Type: application/json" \-d '{"mode": "single-listing","searchUrls": ["X8234567", "W8123450", "C8765432"],"fetchDetails": true,"fetchAgentProfiles": true,"proxyConfiguration": {"useApifyProxy": true,"apifyProxyGroups": ["RESIDENTIAL"],"apifyProxyCountry": "CA"}}'
How It Works
Realtor.ca is not a static HTML site. The consumer-facing pages at realtor.ca/{province}/{city}/real-estate and realtor.ca/real-estate/{mls-number}/... are React shells that hydrate from CREA's internal JSON API at api2.realtor.ca. This actor talks to that API directly using got-scraping (no headless browser overhead), parses the JSON, and — for the few fields that only appear in the HTML hydration payload — falls back to Cheerio against the rendered listing page.
| Source Endpoint | Purpose | Method |
|---|---|---|
api2.realtor.ca/Listing.svc/PropertySearch_Post | Paginated listing search by province, city, map bounding box, price, beds/baths, transaction type | POST (form-encoded) |
api2.realtor.ca/Listing.svc/PropertyDetails | Full listing detail by MLS number — remarks, all photos, features, appliances, financials | GET |
api2.realtor.ca/Profile.svc/GetAgentById | REALTOR agent profile — bio, designations, languages, service areas, current listings | GET |
api2.realtor.ca/Profile.svc/GetOfficeById | Brokerage / office profile — franchise, agent count, total listings | GET |
www.realtor.ca/{province}/{city}/real-estate | Search-area URL parser — extracts canonical geo coordinates and slug context | GET (Cheerio) |
www.realtor.ca/real-estate/{mls}/... | Listing HTML — fallback for fields not exposed via PropertyDetails (e.g., agent photo, brokerage franchise badge) | GET (Cheerio) |
www.realtor.ca/agent/{id}/{slug} | Agent profile HTML — used by agent-profile mode | GET (Cheerio) |
www.realtor.ca/office/firm/{id}/{slug} | Office profile HTML — used by office-profile mode | GET (Cheerio) |
Engineering details
- HTTP-first with
got-scraping— no Puppeteer / Playwright overhead; bypasses 90% of browser fingerprint blocks by emulating a realistic Chrome 124 client - Canadian residential proxy mandatory —
apifyProxyGroups: ["RESIDENTIAL"]+apifyProxyCountry: "CA"; datacenter IPs are blocked within 3-5 requests - Bounding-box grid auto-split —
map-bboxmode detects when a search would exceed Realtor.ca's 200-result-per-query cap and recursively quarters the box until every cell returns < 200 results, then deduplicates by MLS number ApplicationIdinjection — the actor uses a known-good ApplicationId by default and exposes it as an override input for the rare day CREA rotates it- Conservative concurrency (2-4) + 1500ms delay — well below Realtor.ca's throttling threshold; tuned for sustained multi-thousand-listing runs without 429s
- Exponential backoff on 403/429/503 — up to 4 retries per request with rotating proxy session
- X+Y bed/bath decoder —
"3 + 1"→bedroomsTotal: 4,bedroomsAbove: 3,bedroomsBelow: 1; bathrooms decoded asbathroomsTotal = full + half × 0.5 - EN/FR language detection —
descriptionLangis set per-listing so downstream pipelines can route Quebec inventory to French NLP, and Ontario/Alberta/BC inventory to English - CAD currency normalization — every
priceAmount,taxAnnualAmount,condoFeeMonthlyis a numeric value;priceCurrencyis always"CAD" - Tax-to-price ratio precomputed —
taxToPrice = taxAnnualAmount / priceAmountfor instant comparables filtering - Agent + office join —
fetchAgentProfilesandfetchOfficeProfilesadd one request per unique agent/office (not per listing) — extremely cheap even on thousand-listing runs - Deterministic, flat output — one record per listing (or per agent/office in profile modes); same shape regardless of mode so a single ingestion script handles everything
Input Parameters
{"mode": "search-area","searchUrls": ["https://www.realtor.ca/on/toronto/real-estate","https://www.realtor.ca/bc/vancouver/real-estate"],"mapBoundingBox": {"latMin": 43.62,"latMax": 43.72,"lngMin": -79.45,"lngMax": -79.32},"transactionType": "for-sale","propertyTypeGroup": "residential","priceMin": 500000,"priceMax": 2000000,"bedroomsMin": 2,"bathroomsMin": 1,"newListingsOnlyDays": 0,"language": "both","fetchDetails": true,"fetchAgentProfiles": false,"fetchOfficeProfiles": false,"maxItems": 500,"maxPages": 10,"proxyConfiguration": {"useApifyProxy": true,"apifyProxyGroups": ["RESIDENTIAL"],"apifyProxyCountry": "CA"},"requestDelay": 1500,"maxConcurrency": 2,"maxRetries": 4,"applicationId": "","debugMode": false}
Parameter reference
| Parameter | Type | Default | Description |
|---|---|---|---|
mode | string | search-area | One of search-area, map-bbox, single-listing, agent-profile, office-profile. |
searchUrls | array<string> | ["https://www.realtor.ca/on/ottawa/real-estate"] | Realtor.ca URLs (or MLS numbers in single-listing mode). Used by every mode except map-bbox. |
mapBoundingBox | object | central Ottawa box | Geographic search box: latMin, latMax, lngMin, lngMax in decimal degrees. Used only in map-bbox mode. Large boxes auto-quarter. |
transactionType | string | for-sale | for-sale, for-rent, or both. |
propertyTypeGroup | string | residential | residential, commercial, or all. |
priceMin | integer | 0 | Minimum price in CAD. 0 = no minimum. |
priceMax | integer | 0 | Maximum price in CAD. 0 = no maximum. |
bedroomsMin | integer | 0 | Minimum bedroom count. 0 = no filter. |
bathroomsMin | integer | 0 | Minimum bathroom count. 0 = no filter. |
newListingsOnlyDays | integer | 0 | Keep only listings first published within the last N days. 0 = keep all. |
language | string | both | both, en, or fr — filter by detected description language. Useful for Quebec-only or RoC-only feeds. |
fetchDetails | boolean | true | Visit each listing's detail endpoint for full remarks, all photos, features, appliances, financials. Off = search-summary only. |
fetchAgentProfiles | boolean | false | Additionally fetch the REALTOR agent profile for each listing's listing agent. One request per unique agent. |
fetchOfficeProfiles | boolean | false | Additionally fetch the brokerage office profile (franchise, agent count, total listings). One request per unique office. |
maxItems | integer | 100 | Hard cap on total records across all inputs. 0 = unlimited. |
maxPages | integer | 10 | Maximum result pages per search area / bbox cell. Each page returns up to ~200 listings. |
proxyConfiguration | object | CA Residential | REQUIRED. Use Apify Proxy with RESIDENTIAL group and CA country. Datacenter IPs are blocked. |
requestDelay | integer | 1500 | Milliseconds between requests. Keep at 1000+ for sustained runs. |
maxConcurrency | integer | 2 | Parallel requests. Realtor.ca tolerates 2-4 — higher triggers a 24-hour cooldown. |
maxRetries | integer | 4 | Retry attempts on 403 / 429 / 503 / captcha responses. |
applicationId | string | "" | Advanced: override the ApplicationId sent to api2.realtor.ca. Leave blank to use the built-in default. |
debugMode | boolean | false | Verbose logging — dumps API request/response shapes, HTML hydration keys, and field maps for the first page. Use only when troubleshooting. |
Output Schema
Every record arrives as a flat JSON object with the same top-level shape regardless of whether it was produced by a listing mode, an agent-profile mode, or an office-profile mode. The recordType field tells you which one to expect, and irrelevant fields are simply null.
Identity & source fields
| Field | Type | Description |
|---|---|---|
recordType | string | listing (default) / agent / office |
mlsNumber | string | MLS listing ID, board-prefixed (e.g. X8234567, W8123450, C8765432) |
listingId | string | Realtor.ca internal listing ID |
source | string | Always realtor.ca |
mode | string | Scrape mode that produced this record |
listingUrl | string | Full canonical Realtor.ca listing URL |
searchUrl | string | Source input URL / search query |
scrapedAt | string | ISO-8601 timestamp of extraction |
Transaction & price fields (CAD)
| Field | Type | Description |
|---|---|---|
transactionType | string | For Sale / For Rent |
status | string | active (v1 — sold inference reserved) |
priceRaw | string | Original price string from Realtor.ca |
priceAmount | number | Parsed numeric price in CAD |
priceCurrency | string | Always CAD |
priceFrequency | string | Monthly / Yearly / Weekly (rentals) |
pricePerSqft | number | Price ÷ interior size |
Property characteristics
| Field | Type | Description |
|---|---|---|
propertyType | string | Single Family / Condo / Vacant Land / Multi-Family / Commercial etc. |
buildingType | string | House / Apartment / Row-Townhouse / Duplex / Mobile Home etc. |
ownershipType | string | Freehold / Condominium / Strata / Leasehold / Co-operative / Life Lease |
bedroomsRaw | string | Original bed string (e.g. "3 + 1") |
bedroomsTotal | number | Total bedrooms (above + below ground) |
bedroomsAbove | number | Above-ground bedrooms |
bedroomsBelow | number | Basement bedrooms (may be non-conforming) |
bathroomsRaw | string | Original bath string (e.g. "2 + 1") |
bathroomsTotal | number | Full + half × 0.5 |
bathroomsFull | number | Full bathrooms |
bathroomsHalf | number | Half / powder bathrooms |
sizeInteriorRaw | string | Original interior size string |
sizeInterior | number | Parsed square footage |
lotSizeRaw | string | Lot / land size string |
sizeFrontage | string | Lot frontage |
yearBuilt | integer | Construction year |
parkingType | string | Garage / Carport / Underground / Street |
parkingSpaces | integer | Number of parking spots |
basementType | string | Full / Partial / Crawl Space / None |
basementFeatures | array | Finished / Walk-out / Separate Entrance etc. |
heatingType | string | Forced Air / Baseboard / Heat Pump / Radiant |
heatingFuel | string | Natural Gas / Electric / Oil / Propane / Wood |
coolingType | string | Central Air / Wall Unit / None |
exteriorFinish | string | Brick / Vinyl / Stucco / Wood / Stone |
roofType | string | Asphalt Shingle / Metal / Tile |
flooringType | string | Hardwood / Carpet / Tile / Laminate / Vinyl |
poolType | string | Inground / Above Ground / None |
waterSource | string | Municipal / Well / Lake |
sewer | string | Municipal / Septic |
zoningDescription | string | Zoning text |
fireplacePresent | boolean | Whether the property has a fireplace |
viewType | string | Water / Mountain / City etc. |
waterfrontName | string | Adjacent water body name |
features | array | Property features / amenities |
appliances | array | Included appliances |
Location
| Field | Type | Description |
|---|---|---|
addressLine | string | Street address |
city | string | City |
province | string | Province code (ON, QC, BC, AB, MB, SK, NS, NB, NL, PE, YT, NT, NU) |
postalCode | string | Canadian postal code (A1A 1A1) |
latitude | number | Latitude |
longitude | number | Longitude |
communityName | string | Community / subdivision name |
neighbourhood | string | Neighbourhood name |
locationDescription | string | Cross-streets / directions |
Financials
| Field | Type | Description |
|---|---|---|
taxAnnualAmount | number | Annual property tax in CAD |
taxYear | integer | Tax assessment year |
taxToPrice | number | Annual tax ÷ price (precomputed) |
condoFeeMonthly | number | Monthly condo / strata / maintenance fee in CAD |
condoFeeIncludes | array | What the condo fee covers (heat, water, parking, common elements) |
associationFee | number | HOA-style association fee if present |
Listing lifecycle & media
| Field | Type | Description |
|---|---|---|
listingDate | string | Date the listing was published |
lastUpdated | string | Date last modified |
daysOnMarket | integer | DOM (reserved for future versions — requires cross-run state) |
hasOpenHouse | boolean | Whether an open house is scheduled |
openHouses | array | Scheduled open house dates / times |
photoCount | integer | Number of photos |
thumbnailUrl | string | Primary photo URL |
photos | array | All photo URLs |
virtualTourUrl | string | 3D / virtual tour link |
videoUrl | string | Video link |
publicRemarks | string | Public listing description |
descriptionLang | string | en or fr |
Agent fields
| Field | Type | Description |
|---|---|---|
agentName | string | REALTOR name |
agentId | string | Realtor.ca agent ID |
agentUrl | string | Agent profile URL |
agentPhone | string | Contact phone |
agentEmail | string | Contact email |
agentWebsite | string | Personal website |
agentPhoto | string | Photo URL |
agentBio | string | Agent biography (profile modes) |
agentDesignations | array | Professional designations / certifications |
agentLanguages | array | Languages spoken |
agentServiceAreas | array | Geographic service areas (agent-profile mode) |
agentSpecializations | array | Residential / Commercial / Luxury / Rural |
currentListingCount | integer | Agent's active listing count (agent-profile mode) |
Office / brokerage fields
| Field | Type | Description |
|---|---|---|
officeName | string | Brokerage / office name |
officeId | string | Realtor.ca office firm ID |
officeUrl | string | Office profile URL |
officeAddress | string | Brokerage address |
officePhone | string | Brokerage phone |
officeWebsite | string | Brokerage website |
officeEmail | string | Brokerage email (office-profile mode) |
brokerageFranchise | string | Parent franchise (RE/MAX, Royal LePage, Century 21, Sutton, Coldwell Banker, EXP, Engel & Völkers, independent) |
officeAgentCount | integer | Number of agents at the office (office-profile mode) |
officeListingCount | integer | Active listings at the office (office-profile mode) |
Intelligence fields (reserved)
| Field | Type | Notes |
|---|---|---|
firstSeenAt, priceHistory, priceChanged, priceReduced, changePercent, hpiBenchmark, deviationVsHPI, marketCondition, estimatedStatus | various | Reserved for a future version that tracks state across runs and joins to CREA MLS HPI benchmarks. Present in the schema for forward-compatibility; emitted as null in v1. |
Example: Toronto condo for-sale listing
{"recordType": "listing","mlsNumber": "C8123450","listingId": "27345610","source": "realtor.ca","mode": "search-area","listingUrl": "https://www.realtor.ca/real-estate/27345610/210-1080-bay-st-toronto","transactionType": "For Sale","status": "active","priceRaw": "$899,000","priceAmount": 899000,"priceCurrency": "CAD","priceFrequency": null,"pricePerSqft": 1199,"propertyType": "Single Family","buildingType": "Apartment","ownershipType": "Condominium","bedroomsRaw": "2 + 0","bedroomsTotal": 2,"bedroomsAbove": 2,"bedroomsBelow": 0,"bathroomsRaw": "2 + 0","bathroomsTotal": 2,"bathroomsFull": 2,"bathroomsHalf": 0,"sizeInteriorRaw": "700 - 799 sqft","sizeInterior": 750,"yearBuilt": 2015,"parkingType": "Underground","parkingSpaces": 1,"heatingType": "Forced Air","heatingFuel": "Natural Gas","coolingType": "Central Air","addressLine": "210 - 1080 Bay St","city": "Toronto","province": "ON","postalCode": "M5S 0A5","latitude": 43.6685,"longitude": -79.3870,"communityName": "Bay Street Corridor","neighbourhood": "Yorkville","taxAnnualAmount": 3420,"taxYear": 2024,"taxToPrice": 0.0038,"condoFeeMonthly": 615,"condoFeeIncludes": ["Heat", "Water", "Common Area Maintenance", "Building Insurance"],"features": ["Concierge", "Gym", "Pool", "Visitor Parking"],"appliances": ["Dishwasher", "Fridge", "Stove", "Washer", "Dryer"],"listingDate": "2026-05-10","lastUpdated": "2026-05-15","photoCount": 28,"thumbnailUrl": "https://cdn.realtor.ca/listing/TS123/cdn/...","publicRemarks": "Bright south-facing 2-bed in the heart of Yorkville. Steps to the subway, U of T, and Bloor Street shopping. Building amenities include 24-hr concierge, gym, and indoor pool.","descriptionLang": "en","agentName": "Jane Doe","agentId": "2182401","agentPhone": "(416) 555-0199","agentEmail": "jane@example.ca","officeName": "Royal LePage Signature Realty","officeId": "259003","brokerageFranchise": "Royal LePage","scrapedAt": "2026-05-16T14:30:00.000Z"}
Example: Vancouver West End for-rent listing
{"recordType": "listing","mlsNumber": "R2891234","source": "realtor.ca","mode": "map-bbox","transactionType": "For Rent","priceRaw": "$3,200 / Monthly","priceAmount": 3200,"priceCurrency": "CAD","priceFrequency": "Monthly","propertyType": "Single Family","buildingType": "Apartment","ownershipType": "Strata","bedroomsTotal": 1,"bathroomsTotal": 1,"sizeInterior": 620,"addressLine": "1205 - 1234 Davie St","city": "Vancouver","province": "BC","postalCode": "V6E 1N5","neighbourhood": "West End","descriptionLang": "en","officeName": "RE/MAX Crest Realty","brokerageFranchise": "RE/MAX","scrapedAt": "2026-05-16T14:30:00.000Z"}
Example: Montreal Plateau French-language listing
{"recordType": "listing","mlsNumber": "Q19876543","source": "realtor.ca","transactionType": "For Sale","priceAmount": 749000,"priceCurrency": "CAD","propertyType": "Multi-Family","buildingType": "Triplex","ownershipType": "Freehold","bedroomsTotal": 6,"bathroomsTotal": 3,"addressLine": "4520 Rue Saint-Denis","city": "Montréal","province": "QC","postalCode": "H2J 2L4","neighbourhood": "Le Plateau-Mont-Royal","publicRemarks": "Magnifique triplex au cœur du Plateau. Trois logements rénovés avec revenus stables. Idéal pour propriétaire-occupant ou investisseur.","descriptionLang": "fr","scrapedAt": "2026-05-16T14:30:00.000Z"}
Scrape Mode Reference
| Mode | Input shape | Output | When to use |
|---|---|---|---|
search-area | Realtor.ca province/city result URLs | listing records | Build a fresh inventory snapshot for a known geography (e.g., all of Toronto, all of Vancouver) |
map-bbox | mapBoundingBox (lat/lng box) | listing records | Precision geo-search — a single neighbourhood, school catchment, transit corridor, or investment zone |
single-listing | MLS numbers in searchUrls | listing records | Refresh a known watchlist of MLS numbers (CRM enrichment, alerting, comp pulls) |
agent-profile | Agent profile URLs (e.g. realtor.ca/agent/2182401/jane-doe) | agent records | Recruit top producers, build broker contact databases, audit competitor agents |
office-profile | Office URLs (e.g. realtor.ca/office/firm/259003/royal-lepage-team) | office records | Map brokerage market share, audit franchise expansion, build M&A target lists |
Property Type & Ownership Taxonomy
Property types
| Type | Typical building types |
|---|---|
| Single Family | House, Apartment, Row-Townhouse, Mobile Home |
| Multi-Family | Duplex, Triplex, Fourplex, Apartment Building |
| Vacant Land | Lot, Acreage, Farm, Recreational |
| Commercial | Office, Retail, Industrial, Mixed-Use, Hospitality |
| Business | Business-without-property listings |
Ownership types (uniquely Canadian)
| Ownership | Where common | Notes |
|---|---|---|
| Freehold | Detached/semi-detached across Canada | Owner holds title to land and building |
| Condominium | ON, AB, NS, NB, PE, MB, SK, NL, QC | Owner holds title to unit + share of common elements |
| Strata | BC, NT, YT, NU | BC's equivalent of condominium (Strata Property Act) |
| Co-operative | ON & QC (older buildings) | Owner holds shares in a corporation that owns the building |
| Leasehold | First Nations land, military bases, some Toronto sites | Time-limited land lease (typically 99 years) |
| Life Lease | Senior housing across ON, MB | Right to occupy for life; capital refunded on exit |
Use Cases
Canadian Prop-Tech & Real Estate SaaS
Prop-tech founders building Canadian-market apps (CRM, alerting, lead gen, AVM, mortgage prequal) use this dataset to:
- Bootstrap an MVP listings index without negotiating CREA DDF / VOW access agreements (which require board membership and months of paperwork)
- Power consumer-facing search UIs for niche audiences (luxury, off-grid, multigenerational, accessible housing) that the big portals underserve
- Train AVM and price-prediction models on real Canadian inventory with full feature vectors (beds, baths, sqft, condo fees, taxes, neighbourhood)
- Generate market reports segmented by city, neighbourhood, building age, ownership type
- Build school-catchment, commute-time, or transit-overlay tools by joining listing coordinates to municipal open data
- A/B test pricing strategies against live brokerage inventory
Investor & Portfolio Research
Canadian REITs, family offices, and individual buy-and-hold investors use Realtor.ca data to:
- Screen multi-family inventory (duplex/triplex/fourplex) by price-per-door and cap rate proxies (using
taxAnnualAmountand rental comps) - Track condo pipeline absorption in Toronto's CityPlace, Liberty Village, and Vancouver's Yaletown and Coal Harbour
- Identify under-priced freehold inventory by computing $/sqft vs. neighbourhood median
- Spot price reductions by rerunning the same search weekly and diffing
- Build short-listing pipelines for property managers and acquisition teams
- Score new-build vs resale spread to time entry into a market
Immigration & Relocation Buyer Intelligence
Newcomer-focused real-estate teams, relocation consultants, and immigration law firms use this dataset to:
- Build neighbourhood guides for clients arriving on PR / work permit visas — cost-of-housing snapshots per family-size cohort
- Generate "what your budget buys" reports in Toronto, Vancouver, Calgary, Montreal, Ottawa, Halifax, and Edmonton
- Connect newcomers with multilingual agents by joining the dataset on
agentLanguages(Mandarin, Punjabi, Tagalog, Spanish, Arabic, French, Portuguese, Russian) - Track rental availability by neighbourhood for short-term staging accommodations
- Surface bilingual French/English inventory for clients relocating to Quebec or Acadian regions of NB
Brokerage Operations & Recruiting
Real-estate brokerages and team leaders use the agent + office endpoints to:
- Recruit producing agents by filtering competitor offices by
officeListingCountandagentSpecializations - Benchmark franchise market share (RE/MAX vs. Royal LePage vs. Century 21 vs. Sutton vs. EXP) per city
- Audit team manager candidates by triangulating
currentListingCountacross years - Build poaching shortlists of top producers at competing offices
- Monitor brokerage expansion as new offices open or franchise affiliations change
- Generate competitive intelligence dashboards for franchise leadership
Mortgage Brokers & Lender Marketing
Mortgage brokers, lender BDM teams, and fintech underwriters use this dataset to:
- Time outreach to new buyers by scraping fresh listings daily and contacting the listing agent within hours
- Pre-screen properties for unconventional construction, leasehold land, or non-conforming basement units that affect lendability
- Generate purchase-price-vs-tax-burden affordability reports for pre-approval marketing campaigns
- Identify high-rise condo inventory in projects with known mortgage-insurance restrictions
- Cross-sell HELOC and refinance offers to neighbourhoods showing high turnover and equity appreciation
REIT & Institutional Investor Research
Public Canadian REITs (CAPREIT, Boardwalk, InterRent, Killam, RioCan) and institutional investors use the actor for:
- Acquisition pipeline scouting — every multi-family >5 unit listing in target metros
- Tenant-base research — average asking rents per bedroom count per neighbourhood
- Submarket cap-rate calibration — combining tax data with rent comps
- Disposition timing — tracking when comparable buildings list and at what price
- Board reporting with hard data on competing inventory
Valuation, Appraisal & Comp Research
Residential and commercial appraisers, AACI candidates, and mortgage default underwriters use this dataset to:
- Pull active comps by lat/lng box, property type, beds/baths, and price range — bypassing slow MLS comp tools
- Cross-check disclosed sale prices against initial list prices (when combined with historical archives)
- Build neighbourhood adjustments grids with thousands of data points per quarter
- Reverse-engineer condo building $/sqft trajectories for refinance and divorce appraisals
- Support expert witness reports in expropriation and matrimonial property cases
Real Estate Journalism & Data Reporting
Newsrooms covering Canada's housing market — The Globe and Mail, Toronto Star, Vancouver Sun, La Presse, Le Devoir, CBC News, CTV, Global News, Daily Hive, blogTO — use the dataset to:
- Cover housing affordability stories with current asking-price data per neighbourhood
- Investigate foreign-buyer trends by tracking inventory and language fingerprints
- Map "ghost listings" that vanish and reappear at higher prices
- Produce annual market reports with metro-level $/sqft tables and YoY change
- Visualize the rental crisis with current asking rents in every major city
- Investigate brokerage misconduct by joining disciplined-agent registries to active listings
Government & Urban Planning Research
Municipal planning departments, CMHC researchers, provincial housing ministries, and academic urban-policy programs use Realtor.ca data for:
- Measure supply elasticity — listing volume vs. price by neighbourhood quarter-over-quarter
- Study missing-middle housing — duplex/triplex/fourplex availability in restrictive-zoning jurisdictions
- Benchmark short-term-rental impact — sudden inventory drops in tourist neighbourhoods (Old Quebec, Banff, Tofino, Mont-Tremblant)
- Quantify the rental-vs-ownership gap in priced-out metros (Vancouver, Toronto)
- Inform zoning reform debates with hard data on what's actually for sale
M&A and Brokerage Investment Banking
Boutique investment banks advising on brokerage roll-ups and franchise acquisitions use the office-profile endpoint to:
- Build target lists of independent brokerages with N+ agents in target metros
- Quantify pipeline — total active listings × estimated commission × split ratios
- Score franchise vs. independent market share trajectories
- Identify succession candidates at brokerages whose principals appear in retirement age cohorts
Sample Queries & Recipes
Recipe 1: All for-sale Toronto condos under $700K — first-time buyer feed
{"mode": "search-area","searchUrls": ["https://www.realtor.ca/on/toronto/real-estate"],"transactionType": "for-sale","propertyTypeGroup": "residential","priceMax": 700000,"bedroomsMin": 1,"fetchDetails": true,"maxItems": 1000}
Recipe 2: Vancouver West End rental inventory — landlord-rep CMA pull
{"mode": "map-bbox","mapBoundingBox": {"latMin": 49.275,"latMax": 49.295,"lngMin": -123.150,"lngMax": -123.120},"transactionType": "for-rent","language": "en","fetchDetails": true}
Recipe 3: Montreal Plateau French-language triplex investor target list
{"mode": "search-area","searchUrls": ["https://www.realtor.ca/qc/montreal/real-estate"],"transactionType": "for-sale","propertyTypeGroup": "residential","bedroomsMin": 5,"language": "fr","fetchDetails": true,"maxItems": 300}
Then filter downstream for buildingType === "Triplex".
Recipe 4: Calgary new listings in the last 7 days — buyer alert feed
{"mode": "search-area","searchUrls": ["https://www.realtor.ca/ab/calgary/real-estate"],"transactionType": "for-sale","newListingsOnlyDays": 7,"fetchDetails": true}
Recipe 5: Refresh a watchlist of 50 specific MLS numbers — CRM enrichment
{"mode": "single-listing","searchUrls": ["X8234567", "W8123450", "C8765432", "E8111111", "N8222222"],"fetchDetails": true,"fetchAgentProfiles": true,"fetchOfficeProfiles": true}
Recipe 6: Top RE/MAX office in Vancouver — agent recruiting research
{"mode": "office-profile","searchUrls": ["https://www.realtor.ca/office/firm/259003/re-max-crest-realty-vancouver"]}
Recipe 7: Ottawa Westboro single-family $800K-$1.5M with parking and basement — relocation buyer brief
{"mode": "map-bbox","mapBoundingBox": {"latMin": 45.385,"latMax": 45.405,"lngMin": -75.760,"lngMax": -75.730},"transactionType": "for-sale","priceMin": 800000,"priceMax": 1500000,"bedroomsMin": 3,"bathroomsMin": 2,"fetchDetails": true,"fetchAgentProfiles": true}
Integration Examples
Google Sheets
Schedule the actor daily in Apify (the built-in Scheduler accepts any cron expression), add the Apify → Google Sheets integration on the schedule, and a fresh Realtor.ca inventory sheet lands in your Drive every morning. Add conditional formatting to flag priceReduced rows (once you start diffing against your own historical snapshots).
Make.com / Zapier / n8n
The official Apify connectors on Make, Zapier, and n8n let you trigger downstream workflows on every actor run. Common automations:
- New listings in a saved geography → Slack alert in
#new-toronto-inventory - Listings with
priceFrequency === "Monthly"and a target neighbourhood → push to a rental CRM as fresh leads - Agent-profile records with email +
currentListingCount > 20→ enqueue into an Outreach.io recruiting sequence - Listings with
condoFeeMonthly > 1000→ tag as "high-fee" in HubSpot for client warning
Power BI, Tableau, Looker, Metabase
Use Apify's REST API as a connected data source and refresh on schedule. Out-of-the-box dashboards:
- Median ask $/sqft by neighbourhood quarter-over-quarter
- Inventory by ownership type per metro
- Brokerage franchise market share by city
- Bilingual inventory share in Quebec / Ottawa / Moncton
- Year-built distribution per neighbourhood (heritage / mid-century / new-build)
Postgres / Snowflake / BigQuery
Configure an Apify webhook on the ACTOR.RUN.SUCCEEDED event pointing at your warehouse ingestion endpoint. The flat schema deserializes cleanly into a listings table keyed on mlsNumber, with agents and offices as side tables. Run the actor multiple times per day to build a slowly-changing-dimension history of asking-price moves.
Salesforce / HubSpot / Pipedrive CRM enrichment
Trigger an Apify run hourly during business hours, upsert listing records on mlsNumber and agent records on agentId. Status changes (active → withdrawn → relisted) and price drops can auto-create Tasks for agents or Cases for sales managers. Brokerage records become Accounts; agents become Contacts hierarchically linked to their Office.
Slack & Microsoft Teams alerts
Use the Apify Slack integration to post new-listing alerts directly to channels — #toronto-luxury, #vancouver-investor, #calgary-acreage, #halifax-relocations — formatted with thumbnail, price, address, and a clickable Realtor.ca link.
Major Canadian Markets at a Glance
| Metro | Province | Population (CMA) | Realtor.ca Coverage Notes |
|---|---|---|---|
| Toronto (GTA) | ON | ~6.7M | Highest listing volume nationwide; Yorkville, Liberty Village, Etobicoke, Scarborough, North York, Vaughan, Mississauga, Markham, Oakville, Burlington |
| Montreal | QC | ~4.4M | Bilingual (FR-dominant) inventory; Plateau-Mont-Royal, Westmount, Outremont, NDG, Mile End, Old Montreal, Laval, Longueuil |
| Vancouver | BC | ~2.7M | Strata ownership dominates; West End, Yaletown, Kitsilano, Coal Harbour, Mount Pleasant, Burnaby, Richmond, North Vancouver, Surrey |
| Calgary | AB | ~1.6M | Strong detached + acreage market; Beltline, Mission, Inglewood, Kensington, Bridgeland, plus rural foothills inventory |
| Edmonton | AB | ~1.5M | Older detached stock + new-build sprawl; Oliver, Whyte Avenue, Glenora, Westmount, Sherwood Park |
| Ottawa | ON | ~1.5M | Bilingual; Westboro, Glebe, Hintonburg, Centretown, Manor Park, plus Gatineau (QC) cross-river inventory |
| Quebec City | QC | ~0.85M | Predominantly FR; Old Quebec, Saint-Roch, Limoilou, Sainte-Foy |
| Winnipeg | MB | ~0.85M | Affordable detached + character home stock; Wolseley, Crescentwood, St. Boniface, Osborne Village |
| Hamilton | ON | ~0.8M | GTA-adjacent affordability story; Westdale, Durand, Ainslie Wood |
| Halifax | NS | ~0.5M | East coast capital; South End, North End, Bedford, Dartmouth, Spryfield |
| Victoria | BC | ~0.4M | Premium island market; Oak Bay, Fairfield, James Bay, Saanich |
| St. John's | NL | ~0.21M | Coastal heritage stock |
| Whitehorse / Yellowknife | YT / NT | small | Sparse but covered — useful for resource-sector relocations |
The actor handles all 10 provinces and 3 territories. There is no built-in cap on geography — you control scope through searchUrls and mapBoundingBox.
Cost & Performance
| Metric | Value |
|---|---|
| Engine | HTTP via got-scraping + Cheerio (no headless browser) |
| Runtime (100 listings, search-area) | 3-6 minutes (governed by 1500ms delay + concurrency 2) |
| Runtime (1000 listings, search-area, fetchDetails on) | 30-60 minutes |
| Runtime (single MLS lookup) | 5-15 seconds |
| Cost per run | Varies with item count — pay-per-event pricing |
| Pricing model | Pay-per-event (transparent per-record billing) |
| Data freshness | Live at run time — same data Realtor.ca serves to a browser |
| Auth required | None |
| Proxy required | Yes — Apify Proxy, RESIDENTIAL group, country CA |
| Concurrency | 2 default, 4 max — Realtor.ca throttles above |
| Memory footprint | 256 MB baseline; 1024 MB safe for thousand-listing runs with fetchDetails: true |
Compliance, Privacy & Legal Notes
- Public data only — every field this actor extracts is publicly visible to anyone browsing realtor.ca without an account
- No PII beyond what listings already publish — agent name, brokerage phone, and listing address are public marketing data; no SIN, no date-of-birth, no banking
- No buyer / tenant data — Realtor.ca does not expose buyer or tenant identities and this actor cannot retrieve them
- CREA's MLS®, Multiple Listing Service®, and REALTOR® trademarks remain property of CREA — use of scraped data must respect trademark guidelines
- CREA Terms of Use prohibit republishing the full database; this actor is intended for internal analytics, lead generation, research, journalism, and CRM enrichment — not for building a competing public listings portal
- Robots.txt — Realtor.ca's robots.txt restricts crawling certain endpoints; the actor's request patterns (low concurrency, residential IPs, conservative rate) emulate a human browsing session
- GDPR / PIPEDA / Quebec Law 25 — agent contact data falls under business-card-exemption guidance in most cases; consult counsel before bulk outreach
- CASL (Canadian Anti-Spam Law) — bulk email outreach to scraped agent addresses requires CASL-compliant consent and unsubscribe handling
- Provincial real-estate Acts (RECO ON, RECA AB, RECBC BC, OACIQ QC, NSREC NS, etc.) regulate how MLS data may be republished by licensed brokerages
Important: This actor is a tool. You are responsible for the lawful use of its output. Do not use Realtor.ca data for unlawful contact, harassment, stalking, fraud, or to mislead consumers about agent affiliations.
Frequently Asked Questions
How fresh is the data?
Live at run time. Realtor.ca does not publish a downloadable dataset — the actor pulls the same JSON that powers realtor.ca in your browser, at the moment your run executes. Schedule it hourly, daily, or weekly to maintain a rolling snapshot.
How many listings will I get per run?
Depends on geography and filters. A bounded map-bbox over downtown Toronto returns hundreds of listings; an unfiltered all-of-Ontario search-area request can return tens of thousands. The actor honours maxItems and maxPages to cap your run.
Does this actor require a Realtor.ca login?
No. Realtor.ca is publicly browseable and this actor uses the same public endpoints a logged-out user would hit. You only need an Apify account.
Why is residential proxy required?
Realtor.ca uses Akamai Bot Manager with aggressive fingerprint scoring. Datacenter IP ranges (AWS, GCP, Azure, DigitalOcean, OVH) are blocked within 3-5 requests. Canadian residential IPs from Apify Proxy emulate a real consumer browsing pattern and stay under the threshold.
Can I run this on the Apify Free Plan?
Yes — small runs work on the Free tier. Realistic production usage (thousands of listings/day with residential proxy) requires a paid Apify plan to cover Proxy and Compute Unit costs.
Can I scrape sold or expired listings?
Realtor.ca only exposes active listings publicly. Sold inference (status: sold, daysOnMarket, priceHistory) requires cross-run state and is reserved for a future version of this actor — the schema fields are present for forward-compatibility.
Does the actor handle French-language listings?
Yes. Quebec inventory is predominantly French; the actor sets descriptionLang: "fr" so you can route Quebec records to French NLP pipelines. Filter at extraction time with language: "fr", language: "en", or keep both with language: "both" (default).
What's the difference between Freehold, Condominium, and Strata?
Freehold means you own the land and building outright (typical of detached houses). Condominium is the term used outside BC for shared-ownership multi-unit buildings (you own the unit + a share of common elements). Strata is BC's equivalent term (BC's Strata Property Act). The actor preserves the exact term Realtor.ca uses.
Why is bedroom count in "X + Y" format?
This is a uniquely Canadian convention: above-ground bedrooms + basement bedrooms. A "3 + 1" listing has 3 main-floor bedrooms and 1 basement bedroom (often non-conforming). The actor decodes this into bedroomsAbove, bedroomsBelow, and bedroomsTotal so downstream code can treat them separately if needed.
Are agent emails included?
Yes, when Realtor.ca publishes them. Most agent profile pages display a contact email; the actor extracts what's visible. Some agents redact email and provide only a phone or a contact form — those records will have agentEmail: null.
Can I scrape commercial listings?
Yes. Set propertyTypeGroup: "commercial" and Realtor.ca will return office, retail, industrial, mixed-use, hospitality, and business-for-sale inventory.
How do I scrape only luxury listings?
Use the priceMin filter (e.g. priceMin: 3000000 for $3M+ in Toronto / Vancouver, priceMin: 1500000 for most other metros) combined with neighbourhood-specific searchUrls (Yorkville, Forest Hill, Westmount, West Vancouver, Rosedale).
How do I avoid blocks?
Stick to the defaults: maxConcurrency: 2, requestDelay: 1500, proxyConfiguration set to CA residential. If you start seeing 403/429s, increase the delay to 2500-3000 and lower concurrency to 1.
Can I run multiple parallel jobs?
Yes, but each parallel run draws from the same residential proxy pool. Spreading jobs across geographies (one Toronto, one Vancouver, one Montreal) is safer than running 3 parallel jobs against the same city.
Does this scrape realtor.com (US)?
No — realtor.com is a different site for US inventory. This actor targets realtor.ca (Canada) exclusively. See Apartments.com Scraper and Rent.com Scraper in Related Actors for US coverage.
Can I get historical price data for a listing?
V1 returns the current asking price. Building a historical price archive requires running the actor on a schedule and storing each snapshot — Apify retains dataset history indefinitely on most plans, and a planned v2 will surface priceHistory directly.
What if Realtor.ca changes their API structure?
The actor includes a debugMode flag that dumps API request/response shapes for troubleshooting. Schema breaks are typically patched within hours — open an issue on the Apify Store actor page and the developer will push a fix.
What export formats are supported?
Apify supports JSON, CSV, Excel (XLSX), HTML, XML, RSS, and JSON-Lines streaming — all from the Dataset tab or REST API.
Can I schedule it?
Yes — Apify's built-in Scheduler accepts any cron expression. Common patterns: hourly for active watchlists, every 6 hours for metro snapshots, daily for full provincial sweeps.
How is pay-per-event pricing better than a monthly subscription?
You pay only for the records you actually pull. Stop running and your bill stops. Sample with maxItems: 50 for pennies before committing to a full sweep — see the dedicated pricing section below.
Related Apify Actors by Haketa
If you need real-estate or classified data from other markets, these sibling actors are built on the same engineering foundation:
- Kijiji.ca Scraper (Canada) — Canada's largest classifieds site (cars, rentals, FSBO real estate, jobs)
- Apartments.com Scraper (US) — US apartment rentals
- Rent.com Scraper (US) — US rental marketplace
- Domain.com.au Property Scraper (Australia) — AU real-estate portal
- Immoweb.be Belgium Property Scraper — Belgium real estate
- Zameen.com Pakistan Real Estate Scraper — Pakistan property
- VivaReal Brazil Real Estate Scraper — Brazil for-sale & for-rent
- ZAP Imóveis Brazil Scraper — Brazil sibling portal
- Lamudi Philippines Real Estate Scraper — Philippines property
- Realestate.com.kh Cambodia Scraper — Cambodia real estate
Comparison vs. Alternatives
| Approach | Setup time | Anti-bot bypass | Schema normalization | Bilingual EN/FR | Agent + Office join | Cost (1K listings) |
|---|---|---|---|---|---|---|
| This actor | < 5 minutes | Built-in (CA residential + Akamai-safe) | Built-in (X+Y decode, CAD, taxonomies) | Yes | Yes | Pay-per-event, transparent |
| CREA DDF / VOW data feed | Weeks (board membership required) | N/A | DIY | Yes | Yes (separate feeds) | Board dues + dev cost |
| Custom Playwright script | 1-3 weeks | DIY (Akamai is hard) | DIY | DIY | DIY | Free + infra + ongoing maintenance |
| Manual copy-paste | Hours per run | N/A | None | Manual | None | Free + brutal labour |
| Generic web scraping APIs | Hours | Often blocked | None | No | No | $50-500+/mo |
Why Pay-Per-Event Pricing?
Most data tools either bill a flat monthly subscription (you pay even when you're not running anything) or per Compute Unit (unpredictable). This actor uses pay-per-event pricing, which means:
- You pay only when the actor runs and only for the records it returns
- Costs scale with actual usage — sample 50 records for pennies before committing to a full sweep
- No monthly minimums, no annual contracts, no "seat" fees
- Transparent line-item billing inside the Apify Console
- Free to evaluate — set
maxItems: 20and the run costs effectively nothing
Changelog
| Version | Date | Notes |
|---|---|---|
| 1.0.0 | 2026-05 | Initial public release — 5 modes (search-area / map-bbox / single-listing / agent-profile / office-profile), HTTP + Cheerio engine, CA residential proxy, X+Y bed/bath decode, EN/FR detection, agent + office enrichment, pay-per-event pricing |
Keywords
Realtor.ca scraper · MLS Canada data · Realtor.ca API alternative · Toronto Vancouver MLS scraper · Canadian real estate data · CREA MLS data scraper · Canada home price data · Realtor.ca listings extractor · Realtor.ca data API · Canada MLS scraper · CREA REALTOR data · Canadian property data extraction · Realtor.ca for sale scraper · Realtor.ca for rent scraper · Toronto condo data · Vancouver real estate scraper · Montreal property data · Calgary MLS scraper · Ottawa real estate data · Edmonton property listings · Halifax MLS data · Quebec City real estate data · Winnipeg property scraper · Yorkville condo listings · Liberty Village real estate · Etobicoke MLS data · West End Vancouver rentals · Yaletown condo prices · Kitsilano home prices · Plateau Montreal triplex data · Westmount luxury real estate · Canadian brokerage market share · Royal LePage agent data · RE/MAX office data · Century 21 brokerage scraper · CREA agent profiles · Canadian property tax data · Canadian condo fee data · Canada freehold strata leasehold data · Apify Realtor.ca actor · Canadian PR newcomer housing data · CMHC research data · Canadian REIT acquisition research · Canadian mortgage broker leads · MLS comparable sales data · bilingual EN FR Canadian real estate · Canadian real estate journalism data
Support
- Bug reports: Use the Issues tab on the Apify Store actor page
- Feature requests: Same place — please describe your use case, target geography, and expected output
- Direct contact: Through the Apify developer profile messaging
- Schema breaks: If Realtor.ca changes its API or HTML, open an issue with a
debugMode: truerun log — patches are typically shipped within hours
If this actor saves you time, a 5-star rating on the Apify Store helps other Canadian real-estate, prop-tech, and investor research teams discover it. Thank you!