Canadian solar is booming. Federal and provincial incentive programs open and close, so check the current program status before building a campaign around any single grant or loan. Beyond incentives, demand comes from rising electricity costs and environmental awareness. But installers face a core problem: identifying which homeowners are good candidates and likely to convert.
The targeting problem is real: Traditional lead generation burns budget on homeowners who can't install solar (wrong orientation, shading, rentals) or won't (low bills, planning to move, tight finances).
Property data APIs change the equation. Identify ideal prospects programmatically and focus resources where conversion is likely.
What makes a home ideal for solar?
The best prospects share common characteristics:
Physical suitability
- Roof age: 5-15 years old (not too old to need replacement, not brand new)
- Property type: Single-family homes (not condos or townhouses with shared roofs)
- Roof area: Sufficient unobstructed space for panel installation (Houski returns interior area, lot area, roof material, and roof install year - the direction_facing field gives an estimated facing for the lot but is a weak proxy at best for roof orientation, and pitch, shading, and obstructions still need a site survey or imagery layer)
- Geographic location: Good solar exposure regions
Financial attractiveness
- Home value: Higher-value homes correlate with higher electricity usage
- Homeowner-occupied: Owners make the installation decision. Occupancy is not a Houski field, so screen out rentals with your own customer data or another list source
- Stable ownership: Recent buyers rarely convert. Ownership tenure is also not a Houski field - source it elsewhere or screen against your own records
- Income demographics: Areas with above-average household income
Behavioral indicators
- Construction year: Older homes often have higher energy costs
- Heating, ventilation, and air conditioning (HVAC) system age: Homes with older heating may have higher utility bills
- Property improvements: History of home investment suggests willingness to upgrade
Building your prospect list with property data
Houski's API lets you query properties matching your ideal customer profile. The block below is a live call against the real API. The request code and the JSON response are generated every time this page is rendered, so they always reflect the current schema and current data:
const houski_data = async (): Promise<PropertiesResponse> => {
// You must copy the PropertiesResponse type declarations from the
// Houski API documentation to strongly type the response
const url = new URL('https://api.houski.ca/properties');
url.searchParams.set('api_key', 'YOUR_API_KEY');
url.searchParams.set('city', 'calgary');
url.searchParams.set('country_abbreviation', 'ca');
url.searchParams.set('estimate_sale_price_gte', '400000');
url.searchParams.set('property_type_eq', 'House');
url.searchParams.set('province_abbreviation', 'ab');
url.searchParams.set('results_per_page', '100');
url.searchParams.set('roof_material_install_year_gte', '2005');
url.searchParams.set('roof_material_install_year_lte', '2020');
url.searchParams.set('select', 'address,city,postal_code,property_type,construction_year,roof_material_install_year,interior_sq_m,land_area_sq_m,floor_above_ground,estimate_sale_price,assessment_value,latitude,longitude');
const response = await fetch(url);
const data = await response.json();
return data;
}
(async () => {
let data: PropertiesResponse = await houski_data();
// Log the response
console.log(data);
})();
{
"cache_hit": false,
"cost_cents": 77.0,
"data": [
{
"address": "52 Cedargrove Way SW",
"assessment_value": 662000,
"city": "Calgary",
"construction_year": 1984,
"estimate_sale_price": 614848,
"floor_above_ground": 2,
"interior_sq_m": 136.4734344482422,
"land_area_sq_m": 430.2999877929687,
"latitude": 50.95145034790039,
"longitude": -114.12571716308594,
"postal_code": "T2W4V2",
"property_id": "1000c277cd905d3b",
"property_type": "House",
"roof_material_install_year": 2019
},
{
"address": "7237 California Boulevard NE",
"assessment_value": 671500,
"city": "Calgary",
"construction_year": 1995,
"estimate_sale_price": 671900,
"floor_above_ground": 2,
"interior_sq_m": 200.01858520507812,
"land_area_sq_m": 459.0,
"latitude": 51.07606506347656,
"longitude": -113.92584991455078,
"postal_code": "T1Y6Y8",
"property_id": "1001392d95458fc1",
"property_type": "House",
"roof_material_install_year": 2012
},
{
"address": "6619 34 Street SW",
"assessment_value": 868500,
"city": "Calgary",
"construction_year": 1964,
"estimate_sale_price": 1009562,
"floor_above_ground": 1,
"interior_sq_m": 139.35450744628906,
"land_area_sq_m": 556.7999877929688,
"latitude": 50.99509048461914,
"longitude": -114.13599395751952,
"postal_code": "T3E5M3",
"property_id": "10014f3c7e5bfad9",
"property_type": "House",
"roof_material_install_year": 2016
},
{
"address": "188 Mount Aberdeen Close SE",
"assessment_value": 467500,
"city": "Calgary",
"construction_year": 1999,
"estimate_sale_price": 486121,
"floor_above_ground": 2,
"interior_sq_m": 125.23225402832033,
"land_area_sq_m": 332.5,
"latitude": 50.93125915527344,
"longitude": -113.97802734375,
"postal_code": "T2Z3N2",
"property_id": "1001894d82aeeb0c",
"property_type": "House",
"roof_material_install_year": 2016
},
{
"address": "121 Prestwick Way SE",
"assessment_value": 522500,
"city": "Calgary",
"construction_year": 2001,
"estimate_sale_price": 516560,
"floor_above_ground": 2,
"interior_sq_m": 104.42214965820312,
"land_area_sq_m": 259.8999938964844,
"latitude": 50.92182540893555,
"longitude": -113.96497344970705,
"postal_code": "T2Z3W7",
"property_id": "1001f28c96629974",
"property_type": "House",
"roof_material_install_year": 2018
},
{
"address": "1516 49 Street SE",
"assessment_value": 451000,
"city": "Calgary",
"construction_year": 1959,
"estimate_sale_price": 465441,
"floor_above_ground": 1,
"interior_sq_m": 90.67261505126952,
"land_area_sq_m": 580.2999877929688,
"latitude": 51.04038619995117,
"longitude": -113.9624481201172,
"postal_code": "T2A1S1",
"property_id": "10024c6023d6ca9",
"property_type": "House",
"roof_material_install_year": 2011
},
{
"address": "6728 37 Avenue NE",
"assessment_value": 550000,
"city": "Calgary",
"construction_year": 1981,
"estimate_sale_price": 544699,
"floor_above_ground": 2,
"interior_sq_m": 109.16062927246094,
"land_area_sq_m": 464.2000122070313,
"latitude": 51.08673858642578,
"longitude": -113.93768310546876,
"postal_code": "T1Y5E5",
"property_id": "100283206befdb78",
"property_type": "House",
"roof_material_install_year": 2016
},
{
"address": "1542 52 Street SE",
"assessment_value": 522500,
"city": "Calgary",
"construction_year": 1959,
"estimate_sale_price": 564297,
"floor_above_ground": 1,
"interior_sq_m": 98.01189422607422,
"land_area_sq_m": 557.4000244140625,
"latitude": 51.03938293457031,
"longitude": -113.95793914794922,
"postal_code": "T2A1T8",
"property_id": "1003955fedeb5ef7",
"property_type": "House",
"roof_material_install_year": 2011
},
{
"address": "232 Rundlefield Road NE",
"assessment_value": 517500,
"city": "Calgary",
"construction_year": 1976,
"estimate_sale_price": 553975,
"floor_above_ground": 1,
"interior_sq_m": 102.74990844726562,
"land_area_sq_m": 417.7999877929687,
"latitude": 51.067909240722656,
"longitude": -113.96527862548828,
"postal_code": "T1Y2W1",
"property_id": "1003a8f7e7319598",
"property_type": "House",
"roof_material_install_year": 2011
},
{
"address": "1435 25A Street SW",
"assessment_value": 2400000,
"city": "Calgary",
"construction_year": 2016,
"estimate_sale_price": 3087843,
"floor_above_ground": 2,
"interior_sq_m": 167.8743896484375,
"land_area_sq_m": 580.2000122070312,
"latitude": 51.04007339477539,
"longitude": -114.12265014648438,
"postal_code": "T3C1J8",
"property_id": "1003d96e8e607840",
"property_type": "House",
"roof_material_install_year": 2016
},
{
"address": "52 Tuscany Valley Lane NW",
"assessment_value": 655000,
"city": "Calgary",
"construction_year": 1998,
"estimate_sale_price": 655810,
"floor_above_ground": 2,
"interior_sq_m": 158.44482421875,
"land_area_sq_m": 398.3999938964844,
"latitude": 51.1290283203125,
"longitude": -114.24392700195312,
"postal_code": "T3L2C3",
"property_id": "1003eea453087ea3",
"property_type": "House",
"roof_material_install_year": 2015
},
{
"address": "1309 18 Avenue NW",
"assessment_value": 840000,
"city": "Calgary",
"construction_year": 1985,
"estimate_sale_price": 846246,
"floor_above_ground": 2,
"interior_sq_m": 148.319091796875,
"land_area_sq_m": 445.6000061035156,
"latitude": 51.06850051879883,
"longitude": -114.0904312133789,
"postal_code": "T2M0W5",
"property_id": "10055f7b25bdcfa4",
"property_type": "House",
"roof_material_install_year": 2020
},
{
"address": "2104 53 Avenue SW",
"assessment_value": 1270000,
"city": "Calgary",
"construction_year": 2014,
"estimate_sale_price": 1249876,
"floor_above_ground": 1,
"interior_sq_m": 134.8940887451172,
"land_area_sq_m": 346.0,
"latitude": 51.00617218017578,
"longitude": -114.10953521728516,
"postal_code": "T3E1K8",
"property_id": "100570c4133180e3",
"property_type": "House",
"roof_material_install_year": 2014
},
{
"address": "2404 Pinewood Drive SE",
"assessment_value": 499500,
"city": "Calgary",
"construction_year": 1959,
"estimate_sale_price": 561081,
"floor_above_ground": 1,
"interior_sq_m": 97.2686767578125,
"land_area_sq_m": 510.7000122070313,
"latitude": 51.03239822387695,
"longitude": -113.9835433959961,
"postal_code": "T2B1S4",
"property_id": "100577ee6782c5e1",
"property_type": "House",
"roof_material_install_year": 2011
},
{
"address": "116 Arbour Crest Terrace NW",
"assessment_value": 706500,
"city": "Calgary",
"construction_year": 2000,
"estimate_sale_price": 675526,
"floor_above_ground": 2,
"interior_sq_m": 161.37123107910156,
"land_area_sq_m": 491.2000122070313,
"latitude": 51.14068603515625,
"longitude": -114.20475769042967,
"postal_code": "T3G5A2",
"property_id": "1005a96cff4fded8",
"property_type": "House",
"roof_material_install_year": 2017
},
{
"address": "72 Signature Heights SW",
"assessment_value": 1660000,
"city": "Calgary",
"construction_year": 1993,
"estimate_sale_price": 1784339,
"floor_above_ground": 2,
"interior_sq_m": 243.40394592285156,
"land_area_sq_m": 1013.7999877929688,
"latitude": 51.03351211547851,
"longitude": -114.17767333984376,
"postal_code": "T3H3C1",
"property_id": "1005d39b3c800a14",
"property_type": "House",
"roof_material_install_year": 2010
},
{
"address": "5047 Vanstone Crescent NW",
"assessment_value": 833500,
"city": "Calgary",
"construction_year": 1966,
"estimate_sale_price": 970910,
"floor_above_ground": 2,
"interior_sq_m": 165.27313232421875,
"land_area_sq_m": 668.5999755859375,
"latitude": 51.0986442565918,
"longitude": -114.15877532958984,
"postal_code": "T3A0V8",
"property_id": "1005fe608a515e58",
"property_type": "House",
"roof_material_install_year": 2018
},
{
"address": "6010 Saddlehorn Drive NE",
"assessment_value": 684500,
"city": "Calgary",
"construction_year": 2002,
"estimate_sale_price": 600628,
"floor_above_ground": 2,
"interior_sq_m": 134.47604370117188,
"land_area_sq_m": 364.3999938964844,
"latitude": 51.12968826293945,
"longitude": -113.9481964111328,
"postal_code": "T3J4M4",
"property_id": "100653c322cfca91",
"property_type": "House",
"roof_material_install_year": 2019
},
{
"address": "143 Marbrooke Circle NE",
"assessment_value": 539500,
"city": "Calgary",
"construction_year": 1968,
"estimate_sale_price": 579956,
"floor_above_ground": 1,
"interior_sq_m": 104.050537109375,
"land_area_sq_m": 510.3999938964844,
"latitude": 51.05397415161133,
"longitude": -113.9601821899414,
"postal_code": "T2A2W8",
"property_id": "100655e9b87ae8d1",
"property_type": "House",
"roof_material_install_year": 2020
},
{
"address": "154 Edgevalley Close NW",
"assessment_value": 880000,
"city": "Calgary",
"construction_year": 1993,
"estimate_sale_price": 906891,
"floor_above_ground": 1,
"interior_sq_m": 129.69155883789062,
"land_area_sq_m": 531.2000122070312,
"latitude": 51.13428497314453,
"longitude": -114.13629913330078,
"postal_code": "T3A5E5",
"property_id": "100672c744e12d02",
"property_type": "House",
"roof_material_install_year": 2010
},
{
"address": "37 Country Hills Crescent NW",
"assessment_value": 554500,
"city": "Calgary",
"construction_year": 1999,
"estimate_sale_price": 541521,
"floor_above_ground": 2,
"interior_sq_m": 130.34188842773438,
"land_area_sq_m": 289.0,
"latitude": 51.14777755737305,
"longitude": -114.06837463378906,
"postal_code": "T3K5A8",
"property_id": "1006ea0b26587f1a",
"property_type": "House",
"roof_material_install_year": 2016
},
{
"address": "237 Mount Douglas Circle SE",
"assessment_value": 833000,
"city": "Calgary",
"construction_year": 1998,
"estimate_sale_price": 812006,
"floor_above_ground": 2,
"interior_sq_m": 189.1490173339844,
"land_area_sq_m": 428.8999938964844,
"latitude": 50.92753601074219,
"longitude": -113.98320770263672,
"postal_code": "T2Z3P1",
"property_id": "1006f5cb71b2cb4d",
"property_type": "House",
"roof_material_install_year": 2015
},
{
"address": "87 Castleglen Crescent NE",
"assessment_value": 474500,
"city": "Calgary",
"construction_year": 1980,
"estimate_sale_price": 442336,
"floor_above_ground": 2,
"interior_sq_m": 89.18617248535156,
"land_area_sq_m": 371.2999877929687,
"latitude": 51.10432434082031,
"longitude": -113.95597839355467,
"postal_code": "T3J1N2",
"property_id": "100708598cd66dae",
"property_type": "House",
"roof_material_install_year": 2015
},
{
"address": "595 Woodpark Crescent SW",
"assessment_value": 950500,
"city": "Calgary",
"construction_year": 1976,
"estimate_sale_price": 936719,
"floor_above_ground": 1,
"interior_sq_m": 180.50909423828125,
"land_area_sq_m": 765.7000122070312,
"latitude": 50.94929885864258,
"longitude": -114.10645294189452,
"postal_code": "T2W2S1",
"property_id": "1007cca23b5a0a10",
"property_type": "House",
"roof_material_install_year": 2011
},
{
"address": "137 Berwick Way NW",
"assessment_value": 509500,
"city": "Calgary",
"construction_year": 1978,
"estimate_sale_price": 482262,
"floor_above_ground": 1,
"interior_sq_m": 100.05574035644533,
"land_area_sq_m": 265.6000061035156,
"latitude": 51.12809371948242,
"longitude": -114.0865707397461,
"postal_code": "T3K1B8",
"property_id": "1007d7cf25d6c8dc",
"property_type": "House",
"roof_material_install_year": 2013
},
{
"address": "440 Shannon Square SW",
"assessment_value": 643500,
"city": "Calgary",
"construction_year": 2001,
"estimate_sale_price": 645016,
"floor_above_ground": 2,
"interior_sq_m": 163.69378662109375,
"land_area_sq_m": 397.5,
"latitude": 50.91373062133789,
"longitude": -114.0990753173828,
"postal_code": "T2Y4J9",
"property_id": "100871a31a0e35a9",
"property_type": "House",
"roof_material_install_year": 2018
},
{
"address": "61 Hampstead Gardens NW",
"city": "Calgary",
"construction_year": 1998,
"estimate_sale_price": 718826,
"floor_above_ground": 2,
"interior_sq_m": 186.77999877929688,
"land_area_sq_m": 512.0,
"latitude": 51.1439094543457,
"longitude": -114.12859344482422,
"postal_code": "T3A5Y5",
"property_id": "1009354318409d7d",
"property_type": "House",
"roof_material_install_year": 2015
},
{
"address": "741 Sierra Madre Court SW",
"assessment_value": 876000,
"city": "Calgary",
"construction_year": 1995,
"estimate_sale_price": 861105,
"floor_above_ground": 2,
"interior_sq_m": 184.6897125244141,
"land_area_sq_m": 509.7999877929687,
"latitude": 51.01140975952149,
"longitude": -114.18115234375,
"postal_code": "T3H3J1",
"property_id": "100a0599289fb1f9",
"property_type": "House",
"roof_material_install_year": 2012
},
{
"address": "24 Hoover Place SW",
"assessment_value": 924000,
"city": "Calgary",
"construction_year": 1958,
"estimate_sale_price": 875221,
"floor_above_ground": 1,
"interior_sq_m": 93.45967864990234,
"land_area_sq_m": 487.8999938964844,
"latitude": 50.97467041015625,
"longitude": -114.08592224121094,
"postal_code": "T2V3G4",
"property_id": "100a43bcbefcc557",
"property_type": "House",
"roof_material_install_year": 2010
},
{
"address": "11 Chaparral Valley Garden SE",
"assessment_value": 470500,
"city": "Calgary",
"construction_year": 2009,
"estimate_sale_price": 497503,
"floor_above_ground": 2,
"interior_sq_m": 174.7027130126953,
"land_area_sq_m": 179.39999389648438,
"latitude": 50.87935256958008,
"longitude": -114.01399230957033,
"postal_code": "T2X0N2",
"property_id": "100a49f6a821f222",
"property_type": "House",
"roof_material_install_year": 2009
},
{
"address": "5852 Bow Crescent NW",
"assessment_value": 1250000,
"city": "Calgary",
"construction_year": 1980,
"estimate_sale_price": 1589084,
"floor_above_ground": 1,
"interior_sq_m": 152.638427734375,
"land_area_sq_m": 1339.0,
"latitude": 51.08074188232422,
"longitude": -114.1698760986328,
"postal_code": "T3B2B7",
"property_id": "100af602324e3847",
"property_type": "House",
"roof_material_install_year": 2015
},
{
"address": "108 Cheyenne Crescent NW",
"assessment_value": 669500,
"city": "Calgary",
"construction_year": 1959,
"estimate_sale_price": 801236,
"floor_above_ground": 1,
"interior_sq_m": 135.49795532226562,
"land_area_sq_m": 492.2999877929687,
"latitude": 51.089134216308594,
"longitude": -114.11394500732422,
"postal_code": "T2L0Z2",
"property_id": "100af6cbccc73c57",
"property_type": "House",
"roof_material_install_year": 2011
},
{
"address": "149 Panorama Hills View NW",
"assessment_value": 825000,
"city": "Calgary",
"construction_year": 1999,
"estimate_sale_price": 879451,
"floor_above_ground": 2,
"interior_sq_m": 224.08026123046875,
"land_area_sq_m": 402.0,
"latitude": 51.15174865722656,
"longitude": -114.0885009765625,
"postal_code": "T3K5B8",
"property_id": "100aff0e2b4db155",
"property_type": "House",
"roof_material_install_year": 2016
},
{
"address": "227 Cranford Close SE",
"assessment_value": 578000,
"city": "Calgary",
"construction_year": 2012,
"estimate_sale_price": 549197,
"floor_above_ground": 2,
"interior_sq_m": 135.07989501953125,
"land_area_sq_m": 320.3999938964844,
"latitude": 50.87416076660156,
"longitude": -113.96627044677734,
"postal_code": "T3M1N3",
"property_id": "100b45992e3a9842",
"property_type": "House",
"roof_material_install_year": 2012
},
{
"address": "46 Cranarch View SE",
"assessment_value": 934000,
"city": "Calgary",
"construction_year": 2015,
"estimate_sale_price": 872543,
"floor_above_ground": 2,
"interior_sq_m": 230.2118225097656,
"land_area_sq_m": 722.5,
"latitude": 50.86787414550781,
"longitude": -113.9697494506836,
"postal_code": "T3M2J3",
"property_id": "100b7f2dba017cce",
"property_type": "House",
"roof_material_install_year": 2015
},
{
"address": "148 Whitehaven Road NE",
"assessment_value": 569000,
"city": "Calgary",
"construction_year": 1984,
"estimate_sale_price": 560264,
"floor_above_ground": 2,
"interior_sq_m": 98.6622085571289,
"land_area_sq_m": 396.6000061035156,
"latitude": 51.09450149536133,
"longitude": -113.97657012939452,
"postal_code": "T1Y6C7",
"property_id": "100ba0f09365e282",
"property_type": "House",
"roof_material_install_year": 2019
},
{
"address": "78 Cougar Ridge Crescent SW",
"assessment_value": 879500,
"city": "Calgary",
"construction_year": 2003,
"estimate_sale_price": 858392,
"floor_above_ground": 2,
"interior_sq_m": 169.82534790039062,
"land_area_sq_m": 503.8999938964844,
"latitude": 51.07036209106445,
"longitude": -114.20484924316406,
"postal_code": "T3H5L2",
"property_id": "100ba8a3cececaca",
"property_type": "House",
"roof_material_install_year": 2020
},
{
"address": "422 Mount Sparrowhawk Place SE",
"assessment_value": 999500,
"city": "Calgary",
"construction_year": 1992,
"estimate_sale_price": 1035065,
"floor_above_ground": 2,
"interior_sq_m": 193.42251586914065,
"land_area_sq_m": 637.5999755859375,
"latitude": 50.90806198120117,
"longitude": -113.99209594726562,
"postal_code": "T2Z2G9",
"property_id": "100c0a0fa63769e1",
"property_type": "House",
"roof_material_install_year": 2009
},
{
"address": "124 Masters Link SE",
"assessment_value": 657500,
"city": "Calgary",
"construction_year": 2016,
"estimate_sale_price": 622929,
"floor_above_ground": 2,
"interior_sq_m": 155.0538787841797,
"land_area_sq_m": 255.5,
"latitude": 50.89774703979492,
"longitude": -113.90827178955078,
"postal_code": "T3M2M9",
"property_id": "100ca7285682a9a7",
"property_type": "House",
"roof_material_install_year": 2016
},
{
"address": "1307 41 Street SE",
"assessment_value": 464000,
"city": "Calgary",
"construction_year": 1959,
"estimate_sale_price": 476956,
"floor_above_ground": 1,
"interior_sq_m": 90.67261505126952,
"land_area_sq_m": 566.5,
"latitude": 51.04219436645508,
"longitude": -113.97472381591795,
"postal_code": "T2A1K7",
"property_id": "100cae11312386e3",
"property_type": "House",
"roof_material_install_year": 2011
},
{
"address": "1523 20 Street NW",
"assessment_value": 1320000,
"city": "Calgary",
"construction_year": 2013,
"estimate_sale_price": 1293049,
"floor_above_ground": 1,
"interior_sq_m": 125.23225402832033,
"land_area_sq_m": 603.2999877929688,
"latitude": 51.06601333618164,
"longitude": -114.10822296142578,
"postal_code": "T2N2K9",
"property_id": "100d08db9c75945b",
"property_type": "House",
"roof_material_install_year": 2013
},
{
"address": "63 Hampstead Way NW",
"assessment_value": 935500,
"city": "Calgary",
"construction_year": 2000,
"estimate_sale_price": 900610,
"floor_above_ground": 2,
"interior_sq_m": 231.65179443359375,
"land_area_sq_m": 455.0,
"latitude": 51.1392822265625,
"longitude": -114.14534759521484,
"postal_code": "T3A6E5",
"property_id": "100d0c60e83859a2",
"property_type": "House",
"roof_material_install_year": 2017
},
{
"address": "24 Westmore Place SW",
"assessment_value": 1090000,
"city": "Calgary",
"construction_year": 2014,
"estimate_sale_price": 1036326,
"floor_above_ground": 2,
"interior_sq_m": 204.756591796875,
"land_area_sq_m": 434.8999938964844,
"latitude": 51.0559196472168,
"longitude": -114.2004852294922,
"postal_code": "T3H0Z2",
"property_id": "100d5a823a3ca83e",
"property_type": "House",
"roof_material_install_year": 2014
},
{
"address": "64 Saddlelake Gr NE",
"assessment_value": 825000,
"city": "Calgary",
"construction_year": 2011,
"estimate_sale_price": 726116,
"floor_above_ground": 2,
"interior_sq_m": 146.87847900390625,
"land_area_sq_m": 411.0,
"latitude": 51.12923049926758,
"longitude": -113.93206787109376,
"postal_code": "T3J5N9",
"property_id": "100e2601d4e9c707",
"property_type": "House",
"roof_material_install_year": 2011
},
{
"address": "62 Silverado Skies Crescent SW",
"assessment_value": 800500,
"city": "Calgary",
"construction_year": 2010,
"estimate_sale_price": 778337,
"floor_above_ground": 2,
"interior_sq_m": 208.1939697265625,
"land_area_sq_m": 588.0,
"latitude": 50.88715362548828,
"longitude": -114.08499908447266,
"postal_code": "T2X0J6",
"property_id": "100f76fa441a8b27",
"property_type": "House",
"roof_material_install_year": 2010
},
{
"address": "57 Fenton Road SE",
"assessment_value": 632500,
"city": "Calgary",
"construction_year": 1959,
"estimate_sale_price": 609610,
"floor_above_ground": 1,
"interior_sq_m": 106.79115295410156,
"land_area_sq_m": 556.7999877929688,
"latitude": 50.981388092041016,
"longitude": -114.06163024902344,
"postal_code": "T2H1B8",
"property_id": "100fd1906381c190",
"property_type": "House",
"roof_material_install_year": 2011
},
{
"address": "8 Redstone Court NE",
"assessment_value": 854000,
"city": "Calgary",
"construction_year": 2013,
"estimate_sale_price": 791681,
"floor_above_ground": 2,
"interior_sq_m": 230.90858459472656,
"land_area_sq_m": 523.0,
"latitude": 51.17205429077149,
"longitude": -113.96183776855467,
"postal_code": "T3N0J4",
"property_id": "100fe39feb4e060c",
"property_type": "House",
"roof_material_install_year": 2013
},
{
"address": "11239 Braeside Drive SW",
"assessment_value": 656500,
"city": "Calgary",
"construction_year": 1976,
"estimate_sale_price": 666757,
"floor_above_ground": 1,
"interior_sq_m": 112.22593688964844,
"land_area_sq_m": 580.0,
"latitude": 50.954345703125,
"longitude": -114.1082992553711,
"postal_code": "T2W2V5",
"property_id": "10101432d24d4349",
"property_type": "House",
"roof_material_install_year": 2011
},
{
"address": "3216 Breen Road NW",
"assessment_value": 816500,
"city": "Calgary",
"construction_year": 1964,
"estimate_sale_price": 883078,
"floor_above_ground": 1,
"interior_sq_m": 104.23634338378906,
"land_area_sq_m": 602.5999755859375,
"latitude": 51.095703125,
"longitude": -114.1319580078125,
"postal_code": "T2L1S4",
"property_id": "10106e1d99f8de60",
"property_type": "House",
"roof_material_install_year": 2016
},
{
"address": "210 20 Frobisher Boulevard SE",
"city": "Calgary",
"construction_year": 1959,
"estimate_sale_price": 903271,
"floor_above_ground": 2,
"interior_sq_m": 125.882568359375,
"land_area_sq_m": 557.0999755859375,
"latitude": 50.9798698425293,
"longitude": -114.06725311279295,
"postal_code": "T2H1G5",
"property_id": "1010adac57c9a1ac",
"property_type": "House",
"roof_material_install_year": 2011
},
{
"address": "207 Bridlewood Road SW",
"assessment_value": 605000,
"city": "Calgary",
"construction_year": 1999,
"estimate_sale_price": 606825,
"floor_above_ground": 2,
"interior_sq_m": 151.33779907226562,
"land_area_sq_m": 385.0,
"latitude": 50.90195083618164,
"longitude": -114.10729217529295,
"postal_code": "T2Y3X2",
"property_id": "101178ed3ccdd137",
"property_type": "House",
"roof_material_install_year": 2016
},
{
"address": "434 Cranston Drive SE",
"assessment_value": 712500,
"city": "Calgary",
"construction_year": 2009,
"estimate_sale_price": 672742,
"floor_above_ground": 2,
"interior_sq_m": 158.90933227539062,
"land_area_sq_m": 386.8999938964844,
"latitude": 50.88193130493164,
"longitude": -113.98348999023438,
"postal_code": "T3M0C1",
"property_id": "1011bbe15bf9928f",
"property_type": "House",
"roof_material_install_year": 2009
},
{
"address": "719 Allandale Road SE",
"assessment_value": 643500,
"city": "Calgary",
"construction_year": 1964,
"estimate_sale_price": 637725,
"floor_above_ground": 1,
"interior_sq_m": 99.77703857421876,
"land_area_sq_m": 528.0999755859375,
"latitude": 50.972389221191406,
"longitude": -114.04720306396484,
"postal_code": "T2H1W7",
"property_id": "10122f0ce525c853",
"property_type": "House",
"roof_material_install_year": 2016
},
{
"address": "127 Corner Meadows Villas NE",
"assessment_value": 709500,
"city": "Calgary",
"construction_year": 2019,
"estimate_sale_price": 656279,
"floor_above_ground": 2,
"interior_sq_m": 166.38795471191406,
"land_area_sq_m": 348.3999938964844,
"latitude": 51.15296173095703,
"longitude": -113.93700408935548,
"postal_code": "T3N1J4",
"property_id": "101232136629da25",
"property_type": "House",
"roof_material_install_year": 2019
},
{
"address": "168 Covepark Way NE",
"assessment_value": 564500,
"city": "Calgary",
"construction_year": 2002,
"estimate_sale_price": 544161,
"floor_above_ground": 2,
"interior_sq_m": 122.8167953491211,
"land_area_sq_m": 373.6000061035156,
"latitude": 51.16583633422851,
"longitude": -114.0550765991211,
"postal_code": "T3K5T7",
"property_id": "10125cbfb151a726",
"property_type": "House",
"roof_material_install_year": 2019
},
{
"address": "255 Mountain Park Drive SE",
"assessment_value": 795500,
"city": "Calgary",
"construction_year": 1993,
"estimate_sale_price": 806038,
"floor_above_ground": 2,
"interior_sq_m": 190.6354522705078,
"land_area_sq_m": 544.9000244140625,
"latitude": 50.90625762939453,
"longitude": -113.99675750732422,
"postal_code": "T2Z2L2",
"property_id": "10128aa5d7e1086c",
"property_type": "House",
"roof_material_install_year": 2010
},
{
"address": "91 Evanscrest Terrace NW",
"assessment_value": 626500,
"city": "Calgary",
"construction_year": 2016,
"estimate_sale_price": 582803,
"floor_above_ground": 2,
"interior_sq_m": 157.0048370361328,
"land_area_sq_m": 307.29998779296875,
"latitude": 51.180171966552734,
"longitude": -114.10345458984376,
"postal_code": "T3P0R6",
"property_id": "101342654be530d4",
"property_type": "House",
"roof_material_install_year": 2016
},
{
"address": "409 25 Glengrove Close SW",
"city": "Calgary",
"construction_year": 1980,
"estimate_sale_price": 568033,
"floor_above_ground": 2,
"interior_sq_m": 125.882568359375,
"land_area_sq_m": 281.3999938964844,
"latitude": 51.02406692504883,
"longitude": -114.1624984741211,
"postal_code": "T3E6T1",
"property_id": "1013805e8de58078",
"property_type": "House",
"roof_material_install_year": 2015
},
{
"address": "123 Haverhill Road SW",
"assessment_value": 710500,
"city": "Calgary",
"construction_year": 1959,
"estimate_sale_price": 713200,
"floor_above_ground": 1,
"interior_sq_m": 106.09439086914062,
"land_area_sq_m": 464.5,
"latitude": 50.9758415222168,
"longitude": -114.084716796875,
"postal_code": "T2V3E4",
"property_id": "1013d710d1e58e07",
"property_type": "House",
"roof_material_install_year": 2011
},
{
"address": "157 Cougar Ridge Close SW",
"assessment_value": 944000,
"city": "Calgary",
"construction_year": 2013,
"estimate_sale_price": 907821,
"floor_above_ground": 2,
"interior_sq_m": 194.81605529785156,
"land_area_sq_m": 451.2999877929687,
"latitude": 51.07575607299805,
"longitude": -114.22036743164062,
"postal_code": "T3H0V4",
"property_id": "1013f1896836eb1d",
"property_type": "House",
"roof_material_install_year": 2013
},
{
"address": "168 Brabourne Road SW",
"assessment_value": 708500,
"city": "Calgary",
"construction_year": 1977,
"estimate_sale_price": 676245,
"floor_above_ground": 1,
"interior_sq_m": 112.27238464355467,
"land_area_sq_m": 618.5,
"latitude": 50.95561218261719,
"longitude": -114.11293029785156,
"postal_code": "T2W2W3",
"property_id": "1014ae78ac6cb4be",
"property_type": "House",
"roof_material_install_year": 2012
},
{
"address": "120 Deermoss Crescent SE",
"assessment_value": 659000,
"city": "Calgary",
"construction_year": 1981,
"estimate_sale_price": 655304,
"floor_above_ground": 2,
"interior_sq_m": 181.34523010253903,
"land_area_sq_m": 454.2000122070313,
"latitude": 50.92893600463867,
"longitude": -114.00980377197266,
"postal_code": "T2J6P4",
"property_id": "1014b003e8bfaacb",
"property_type": "House",
"roof_material_install_year": 2016
},
{
"address": "303 Maitland Hill NE",
"assessment_value": 516000,
"city": "Calgary",
"construction_year": 1976,
"estimate_sale_price": 569046,
"floor_above_ground": 1,
"interior_sq_m": 90.3010025024414,
"land_area_sq_m": 499.8999938964844,
"latitude": 51.06134414672851,
"longitude": -113.9395751953125,
"postal_code": "T2A5V4",
"property_id": "10155bfae1e3cb73",
"property_type": "House",
"roof_material_install_year": 2011
},
{
"address": "197 River Rock Place SE",
"assessment_value": 678500,
"city": "Calgary",
"construction_year": 1998,
"estimate_sale_price": 668719,
"floor_above_ground": 2,
"interior_sq_m": 166.6666717529297,
"land_area_sq_m": 340.20001220703125,
"latitude": 50.96598815917969,
"longitude": -114.00524139404295,
"postal_code": "T2C4P5",
"property_id": "1016148ae2680e16",
"property_type": "House",
"roof_material_install_year": 2015
},
{
"address": "229 Evansdale Way NW",
"assessment_value": 583000,
"city": "Calgary",
"construction_year": 2009,
"estimate_sale_price": 552958,
"floor_above_ground": 2,
"interior_sq_m": 147.76104736328125,
"land_area_sq_m": 292.6000061035156,
"latitude": 51.1724739074707,
"longitude": -114.1055908203125,
"postal_code": "T3P0C3",
"property_id": "1016419a8159eb02",
"property_type": "House",
"roof_material_install_year": 2009
},
{
"address": "310 Erin Circle SE",
"assessment_value": 492000,
"city": "Calgary",
"construction_year": 1997,
"estimate_sale_price": 484900,
"floor_above_ground": 2,
"interior_sq_m": 116.1278305053711,
"land_area_sq_m": 302.0,
"latitude": 51.017799377441406,
"longitude": -113.96216583251952,
"postal_code": "T2B3J1",
"property_id": "1016566930e97945",
"property_type": "House",
"roof_material_install_year": 2014
},
{
"address": "60 Citadel Pass Crescent NW",
"assessment_value": 613500,
"city": "Calgary",
"construction_year": 1992,
"estimate_sale_price": 603379,
"floor_above_ground": 2,
"interior_sq_m": 116.22073364257812,
"land_area_sq_m": 449.7999877929687,
"latitude": 51.14030456542969,
"longitude": -114.17930603027344,
"postal_code": "T3G3V2",
"property_id": "1016981fe984612a",
"property_type": "House",
"roof_material_install_year": 2009
},
{
"address": "2024 38 Street SE",
"assessment_value": 460000,
"city": "Calgary",
"construction_year": 1959,
"estimate_sale_price": 497069,
"floor_above_ground": 1,
"interior_sq_m": 90.67261505126952,
"land_area_sq_m": 585.2000122070312,
"latitude": 51.03544235229492,
"longitude": -113.97827911376952,
"postal_code": "T2B0Z6",
"property_id": "1016ab72b4873b4c",
"property_type": "House",
"roof_material_install_year": 2011
},
{
"address": "230 Creekstone Way SW",
"assessment_value": 739000,
"city": "Calgary",
"construction_year": 2020,
"estimate_sale_price": 672673,
"floor_above_ground": 2,
"interior_sq_m": 186.8264617919922,
"land_area_sq_m": 322.5,
"latitude": 50.86231994628906,
"longitude": -114.0576629638672,
"postal_code": "T2X4P9",
"property_id": "1016f37e4ae306dd",
"property_type": "House",
"roof_material_install_year": 2020
},
{
"address": "144 Copperpond Parade SE",
"city": "Calgary",
"construction_year": 2015,
"estimate_sale_price": 579656,
"floor_above_ground": 2,
"interior_sq_m": 155.14678955078125,
"land_area_sq_m": 512.0,
"latitude": 50.91946792602539,
"longitude": -113.92089080810548,
"postal_code": "T2Z5A9",
"property_id": "10170aedfe9722d2",
"property_type": "House",
"roof_material_install_year": 2019
},
{
"address": "648 Deerpath Court SE",
"assessment_value": 590000,
"city": "Calgary",
"construction_year": 1983,
"estimate_sale_price": 557291,
"floor_above_ground": 2,
"interior_sq_m": 101.54217529296876,
"land_area_sq_m": 646.9000244140625,
"latitude": 50.92369842529297,
"longitude": -114.0224838256836,
"postal_code": "T2J6C4",
"property_id": "10178406e5b23612",
"property_type": "House",
"roof_material_install_year": 2018
},
{
"address": "73 Everwillow Boulevard SW",
"assessment_value": 666500,
"city": "Calgary",
"construction_year": 2002,
"estimate_sale_price": 688968,
"floor_above_ground": 2,
"interior_sq_m": 189.56707763671875,
"land_area_sq_m": 378.0,
"latitude": 50.91374969482422,
"longitude": -114.10383605957033,
"postal_code": "T2Y4G4",
"property_id": "10178856462f78b0",
"property_type": "House",
"roof_material_install_year": 2019
},
{
"address": "631 Saddlecreek Way NE",
"assessment_value": 647500,
"city": "Calgary",
"construction_year": 2000,
"estimate_sale_price": 620393,
"floor_above_ground": 2,
"interior_sq_m": 155.61129760742188,
"land_area_sq_m": 465.2000122070313,
"latitude": 51.12553787231445,
"longitude": -113.95535278320312,
"postal_code": "T3J4A3",
"property_id": "1017c370e4e867f0",
"property_type": "House",
"roof_material_install_year": 2017
},
{
"address": "39 Ranch Estates Road NW",
"assessment_value": 768000,
"city": "Calgary",
"construction_year": 1981,
"estimate_sale_price": 721469,
"floor_above_ground": 2,
"interior_sq_m": 193.3760681152344,
"land_area_sq_m": 582.7000122070312,
"latitude": 51.12187576293945,
"longitude": -114.17758178710938,
"postal_code": "T3G1L4",
"property_id": "101892438e16169a",
"property_type": "House",
"roof_material_install_year": 2016
},
{
"address": "85 Saddlehorn Crescent NE",
"assessment_value": 666500,
"city": "Calgary",
"construction_year": 2000,
"estimate_sale_price": 602433,
"floor_above_ground": 2,
"interior_sq_m": 149.9442596435547,
"land_area_sq_m": 449.3999938964844,
"latitude": 51.130828857421875,
"longitude": -113.95126342773438,
"postal_code": "T3J4M3",
"property_id": "1018a3981d5b661b",
"property_type": "House",
"roof_material_install_year": 2017
},
{
"address": "4923 Marlborough Drive NE",
"assessment_value": 632000,
"city": "Calgary",
"construction_year": 1968,
"estimate_sale_price": 673229,
"floor_above_ground": 1,
"interior_sq_m": 94.76031494140624,
"land_area_sq_m": 536.0,
"latitude": 51.05916976928711,
"longitude": -113.96495819091795,
"postal_code": "T2A2Z4",
"property_id": "1018bc63038eb51f",
"property_type": "House",
"roof_material_install_year": 2020
},
{
"address": "269 Auburn Crest Way SE",
"assessment_value": 671000,
"city": "Calgary",
"construction_year": 2013,
"estimate_sale_price": 652918,
"floor_above_ground": 2,
"interior_sq_m": 150.0371551513672,
"land_area_sq_m": 264.29998779296875,
"latitude": 50.88865661621094,
"longitude": -113.94407653808594,
"postal_code": "T3M1T2",
"property_id": "1018f3c707d466dd",
"property_type": "House",
"roof_material_install_year": 2013
},
{
"address": "1029 9 Street SE",
"assessment_value": 761500,
"city": "Calgary",
"construction_year": 1912,
"estimate_sale_price": 841139,
"floor_above_ground": 1,
"interior_sq_m": 97.08287048339844,
"land_area_sq_m": 458.7999877929687,
"latitude": 51.04081726074219,
"longitude": -114.04066467285156,
"postal_code": "T2G3B1",
"property_id": "1019312373ac7853",
"property_type": "House",
"roof_material_install_year": 2017
},
{
"address": "20 Royal Highland Court NW",
"assessment_value": 786000,
"city": "Calgary",
"construction_year": 2001,
"estimate_sale_price": 759974,
"floor_above_ground": 2,
"interior_sq_m": 166.48159790039062,
"land_area_sq_m": 682.7000122070312,
"latitude": 51.14461898803711,
"longitude": -114.23371887207033,
"postal_code": "T3G4Y2",
"property_id": "101978dfd81ba829",
"property_type": "House",
"roof_material_install_year": 2018
},
{
"address": "138 Silverado Plains Circle SW",
"assessment_value": 656500,
"city": "Calgary",
"construction_year": 2009,
"estimate_sale_price": 626249,
"floor_above_ground": 2,
"interior_sq_m": 141.30435180664062,
"land_area_sq_m": 312.1000061035156,
"latitude": 50.88087463378906,
"longitude": -114.08111572265624,
"postal_code": "T2X0G5",
"property_id": "101a22ee837c35",
"property_type": "House",
"roof_material_install_year": 2009
},
{
"address": "832 Fortalice Crescent SE",
"assessment_value": 579000,
"city": "Calgary",
"construction_year": 1964,
"estimate_sale_price": 642654,
"floor_above_ground": 1,
"interior_sq_m": 96.89706420898438,
"land_area_sq_m": 510.8999938964844,
"latitude": 51.045841217041016,
"longitude": -113.96314239501952,
"postal_code": "T2A2E3",
"property_id": "101a311c73601e6a",
"property_type": "House",
"roof_material_install_year": 2016
},
{
"address": "25 Edgeburn Crescent NW",
"assessment_value": 564000,
"city": "Calgary",
"construction_year": 1983,
"estimate_sale_price": 556808,
"floor_above_ground": 2,
"interior_sq_m": 98.3834991455078,
"land_area_sq_m": 313.29998779296875,
"latitude": 51.13395309448242,
"longitude": -114.16001892089844,
"postal_code": "T3A4J2",
"property_id": "101abc1d35954403",
"property_type": "House",
"roof_material_install_year": 2018
},
{
"address": "11 Woodmont Way SW",
"assessment_value": 823000,
"city": "Calgary",
"construction_year": 1980,
"estimate_sale_price": 812427,
"floor_above_ground": 2,
"interior_sq_m": 158.6770782470703,
"land_area_sq_m": 457.2999877929687,
"latitude": 50.94211196899414,
"longitude": -114.12715911865234,
"postal_code": "T2W4L7",
"property_id": "101afd386f640c9e",
"property_type": "House",
"roof_material_install_year": 2015
},
{
"address": "4111 162 Avenue SW",
"assessment_value": 4150000,
"city": "Calgary",
"construction_year": 2000,
"estimate_sale_price": 2924713,
"floor_above_ground": 2,
"interior_sq_m": 839.0003662109375,
"land_area_sq_m": 76678.6015625,
"latitude": 50.90484619140625,
"longitude": -114.14474487304688,
"postal_code": "T2Y0N7",
"property_id": "101b20104904ee27",
"property_type": "House",
"roof_material_install_year": 2017
},
{
"address": "1437 38 Street SW",
"assessment_value": 683500,
"city": "Calgary",
"construction_year": 1962,
"estimate_sale_price": 715037,
"floor_above_ground": 2,
"interior_sq_m": 101.17057037353516,
"land_area_sq_m": 579.9000244140625,
"latitude": 51.040069580078125,
"longitude": -114.14303588867188,
"postal_code": "T3C1T6",
"property_id": "101b492daec4544",
"property_type": "House",
"roof_material_install_year": 2014
},
{
"address": "23 Bernard Court NW",
"assessment_value": 680500,
"city": "Calgary",
"construction_year": 1981,
"estimate_sale_price": 660032,
"floor_above_ground": 2,
"interior_sq_m": 159.79190063476562,
"land_area_sq_m": 472.0,
"latitude": 51.13442611694336,
"longitude": -114.07946014404295,
"postal_code": "T3K2B3",
"property_id": "101b51f16427a958",
"property_type": "House",
"roof_material_install_year": 2016
},
{
"address": "148 Pinemill Mews NE",
"assessment_value": 515500,
"city": "Calgary",
"construction_year": 1979,
"estimate_sale_price": 527581,
"floor_above_ground": 2,
"interior_sq_m": 120.02973175048828,
"land_area_sq_m": 361.5,
"latitude": 51.07366561889648,
"longitude": -113.95098876953124,
"postal_code": "T1Y4R6",
"property_id": "101bf9e336928eac",
"property_type": "House",
"roof_material_install_year": 2014
},
{
"address": "118 Tuscany Ravine Close NW",
"assessment_value": 876000,
"city": "Calgary",
"construction_year": 2003,
"estimate_sale_price": 889724,
"floor_above_ground": 2,
"interior_sq_m": 190.5425567626953,
"land_area_sq_m": 450.7999877929687,
"latitude": 51.109642028808594,
"longitude": -114.2389907836914,
"postal_code": "T3L2Y5",
"property_id": "101c9c533be3310a",
"property_type": "House",
"roof_material_install_year": 2020
},
{
"address": "419 Astoria Crescent SE",
"assessment_value": 631000,
"city": "Calgary",
"construction_year": 1961,
"estimate_sale_price": 595125,
"floor_above_ground": 1,
"interior_sq_m": 99.3125228881836,
"land_area_sq_m": 464.7999877929687,
"latitude": 50.96504592895508,
"longitude": -114.05760192871094,
"postal_code": "T2J0Y4",
"property_id": "101cf61a3124004",
"property_type": "House",
"roof_material_install_year": 2013
},
{
"address": "58 Tuscany Springs Place NW",
"assessment_value": 570000,
"city": "Calgary",
"construction_year": 2002,
"estimate_sale_price": 558302,
"floor_above_ground": 2,
"interior_sq_m": 123.74581909179688,
"land_area_sq_m": 285.3999938964844,
"latitude": 51.13558197021485,
"longitude": -114.24026489257812,
"postal_code": "T3L2V1",
"property_id": "101e9d59f6677846",
"property_type": "House",
"roof_material_install_year": 2019
},
{
"address": "38 Arbour Vista Terrace NW",
"assessment_value": 1630000,
"city": "Calgary",
"construction_year": 2000,
"estimate_sale_price": 1966162,
"floor_above_ground": 2,
"interior_sq_m": 147.714599609375,
"land_area_sq_m": 608.4000244140625,
"latitude": 51.13543319702149,
"longitude": -114.19920349121094,
"postal_code": "T3G4N9",
"property_id": "101ee283c1d8c20f",
"property_type": "House",
"roof_material_install_year": 2017
},
{
"address": "224 Queensland Road SE",
"assessment_value": 595500,
"city": "Calgary",
"construction_year": 1974,
"estimate_sale_price": 578854,
"floor_above_ground": 1,
"interior_sq_m": 118.91490173339844,
"land_area_sq_m": 624.7000122070312,
"latitude": 50.93392562866211,
"longitude": -114.02605438232422,
"postal_code": "T2J3S3",
"property_id": "101f03d9f639d8da",
"property_type": "House",
"roof_material_install_year": 2009
},
{
"address": "178 Aspen Summit Circle SW",
"assessment_value": 1870000,
"city": "Calgary",
"construction_year": 2019,
"estimate_sale_price": 2075958,
"floor_above_ground": 2,
"interior_sq_m": 297.1014404296875,
"land_area_sq_m": 586.0999755859375,
"latitude": 51.04771423339844,
"longitude": -114.20361328125,
"postal_code": "T3H0Z6",
"property_id": "101f5afc31e62bf6",
"property_type": "House",
"roof_material_install_year": 2019
},
{
"address": "638 Lake Simcoe Close SE",
"assessment_value": 1370000,
"city": "Calgary",
"construction_year": 1977,
"estimate_sale_price": 1452017,
"floor_above_ground": 2,
"interior_sq_m": 195.0018615722656,
"land_area_sq_m": 1187.300048828125,
"latitude": 50.93138122558594,
"longitude": -114.06234741210938,
"postal_code": "T2J5H6",
"property_id": "101f5dfb752a318b",
"property_type": "House",
"roof_material_install_year": 2012
},
{
"address": "86 Saddlecrest Close NE",
"assessment_value": 690000,
"city": "Calgary",
"construction_year": 2003,
"estimate_sale_price": 662980,
"floor_above_ground": 2,
"interior_sq_m": 162.30026245117188,
"land_area_sq_m": 463.1000061035156,
"latitude": 51.13396835327149,
"longitude": -113.94496154785156,
"postal_code": "T3J5B6",
"property_id": "101f62b4e9e9dce9",
"property_type": "House",
"roof_material_install_year": 2020
},
{
"address": "259 Panamount Hill NW",
"assessment_value": 670000,
"city": "Calgary",
"construction_year": 2001,
"estimate_sale_price": 670505,
"floor_above_ground": 2,
"interior_sq_m": 164.80862426757812,
"land_area_sq_m": 417.0,
"latitude": 51.15541076660156,
"longitude": -114.0745620727539,
"postal_code": "T3K5M3",
"property_id": "101f69f2326514b0",
"property_type": "House",
"roof_material_install_year": 2018
},
{
"address": "1984 Cottonwood Crescent SE",
"assessment_value": 545000,
"city": "Calgary",
"construction_year": 1962,
"estimate_sale_price": 570729,
"floor_above_ground": 1,
"interior_sq_m": 97.2686767578125,
"land_area_sq_m": 464.3999938964844,
"latitude": 51.035526275634766,
"longitude": -113.985107421875,
"postal_code": "T2B1P7",
"property_id": "10204e5743f7dbf5",
"property_type": "House",
"roof_material_install_year": 2014
},
{
"address": "2536 2 Avenue NW",
"assessment_value": 660000,
"city": "Calgary",
"construction_year": 1997,
"estimate_sale_price": 806937,
"floor_above_ground": 2,
"interior_sq_m": 159.37384033203125,
"land_area_sq_m": 288.0,
"latitude": 51.054481506347656,
"longitude": -114.1199188232422,
"postal_code": "T2N0H6",
"property_id": "1020d1a7b4a6c702",
"property_type": "House",
"roof_material_install_year": 2014
},
{
"address": "25 Capri Avenue NW",
"assessment_value": 734500,
"city": "Calgary",
"construction_year": 1958,
"estimate_sale_price": 758159,
"floor_above_ground": 1,
"interior_sq_m": 105.81568145751952,
"land_area_sq_m": 557.2000122070312,
"latitude": 51.08856201171875,
"longitude": -114.10294342041016,
"postal_code": "T2L0G9",
"property_id": "1021c758111aa87d",
"property_type": "House",
"roof_material_install_year": 2010
},
{
"address": "108 Citadel Close NW",
"assessment_value": 611500,
"city": "Calgary",
"construction_year": 1994,
"estimate_sale_price": 580912,
"floor_above_ground": 2,
"interior_sq_m": 166.1092529296875,
"land_area_sq_m": 405.7000122070313,
"latitude": 51.14202499389648,
"longitude": -114.16802215576172,
"postal_code": "T3G4A6",
"property_id": "1021f673c9a739bb",
"property_type": "House",
"roof_material_install_year": 2011
}
],
"error": "",
"pagination": {
"current_page": 1,
"has_next_page": true,
"has_previous_page": false,
"page_total": 2087
},
"price_quote": false,
"result_total": 208616,
"time_ms": 90,
"ui_info": {
"city": "Calgary",
"city_id": "6ec95b53075d062c",
"city_link": "ca/ab/calgary",
"city_slug": "calgary",
"country": "Canada",
"country_abbreviation": "CA",
"country_abbreviation_id": "9ace2b6431b7f1be",
"country_abbreviation_link": "ca",
"country_slug": "canada",
"province": "Alberta",
"province_abbreviation": "AB",
"province_abbreviation_id": "aae1f05a0f89d2c7",
"province_abbreviation_link": "ca/ab",
"province_slug": "alberta"
}
}
From there a scoring pass on the returned rows (roof age, home value, interior area) ranks each property for solar suitability.
For all available property fields and filters, see our Properties API docs and Fields reference.
Targeting strategies for solar companies
Strategy 1: Geographic expansion
Entering a new market? Pull every qualifying house in the city with just community and postal code, then group client-side to find the highest-density prospect areas:
const houski_data = async (): Promise<PropertiesResponse> => {
// You must copy the PropertiesResponse type declarations from the
// Houski API documentation to strongly type the response
const url = new URL('https://api.houski.ca/properties');
url.searchParams.set('api_key', 'YOUR_API_KEY');
url.searchParams.set('city', 'calgary');
url.searchParams.set('country_abbreviation', 'ca');
url.searchParams.set('estimate_sale_price_gte', '400000');
url.searchParams.set('property_type_eq', 'House');
url.searchParams.set('province_abbreviation', 'ab');
url.searchParams.set('results_per_page', '1000');
url.searchParams.set('select', 'community,postal_code');
const response = await fetch(url);
const data = await response.json();
return data;
}
(async () => {
let data: PropertiesResponse = await houski_data();
// Log the response
console.log(data);
})();
{
"cache_hit": false,
"cost_cents": 40.0,
"data": [
{
"address": "6 1744 7 Street SW",
"community": "Beltline",
"postal_code": "T2T2W6",
"property_id": "10004f7afe0c1946"
},
{
"address": "384 Copperpond Landng SE",
"community": "Beltline",
"postal_code": "T2Z1G6",
"property_id": "10007f9761f49940"
},
{
"address": "239 Dalhurst Way NW",
"community": "Dalhousie",
"postal_code": "T3A1P3",
"property_id": "100086f6bc064d3f"
},
{
"address": "52 Cedargrove Way SW",
"community": "Cedarbrae",
"postal_code": "T2W4V2",
"property_id": "1000c277cd905d3b"
},
{
"address": "28 Sundown Gr SE",
"community": "Sundance",
"postal_code": "T2X3G3",
"property_id": "1001109ab2aebbc0"
},
{
"address": "117 Sandpiper Place NW",
"community": "Sandstone Valley",
"postal_code": "T3K3T9",
"property_id": "1001217184d8717b"
},
{
"address": "7237 California Boulevard NE",
"community": "Monterey Park",
"postal_code": "T1Y6Y8",
"property_id": "1001392d95458fc1"
},
{
"address": "C304 4501 37 Street NW",
"community": "Beltline",
"postal_code": "T2L2J5",
"property_id": "10013b5e28e0c630"
},
{
"address": "6619 34 Street SW",
"community": "Lakeview",
"postal_code": "T3E5M3",
"property_id": "10014f3c7e5bfad9"
},
{
"address": "188 Mount Aberdeen Close SE",
"community": "McKenzie Lake",
"postal_code": "T2Z3N2",
"property_id": "1001894d82aeeb0c"
},
{
"address": "196 Covemeadow Road NE",
"community": "Coventry Hills",
"postal_code": "T3K6E7",
"property_id": "1001a75df7bd5267"
},
{
"address": "121 Prestwick Way SE",
"community": "McKenzie Towne",
"postal_code": "T2Z3W7",
"property_id": "1001f28c96629974"
},
{
"address": "1011 Olympia Crescent SE",
"community": "Ogden",
"postal_code": "T2C1G6",
"property_id": "1001ffcbf6c0248c"
},
{
"address": "432 27 Avenue NW",
"community": "Mount Pleasant",
"postal_code": "T2M2H6",
"property_id": "10021e44aa219b00"
},
{
"address": "168 Coventry Hills Drive NE",
"community": "Coventry Hills",
"postal_code": "T3K6H4",
"property_id": "1002285fe3ee9c49"
},
{
"address": "1516 49 Street SE",
"community": "Forest Lawn",
"postal_code": "T2A1S1",
"property_id": "10024c6023d6ca9"
},
{
"address": "2128 Crestwood Road SE",
"community": "Ogden",
"postal_code": "T2C0C6",
"property_id": "1002822e7b274674"
},
{
"address": "6728 37 Avenue NE",
"community": "Temple",
"postal_code": "T1Y5E5",
"property_id": "100283206befdb78"
},
{
"address": "1005 815 14 Avenue SW",
"community": "Beltline",
"postal_code": "T2R0N5",
"property_id": "1002e3ad9cd64ae2"
},
{
"address": "6535 54 Street NW",
"community": "Dalhousie",
"postal_code": "T3A1R5",
"property_id": "10030424b41ab29b"
},
{
"address": "145 Valley Woods Place NW",
"community": "Valley Ridge",
"postal_code": "T3B6A1",
"property_id": "10034432c778cb03"
},
{
"address": "205 6704 6 Street SW",
"community": "Beltline",
"postal_code": "T2V4X2",
"property_id": "100362b238afdae6"
},
{
"address": "1542 52 Street SE",
"community": "Penbrooke Meadows",
"postal_code": "T2A1T8",
"property_id": "1003955fedeb5ef7"
},
{
"address": "232 Rundlefield Road NE",
"community": "Rundle",
"postal_code": "T1Y2W1",
"property_id": "1003a8f7e7319598"
},
{
"address": "125 Riverview Court SE",
"community": "Riverbend",
"postal_code": "T2C3V7",
"property_id": "1003b80b5086a07"
},
{
"address": "1435 25A Street SW",
"community": "Shaganappi",
"postal_code": "T3C1J8",
"property_id": "1003d96e8e607840"
},
{
"address": "52 Tuscany Valley Lane NW",
"community": "Tuscany",
"postal_code": "T3L2C3",
"property_id": "1003eea453087ea3"
},
{
"address": "110 Royal Birch Gardens NW",
"community": "Beltline",
"postal_code": "T3G5H9",
"property_id": "1003fe4194f1fe08"
},
{
"address": "81 Scandia Hill NW",
"community": "Scenic Acres",
"postal_code": "T3L1T9",
"property_id": "10043508321f54ba"
},
{
"address": "61 Rivergreen Crescent SE",
"community": "Riverbend",
"postal_code": "T2C3V5",
"property_id": "1004738a9262a70d"
},
{
"address": "247 Chapalina Terrace SE",
"community": "Chaparral",
"postal_code": "T2X3Y5",
"property_id": "1004a292757c448e"
},
{
"address": "335 Millrise Drive Southwest",
"community": "Beltline",
"postal_code": "T3M3H1",
"property_id": "100523ae7fef83ad"
},
{
"address": "47 Elgin Terrace SE",
"community": "McKenzie Towne",
"postal_code": "T2Z0H6",
"property_id": "10053e86b05542f8"
},
{
"address": "2018 608 9 Street SW",
"community": "Beltline",
"postal_code": "T2P2B3",
"property_id": "100556b0922cfec"
},
{
"address": "1309 18 Avenue NW",
"community": "Capitol Hill",
"postal_code": "T2M0W5",
"property_id": "10055f7b25bdcfa4"
},
{
"address": "2104 53 Avenue SW",
"community": "North Glenmore Park",
"postal_code": "T3E1K8",
"property_id": "100570c4133180e3"
},
{
"address": "2404 Pinewood Drive SE",
"community": "Southview",
"postal_code": "T2B1S4",
"property_id": "100577ee6782c5e1"
},
{
"address": "116 Arbour Crest Terrace NW",
"community": "Arbour Lake",
"postal_code": "T3G5A2",
"property_id": "1005a96cff4fded8"
},
{
"address": "72 Signature Heights SW",
"community": "Signal Hill",
"postal_code": "T3H3C1",
"property_id": "1005d39b3c800a14"
},
{
"address": "3309 38 Street SW",
"community": "Beltline",
"postal_code": "T3E3G6",
"property_id": "1005f2397f918b79"
},
{
"address": "5047 Vanstone Crescent NW",
"community": "Varsity",
"postal_code": "T3A0V8",
"property_id": "1005fe608a515e58"
},
{
"address": "4 4460 75 Avenue SE",
"community": "Beltline",
"postal_code": "T2C2H8",
"property_id": "100649bee655672a"
},
{
"address": "6010 Saddlehorn Drive NE",
"community": "Saddle Ridge",
"postal_code": "T3J4M4",
"property_id": "100653c322cfca91"
},
{
"address": "143 Marbrooke Circle NE",
"community": "Marlborough",
"postal_code": "T2A2W8",
"property_id": "100655e9b87ae8d1"
},
{
"address": "241 Tuscany Reserve Rise NW",
"community": "Tuscany",
"postal_code": "T3L0A4",
"property_id": "1006595dbb3b58b6"
},
{
"address": "190 Evansford Circle NW",
"community": "Evanston",
"postal_code": "T3P0A9",
"property_id": "100672c51cf98d0d"
},
{
"address": "154 Edgevalley Close NW",
"community": "Edgemont",
"postal_code": "T3A5E5",
"property_id": "100672c744e12d02"
},
{
"address": "246 Covemeadow Bay NE",
"community": "Coventry Hills",
"postal_code": "T3K6E8",
"property_id": "1006910ea1e8de7d"
},
{
"address": "305 Santana Bay NW",
"community": "Sandstone Valley",
"postal_code": "T3K3N5",
"property_id": "10069cf80362f9d6"
},
{
"address": "378 Hotchkiss Manor SE",
"community": "Hotchkiss",
"postal_code": "T2S0J9",
"property_id": "1006b75d27f315d7"
},
{
"address": "37 Country Hills Crescent NW",
"community": "Country Hills",
"postal_code": "T3K5A8",
"property_id": "1006ea0b26587f1a"
},
{
"address": "237 Mount Douglas Circle SE",
"community": "McKenzie Lake",
"postal_code": "T2Z3P1",
"property_id": "1006f5cb71b2cb4d"
},
{
"address": "87 Castleglen Crescent NE",
"community": "Castleridge",
"postal_code": "T3J1N2",
"property_id": "100708598cd66dae"
},
{
"address": "4 2770 32 Avenue NE",
"community": "Beltline",
"postal_code": "T1Y5S5",
"property_id": "1007440946afa14b"
},
{
"address": "171 Legacy Glen Prairie SE",
"community": "Legacy",
"postal_code": "T2X2B9",
"property_id": "1007768d9826331a"
},
{
"address": "212 Brightonstone Gardens SE",
"community": "Beltline",
"postal_code": "T2Z0H1",
"property_id": "1007a5e8690eaf7b"
},
{
"address": "503 620 67 Avenue SW",
"community": "Beltline",
"postal_code": "T2V0M2",
"property_id": "1007c5b6132f4ec"
},
{
"address": "595 Woodpark Crescent SW",
"community": "Woodlands",
"postal_code": "T2W2S1",
"property_id": "1007cca23b5a0a10"
},
{
"address": "137 Berwick Way NW",
"community": "Beddington Heights",
"postal_code": "T3K1B8",
"property_id": "1007d7cf25d6c8dc"
},
{
"address": "308 Panatella Boulevard NW",
"community": "Panorama Hills",
"postal_code": "T3K6K2",
"property_id": "10080305cbdbb466"
},
{
"address": "719 45 Street SW",
"community": "Beltline",
"postal_code": "T3C2B6",
"property_id": "10085f08dbb06199"
},
{
"address": "440 Shannon Square SW",
"community": "Shawnessy",
"postal_code": "T2Y4J9",
"property_id": "100871a31a0e35a9"
},
{
"address": "61 Hampstead Gardens NW",
"community": "Beltline",
"postal_code": "T3A5Y5",
"property_id": "1009354318409d7d"
},
{
"address": "31 Panatella Circle NW",
"community": "Panorama Hills",
"postal_code": "T3K5Z6",
"property_id": "1009b9c608997e52"
},
{
"address": "741 Sierra Madre Court SW",
"community": "Signal Hill",
"postal_code": "T3H3J1",
"property_id": "100a0599289fb1f9"
},
{
"address": "24 Hoover Place SW",
"community": "Haysboro",
"postal_code": "T2V3G4",
"property_id": "100a43bcbefcc557"
},
{
"address": "11 Chaparral Valley Garden SE",
"community": "Chaparral",
"postal_code": "T2X0N2",
"property_id": "100a49f6a821f222"
},
{
"address": "10 2126 4 Avenue NW",
"community": "Beltline",
"postal_code": "T2N0N5",
"property_id": "100a763583c3c50f"
},
{
"address": "94 Cougarstone Court Southwest",
"community": "Beltline",
"postal_code": "T3M3H1",
"property_id": "100a7aeb6001427"
},
{
"address": "5852 Bow Crescent NW",
"community": "Bowness",
"postal_code": "T3B2B7",
"property_id": "100af602324e3847"
},
{
"address": "108 Cheyenne Crescent NW",
"community": "Charleswood",
"postal_code": "T2L0Z2",
"property_id": "100af6cbccc73c57"
},
{
"address": "149 Panorama Hills View NW",
"community": "Panorama Hills",
"postal_code": "T3K5B8",
"property_id": "100aff0e2b4db155"
},
{
"address": "54 Panamount Road NW",
"community": "Panorama Hills",
"postal_code": "T3K0H6",
"property_id": "100b2c6e60c8fbad"
},
{
"address": "227 Cranford Close SE",
"community": "Cranston",
"postal_code": "T3M1N3",
"property_id": "100b45992e3a9842"
},
{
"address": "206 5010 50 Street SW",
"community": "Beltline",
"postal_code": "T3E7R7",
"property_id": "100b64a734ee3d98"
},
{
"address": "46 Cranarch View SE",
"community": "Cranston",
"postal_code": "T3M2J3",
"property_id": "100b7f2dba017cce"
},
{
"address": "148 Whitehaven Road NE",
"community": "Whitehorn",
"postal_code": "T1Y6C7",
"property_id": "100ba0f09365e282"
},
{
"address": "78 Cougar Ridge Crescent SW",
"community": "Cougar Ridge",
"postal_code": "T3H5L2",
"property_id": "100ba8a3cececaca"
},
{
"address": "56 Northmount Drive NW",
"community": "Thorncliffe",
"postal_code": "T2K3E9",
"property_id": "100bd0ee45c0a61b"
},
{
"address": "90 Cranridge Terrace SE",
"community": "Cranston",
"postal_code": "T3M0J1",
"property_id": "100bf13cd6ae2292"
},
{
"address": "422 Mount Sparrowhawk Place SE",
"community": "McKenzie Lake",
"postal_code": "T2Z2G9",
"property_id": "100c0a0fa63769e1"
},
{
"address": "5580 Dalhart Hill NW",
"community": "Dalhousie",
"postal_code": "T3A1S9",
"property_id": "100c6e3e02fb821e"
},
{
"address": "506 140 10 Avenue SW",
"community": "Beltline",
"postal_code": "T2R0A3",
"property_id": "100c84d47be20042"
},
{
"address": "124 Masters Link SE",
"community": "Mahogany",
"postal_code": "T3M2M9",
"property_id": "100ca7285682a9a7"
},
{
"address": "1307 41 Street SE",
"community": "Forest Lawn",
"postal_code": "T2A1K7",
"property_id": "100cae11312386e3"
},
{
"address": "171 Prestwick Landng SE",
"community": "Beltline",
"postal_code": "T2Z3S3",
"property_id": "100d050df8008fef"
},
{
"address": "1523 20 Street NW",
"community": "Hounsfield Heights-Briar Hill",
"postal_code": "T2N2K9",
"property_id": "100d08db9c75945b"
},
{
"address": "63 Hampstead Way NW",
"community": "Hamptons",
"postal_code": "T3A6E5",
"property_id": "100d0c60e83859a2"
},
{
"address": "161 Cranwell Bay SE",
"community": "Cranston",
"postal_code": "T3M1E8",
"property_id": "100d182e8bc2e62"
},
{
"address": "24 Westmore Place SW",
"community": "West Springs",
"postal_code": "T3H0Z2",
"property_id": "100d5a823a3ca83e"
},
{
"address": "2830 Oakmoor Crescent SW",
"community": "Oakridge",
"postal_code": "T2V3Z7",
"property_id": "100db013c3f70024"
},
{
"address": "1402 2416 16 Avenue NW",
"community": "Beltline",
"postal_code": "T2M5C7",
"property_id": "100dd4a731dd6d26"
},
{
"address": "1039 Penmeadows Road SE",
"community": "Penbrooke Meadows",
"postal_code": "T2A3R3",
"property_id": "100de6d2721b23dd"
},
{
"address": "2728 Signal Hill Heights SW",
"community": "Signal Hill",
"postal_code": "T3H2H7",
"property_id": "100e0c03879b153d"
},
{
"address": "64 Saddlelake Gr NE",
"community": "Saddle Ridge",
"postal_code": "T3J5N9",
"property_id": "100e2601d4e9c707"
},
{
"address": "1208 524 10 Avenue SW",
"community": "Beltline",
"postal_code": "T2R1L1",
"property_id": "100ed179c285e0fc"
},
{
"address": "32 Hawktree Gr NW",
"community": "Hawkwood",
"postal_code": "T3G4C9",
"property_id": "100ee0dc7a23a32c"
},
{
"address": "62 Silverado Skies Crescent SW",
"community": "Silverado",
"postal_code": "T2X0J6",
"property_id": "100f76fa441a8b27"
},
{
"address": "10 2016 Cherokee Place NW",
"community": "Charleswood",
"postal_code": "T2L0X3",
"property_id": "100fc26a21c196fd"
},
{
"address": "57 Fenton Road SE",
"community": "Fairview",
"postal_code": "T2H1B8",
"property_id": "100fd1906381c190"
},
{
"address": "8 Redstone Court NE",
"community": "Redstone",
"postal_code": "T3N0J4",
"property_id": "100fe39feb4e060c"
},
{
"address": "121 Edgebrook Gardens NW",
"community": "Beltline",
"postal_code": "T3A4Z8",
"property_id": "101010a6a7509704"
},
{
"address": "11239 Braeside Drive SW",
"community": "Braeside",
"postal_code": "T2W2V5",
"property_id": "10101432d24d4349"
},
{
"address": "3216 Breen Road NW",
"community": "Brentwood",
"postal_code": "T2L1S4",
"property_id": "10106e1d99f8de60"
},
{
"address": "405 40 11A Street NE",
"community": "Beltline",
"postal_code": "T2E7T2",
"property_id": "1010a7b04c6f5cc7"
},
{
"address": "210 20 Frobisher Boulevard SE",
"community": "Fairview",
"postal_code": "T2H1G5",
"property_id": "1010adac57c9a1ac"
},
{
"address": "401 114 13 Avenue NW",
"community": "Beltline",
"postal_code": "T2M0E2",
"property_id": "10115ca805ad47a0"
},
{
"address": "31 Cranleigh Gr SE",
"community": "Cranston",
"postal_code": "T3M2L7",
"property_id": "1011679061a00cf8"
},
{
"address": "207 Bridlewood Road SW",
"community": "Bridlewood",
"postal_code": "T2Y3X2",
"property_id": "101178ed3ccdd137"
},
{
"address": "172 Wolf Hollow Villas SE",
"community": "Wolf Willow",
"postal_code": "T2X5X2",
"property_id": "10119160d4272f45"
},
{
"address": "218 8 Avenue SW",
"community": "Beltline",
"postal_code": "T2P1B5",
"property_id": "10119c0526eb933c"
},
{
"address": "609 1310 14 Avenue SW",
"community": "Beltline",
"postal_code": "T3C3S3",
"property_id": "1011ab966233ad2a"
},
{
"address": "434 Cranston Drive SE",
"community": "Cranston",
"postal_code": "T3M0C1",
"property_id": "1011bbe15bf9928f"
},
{
"address": "120 1212 1 Street SE",
"community": "Beltline",
"postal_code": "T2G2H8",
"property_id": "1011f1f9b58bf05c"
},
{
"address": "719 Allandale Road SE",
"community": "Acadia",
"postal_code": "T2H1W7",
"property_id": "10122f0ce525c853"
},
{
"address": "127 Corner Meadows Villas NE",
"community": "Cornerstone",
"postal_code": "T3N1J4",
"property_id": "101232136629da25"
},
{
"address": "168 Covepark Way NE",
"community": "Coventry Hills",
"postal_code": "T3K5T7",
"property_id": "10125cbfb151a726"
},
{
"address": "255 Mountain Park Drive SE",
"community": "McKenzie Lake",
"postal_code": "T2Z2L2",
"property_id": "10128aa5d7e1086c"
},
{
"address": "507 880 9 Street SE",
"community": "Beltline",
"postal_code": "T2G2C9",
"property_id": "1012a08561802d5"
},
{
"address": "408 40 11A Street NE",
"community": "Beltline",
"postal_code": "T2E7T2",
"property_id": "1012e0032440fafb"
},
{
"address": "13 Erin Grove Place SE",
"community": "Erin Woods",
"postal_code": "T2B3A4",
"property_id": "1012fffe4a90309b"
},
{
"address": "18 Marwood Circle NE",
"community": "Marlborough",
"postal_code": "T2A2R6",
"property_id": "10132b080acd212d"
},
{
"address": "91 Evanscrest Terrace NW",
"community": "Evanston",
"postal_code": "T3P0R6",
"property_id": "101342654be530d4"
},
{
"address": "20 Wildwood Drive SW",
"community": "Wildwood",
"postal_code": "T3C3C5",
"property_id": "10136c6b78423d0b"
},
{
"address": "409 25 Glengrove Close SW",
"community": "Glenbrook",
"postal_code": "T3E6T1",
"property_id": "1013805e8de58078"
},
{
"address": "A 8822 46 Avenue NW",
"community": "Beltline",
"postal_code": "T3B1Y8",
"property_id": "1013b5dd2620a7c8"
},
{
"address": "244 Sabrina Bay SW",
"community": "Southwood",
"postal_code": "T2W1Z1",
"property_id": "1013bbd5763411f7"
},
{
"address": "129 30 Avenue NW",
"community": "Tuxedo park",
"postal_code": "T2M2N1",
"property_id": "1013d1d3888198d8"
},
{
"address": "123 Haverhill Road SW",
"community": "Haysboro",
"postal_code": "T2V3E4",
"property_id": "1013d710d1e58e07"
},
{
"address": "5323 Buckthorn Road NW",
"community": "Thorncliffe",
"postal_code": "T2K2Y2",
"property_id": "1013efeb11dccdfa"
},
{
"address": "157 Cougar Ridge Close SW",
"community": "Cougar Ridge",
"postal_code": "T3H0V4",
"property_id": "1013f1896836eb1d"
},
{
"address": "227 22 Glenway Place SW",
"community": "Beltline",
"postal_code": "T3E4T6",
"property_id": "1014017596b2e777"
},
{
"address": "201 719 5 Street NE",
"community": "Beltline",
"postal_code": "T2E3W7",
"property_id": "101403bc2e085d90"
},
{
"address": "308 Prestwick Terrace SE",
"community": "McKenzie Towne",
"postal_code": "T2Z4Y6",
"property_id": "10144f1496ef7eb2"
},
{
"address": "168 Brabourne Road SW",
"community": "Braeside",
"postal_code": "T2W2W3",
"property_id": "1014ae78ac6cb4be"
},
{
"address": "120 Deermoss Crescent SE",
"community": "Deer Run",
"postal_code": "T2J6P4",
"property_id": "1014b003e8bfaacb"
},
{
"address": "912 1320 16 Avenue SW",
"community": "Beltline",
"postal_code": "T3C3S6",
"property_id": "10150072f7ef2f1b"
},
{
"address": "117 Sherwood Way NW",
"community": "Sherwood",
"postal_code": "T3R1M8",
"property_id": "10153241b8d1916e"
},
{
"address": "303 Maitland Hill NE",
"community": "Marlborough Park",
"postal_code": "T2A5V4",
"property_id": "10155bfae1e3cb73"
},
{
"address": "5639 Centre Street NW",
"community": "Thorncliffe",
"postal_code": "T2K0T4",
"property_id": "10160e21e8618c10"
},
{
"address": "197 River Rock Place SE",
"community": "Riverbend",
"postal_code": "T2C4P5",
"property_id": "1016148ae2680e16"
},
{
"address": "229 Evansdale Way NW",
"community": "Evanston",
"postal_code": "T3P0C3",
"property_id": "1016419a8159eb02"
},
{
"address": "310 Erin Circle SE",
"community": "Erin Woods",
"postal_code": "T2B3J1",
"property_id": "1016566930e97945"
},
{
"address": "913 1320 16 Avenue SW",
"community": "Beltline",
"postal_code": "T3C3S6",
"property_id": "10168a97f47d38d7"
},
{
"address": "60 Citadel Pass Crescent NW",
"community": "Citadel",
"postal_code": "T3G3V2",
"property_id": "1016981fe984612a"
},
{
"address": "2024 38 Street SE",
"community": "Forest Lawn",
"postal_code": "T2B0Z6",
"property_id": "1016ab72b4873b4c"
},
{
"address": "2 1715 28 Avenue SW",
"community": "Beltline",
"postal_code": "T2T1J7",
"property_id": "1016c050f76c256"
},
{
"address": "230 Creekstone Way SW",
"community": "Pine Creek",
"postal_code": "T2X4P9",
"property_id": "1016f37e4ae306dd"
},
{
"address": "144 Copperpond Parade SE",
"community": "Copperfield",
"postal_code": "T2Z5A9",
"property_id": "10170aedfe9722d2"
},
{
"address": "104 Weston Manor SW",
"community": "West Springs",
"postal_code": "T3H5N8",
"property_id": "10171870118aa285"
},
{
"address": "49 Covehaven Gardens NE",
"community": "Beltline",
"postal_code": "T3K5X1",
"property_id": "101728463727dbcd"
},
{
"address": "241 255 5 Avenue SW",
"community": "Beltline",
"postal_code": "T2P3G6",
"property_id": "10172ec905568431"
},
{
"address": "2609 7 Avenue NW",
"community": "West Hillhurst",
"postal_code": "T2N1A6",
"property_id": "10177efba3636a6b"
},
{
"address": "648 Deerpath Court SE",
"community": "Deer Ridge",
"postal_code": "T2J6C4",
"property_id": "10178406e5b23612"
},
{
"address": "1 1519 12 Avenue SW",
"community": "Beltline",
"postal_code": "T3C0R1",
"property_id": "10178462797ba254"
},
{
"address": "73 Everwillow Boulevard SW",
"community": "Evergreen",
"postal_code": "T2Y4G4",
"property_id": "10178856462f78b0"
},
{
"address": "631 Saddlecreek Way NE",
"community": "Saddle Ridge",
"postal_code": "T3J4A3",
"property_id": "1017c370e4e867f0"
},
{
"address": "5 443 12 Street NW",
"community": "Beltline",
"postal_code": "T2N1Y9",
"property_id": "101850a89ebdad33"
},
{
"address": "39 Ranch Estates Road NW",
"community": "Ranchlands",
"postal_code": "T3G1L4",
"property_id": "101892438e16169a"
},
{
"address": "85 Saddlehorn Crescent NE",
"community": "Saddle Ridge",
"postal_code": "T3J4M3",
"property_id": "1018a3981d5b661b"
},
{
"address": "15 Vandoos Garden NW",
"community": "Varsity",
"postal_code": "T2L1Y3",
"property_id": "1018b80803415e2c"
},
{
"address": "4923 Marlborough Drive NE",
"community": "Marlborough",
"postal_code": "T2A2Z4",
"property_id": "1018bc63038eb51f"
},
{
"address": "269 Auburn Crest Way SE",
"community": "Auburn Bay",
"postal_code": "T3M1T2",
"property_id": "1018f3c707d466dd"
},
{
"address": "1029 9 Street SE",
"community": "Ramsay",
"postal_code": "T2G3B1",
"property_id": "1019312373ac7853"
},
{
"address": "20 Royal Highland Court NW",
"community": "Royal Oak",
"postal_code": "T3G4Y2",
"property_id": "101978dfd81ba829"
},
{
"address": "2407 13 Avenue NW",
"community": "Hounsfield Heights-Briar Hill",
"postal_code": "T2N1L7",
"property_id": "1019c5db26a89a02"
},
{
"address": "305 1728 26 Avenue SW",
"community": "Beltline",
"postal_code": "T2T1C8",
"property_id": "1019e4b0a15ecb2f"
},
{
"address": "1302 917 10 Avenue SW",
"community": "Beltline",
"postal_code": "T2R0T2",
"property_id": "101a1764d5f578e1"
},
{
"address": "138 Silverado Plains Circle SW",
"community": "Silverado",
"postal_code": "T2X0G5",
"property_id": "101a22ee837c35"
},
{
"address": "832 Fortalice Crescent SE",
"community": "Forest Heights",
"postal_code": "T2A2E3",
"property_id": "101a311c73601e6a"
},
{
"address": "1 9117 19 Street SW",
"community": "Beltline",
"postal_code": "T2V1R3",
"property_id": "101a49d97a41c325"
},
{
"address": "309 2016 34 Avenue SW",
"community": "Beltline",
"postal_code": "T2T2C3",
"property_id": "101a71d8bea56c6d"
},
{
"address": "25 Edgeburn Crescent NW",
"community": "Edgemont",
"postal_code": "T3A4J2",
"property_id": "101abc1d35954403"
},
{
"address": "97 Covebrook Close NE",
"community": "Coventry Hills",
"postal_code": "T3K6J5",
"property_id": "101abd5798223367"
},
{
"address": "5604 Buckthorn Road NW",
"community": "Thorncliffe",
"postal_code": "T2K2Y5",
"property_id": "101ac59c1d632570"
},
{
"address": "11 Woodmont Way SW",
"community": "Woodbine",
"postal_code": "T2W4L7",
"property_id": "101afd386f640c9e"
},
{
"address": "4111 162 Avenue SW",
"community": "Residual Ward 13 - Sub Area 13G",
"postal_code": "T2Y0N7",
"property_id": "101b20104904ee27"
},
{
"address": "103 Pumpmeadow Place SW",
"community": "Pump Hill",
"postal_code": "T2V5C9",
"property_id": "101b24f83c50a76f"
},
{
"address": "1437 38 Street SW",
"community": "Rosscarrock",
"postal_code": "T3C1T6",
"property_id": "101b492daec4544"
},
{
"address": "23 Bernard Court NW",
"community": "Beddington Heights",
"postal_code": "T3K2B3",
"property_id": "101b51f16427a958"
},
{
"address": "464 Discovery Place SW",
"community": "Discovery Ridge",
"postal_code": "T3H6A2",
"property_id": "101b851832d7a45f"
},
{
"address": "4 1614 22 Avenue SW",
"community": "Beltline",
"postal_code": "T2T0R8",
"property_id": "101bf06ef0f530c8"
},
{
"address": "409 1870 45 Street NW",
"community": "Beltline",
"postal_code": "T3B6A9",
"property_id": "101bf81a3896227a"
},
{
"address": "148 Pinemill Mews NE",
"community": "Pineridge",
"postal_code": "T1Y4R6",
"property_id": "101bf9e336928eac"
},
{
"address": "1304 5757 2 Street SW",
"community": "Beltline",
"postal_code": "T2H3B6",
"property_id": "101bfdd4e3e93fe0"
},
{
"address": "25 Cranberry Way SE",
"community": "Cranston",
"postal_code": "T3M1K1",
"property_id": "101c623809d888b3"
},
{
"address": "118 Tuscany Ravine Close NW",
"community": "Tuscany",
"postal_code": "T3L2Y5",
"property_id": "101c9c533be3310a"
},
{
"address": "419 Astoria Crescent SE",
"community": "Acadia",
"postal_code": "T2J0Y4",
"property_id": "101cf61a3124004"
},
{
"address": "11975 Coventry Hills Way NE",
"community": "Coventry Hills",
"postal_code": "T3K6G6",
"property_id": "101d0c850d6de41c"
},
{
"address": "4010 16 Street SW",
"community": "Altadore",
"postal_code": "T2T4H4",
"property_id": "101d384958060b6a"
},
{
"address": "160 Sierra Morena Circle SW",
"community": "Signal Hill",
"postal_code": "T3H2W9",
"property_id": "101db327babdfa64"
},
{
"address": "132 Pensacola Close SE",
"community": "Penbrooke Meadows",
"postal_code": "T2A2K4",
"property_id": "101dd406e819175d"
},
{
"address": "99 Rock Lake View NW",
"community": "Rocky Ridge",
"postal_code": "T3G0E9",
"property_id": "101e830eecd2d444"
},
{
"address": "58 Tuscany Springs Place NW",
"community": "Tuscany",
"postal_code": "T3L2V1",
"property_id": "101e9d59f6677846"
},
{
"address": "1712 47 Avenue SW",
"community": "Altadore",
"postal_code": "T2T2S2",
"property_id": "101ed0b92f7eba88"
},
{
"address": "38 Arbour Vista Terrace NW",
"community": "Arbour Lake",
"postal_code": "T3G4N9",
"property_id": "101ee283c1d8c20f"
},
{
"address": "224 Queensland Road SE",
"community": "Queensland",
"postal_code": "T2J3S3",
"property_id": "101f03d9f639d8da"
},
{
"address": "19 Everhollow Way SW",
"community": "Evergreen",
"postal_code": "T2Y4R4",
"property_id": "101f2e247a364412"
},
{
"address": "178 Aspen Summit Circle SW",
"community": "Aspen Woods",
"postal_code": "T3H0Z6",
"property_id": "101f5afc31e62bf6"
},
{
"address": "638 Lake Simcoe Close SE",
"community": "Lake Bonavista",
"postal_code": "T2J5H6",
"property_id": "101f5dfb752a318b"
},
{
"address": "86 Saddlecrest Close NE",
"community": "Saddle Ridge",
"postal_code": "T3J5B6",
"property_id": "101f62b4e9e9dce9"
},
{
"address": "259 Panamount Hill NW",
"community": "Panorama Hills",
"postal_code": "T3K5M3",
"property_id": "101f69f2326514b0"
},
{
"address": "1172 Cranbrook Gardens SE",
"community": "Unknown",
"postal_code": "T3M3B9",
"property_id": "101fcf6159f84782"
},
{
"address": "55 Everglen Grove SW",
"community": "Evergreen",
"postal_code": "T2Y4Z3",
"property_id": "101fe7c7448383ed"
},
{
"address": "1984 Cottonwood Crescent SE",
"community": "Southview",
"postal_code": "T2B1P7",
"property_id": "10204e5743f7dbf5"
},
{
"address": "11 Yorkstone He Southwest",
"community": "Beltline",
"postal_code": "T3M3H1",
"property_id": "102052ab9c37b159"
},
{
"address": "135 Evergreen Circle SW",
"community": "Evergreen",
"postal_code": "T2Y0C1",
"property_id": "10205970183fe6ab"
},
{
"address": "224 Yorkstone Rise SW",
"community": "Yorkville",
"postal_code": "T2X5N1",
"property_id": "1020c584571a2291"
},
{
"address": "2536 2 Avenue NW",
"community": "West Hillhurst",
"postal_code": "T2N0H6",
"property_id": "1020d1a7b4a6c702"
},
{
"address": "2041 28 Street SE",
"community": "Southview",
"postal_code": "T2B0R6",
"property_id": "1020d21a69880071"
},
{
"address": "19 1202 Street NW",
"community": "Beltline",
"postal_code": "T2N2J7",
"property_id": "1020f7c057e903e8"
},
{
"address": "34 Varston Place NW",
"community": "Varsity",
"postal_code": "T3A0B7",
"property_id": "102105a6746bff80"
},
{
"address": "25 Capri Avenue NW",
"community": "Collingwood",
"postal_code": "T2L0G9",
"property_id": "1021c758111aa87d"
},
{
"address": "108 Citadel Close NW",
"community": "Citadel",
"postal_code": "T3G4A6",
"property_id": "1021f673c9a739bb"
},
{
"address": "215 Pantego Close NW",
"community": "Panorama Hills",
"postal_code": "T3K0K3",
"property_id": "102237a6a8a39d84"
},
{
"address": "251 Panamount Heights NW",
"community": "Panorama Hills",
"postal_code": "T3K5T1",
"property_id": "1022610e281a7df"
},
{
"address": "66 River Rock Way SE",
"community": "Riverbend",
"postal_code": "T2C4H1",
"property_id": "1022af89295895f4"
},
{
"address": "125 Coventry Court NE",
"community": "Coventry Hills",
"postal_code": "T3K5E9",
"property_id": "1022ea2f3890fd36"
},
{
"address": "12523 Cannington Way SW",
"community": "Canyon Meadows",
"postal_code": "T2W1T9",
"property_id": "102317be95aac31f"
},
{
"address": "B 211 33 Avenue NE",
"community": "Beltline",
"postal_code": "T2E2H7",
"property_id": "10232a60c7d1a094"
},
{
"address": "18 Cranbrook Cove SE",
"community": "Cranston",
"postal_code": "T3M2S9",
"property_id": "10233bd64a3e4418"
},
{
"address": "1149 9 Street NW",
"community": "Rosedale",
"postal_code": "T2M3K9",
"property_id": "1023a857018b13f4"
},
{
"address": "31 Mahogany Park SE",
"community": "Mahogany",
"postal_code": "T3M2J8",
"property_id": "1023bc787ab16f19"
},
{
"address": "80 Pasadena Garden NE",
"community": "Monterey Park",
"postal_code": "T1Y7M1",
"property_id": "1023c0e8cb9e033f"
},
{
"address": "6451 70 Street NW",
"community": "Silver Springs",
"postal_code": "T3B3J5",
"property_id": "10240aca9bdc6a1f"
},
{
"address": "20 Somerglen He SW",
"community": "Somerset",
"postal_code": "T2Y4M1",
"property_id": "102411abb98a1d56"
},
{
"address": "68 Copperstone Garden SE",
"community": "Copperfield",
"postal_code": "T2Z4R2",
"property_id": "1024286544cdadb0"
},
{
"address": "115 8531 8A Avenue SW",
"community": "West Springs",
"postal_code": "T3H1V4",
"property_id": "10242ffbd270ce20"
},
{
"address": "204 Tuscany Valley Gr NW",
"community": "Tuscany",
"postal_code": "T3L2M2",
"property_id": "102458962e824e6e"
},
{
"address": "275 Covepark Rise NE",
"community": "Coventry Hills",
"postal_code": "T3K6G3",
"property_id": "102468c944c9fddc"
},
{
"address": "6 Tuscany Meadows Common NW",
"community": "Tuscany",
"postal_code": "T3L2L2",
"property_id": "1024766015914c62"
},
{
"address": "51 Eversyde He SW",
"community": "Evergreen",
"postal_code": "T2Y0L1",
"property_id": "10247d74f07b254a"
},
{
"address": "98 Tuscany Ridge Heights NW",
"community": "Tuscany",
"postal_code": "T3L3C1",
"property_id": "10254bd2c60a1e5d"
},
{
"address": "716 18 Avenue NW",
"community": "Mount Pleasant",
"postal_code": "T2M0V1",
"property_id": "10258b848970f727"
},
{
"address": "8 Mount Robson Circle SE",
"community": "McKenzie Lake",
"postal_code": "T2Z2B8",
"property_id": "1025d3bcc17b1d41"
},
{
"address": "124 Pinewind Close NE",
"community": "Pineridge",
"postal_code": "T1Y2H3",
"property_id": "1025ebfeb27687d9"
},
{
"address": "B 4015 Centre A Street NE",
"community": "Beltline",
"postal_code": "T2E3A7",
"property_id": "102652d6e086c49c"
},
{
"address": "934 Livingston View Northeast",
"community": "Beltline",
"postal_code": "T3M3H1",
"property_id": "10267881cdf53eda"
},
{
"address": "128 Taradale Close NE",
"community": "Taradale",
"postal_code": "T3J3E6",
"property_id": "1026ac494db47113"
},
{
"address": "303 1200 6 Street SW",
"community": "Beltline",
"postal_code": "T2R1H3",
"property_id": "1026bfa5b1576c80"
},
{
"address": "5716 Dalcastle Crescent NW",
"community": "Dalhousie",
"postal_code": "T3A1S4",
"property_id": "1026ccb6c50416c6"
},
{
"address": "7 Tuscany Meadows Crescent NW",
"community": "Tuscany",
"postal_code": "T3L2T9",
"property_id": "1026e067f9960c63"
},
{
"address": "444 20 Avenue Northwest",
"community": "Beltline",
"postal_code": "T3M3H1",
"property_id": "102702d77ba4532e"
},
{
"address": "32 Beacham Rise NW",
"community": "Beddington Heights",
"postal_code": "T3K1S2",
"property_id": "102713a06a96a1d9"
},
{
"address": "1123 Mayland Drive NE",
"community": "Mayland Heights",
"postal_code": "T2E6C3",
"property_id": "10273c074b822046"
},
{
"address": "4910 Marcombe Way NE",
"community": "Marlborough",
"postal_code": "T2A3G7",
"property_id": "102766b38041c2ab"
},
{
"address": "46 Shawbrooke Place SW",
"community": "Shawnessy",
"postal_code": "T2Y3B8",
"property_id": "102772a117df3b42"
},
{
"address": "3420 7 Street SW",
"community": "Elbow Park",
"postal_code": "T2T2X9",
"property_id": "10278392d4e8cc49"
},
{
"address": "397 Copperfield Boulevard SE",
"community": "Copperfield",
"postal_code": "T2Z4C8",
"property_id": "1027c9e94a109db"
},
{
"address": "157 Signal Hill Circle SW",
"community": "Signal Hill",
"postal_code": "T3H2H1",
"property_id": "1027d3f4a7b7a54a"
},
{
"address": "29 Edgevalley Way NW",
"community": "Edgemont",
"postal_code": "T3A4X7",
"property_id": "1027d745a10e1d60"
},
{
"address": "582 Copperpond Circle SE",
"community": "Copperfield",
"postal_code": "T2Z0X1",
"property_id": "1027fe6ea6f97ff1"
},
{
"address": "129 Kincora Cove NW",
"community": "Kincora",
"postal_code": "T3R1L1",
"property_id": "102801d97111ace6"
},
{
"address": "B 3218 4A Street NW",
"community": "Beltline",
"postal_code": "T2M3B4",
"property_id": "10286f91adc0341"
},
{
"address": "31 Nolanfield Terrace NW",
"community": "Nolan Hill",
"postal_code": "T3R0M5",
"property_id": "102890889118384"
},
{
"address": "2628 56 Street NE",
"community": "Pineridge",
"postal_code": "T1Y2E7",
"property_id": "1028926e5a20cca6"
},
{
"address": "1735 24A Street SW",
"community": "Shaganappi",
"postal_code": "T3C1J5",
"property_id": "10289633381ae31b"
},
{
"address": "B 347 33 Avenue NE",
"community": "Beltline",
"postal_code": "T2E2H9",
"property_id": "1028bf9e4072f4d4"
},
{
"address": "1910 18 Avenue NW",
"community": "Banff Trail",
"postal_code": "T2M0X7",
"property_id": "1028d0f3285259fe"
},
{
"address": "2821 14 Avenue SE",
"community": "Albert Park-Radisson Heights",
"postal_code": "T2A0J8",
"property_id": "1029113cc6d86801"
},
{
"address": "57 Saddlefield Crescent NE",
"community": "Saddle Ridge",
"postal_code": "T3J4Z7",
"property_id": "10298e0a4e031004"
},
{
"address": "37 Hawkdale Place NW",
"community": "Hawkwood",
"postal_code": "T3G3H9",
"property_id": "1029ab5d568dc40a"
},
{
"address": "270 Tusslewood Terrace NW",
"community": "Tuscany",
"postal_code": "T3L2W5",
"property_id": "1029b97919ee2fb1"
},
{
"address": "13039 Lake Twintree Road SE",
"community": "Lake Bonavista",
"postal_code": "T2J2X2",
"property_id": "1029fc3ea878f926"
},
{
"address": "2 3720 16 Street SW",
"community": "Altadore",
"postal_code": "T2T4H2",
"property_id": "1029fc7c3cb4157a"
},
{
"address": "164 Cougar Ridge Circle SW",
"community": "Cougar Ridge",
"postal_code": "T3H5L3",
"property_id": "102a26edfbdaf892"
},
{
"address": "130 Royal Oak Point NW",
"community": "Royal Oak",
"postal_code": "T3G5C6",
"property_id": "102a9c9813285544"
},
{
"address": "455 Penworth Rise SE",
"community": "Penbrooke Meadows",
"postal_code": "T2A4E1",
"property_id": "102acee86ff93776"
},
{
"address": "2250 801 6 Avenue SW",
"community": "Beltline",
"postal_code": "T2P3W2",
"property_id": "102adc4d244ed937"
},
{
"address": "1808 36 Avenue Southwest",
"community": "Beltline",
"postal_code": "T3M3H1",
"property_id": "102af21adc8dbbcf"
},
{
"address": "312 1320 21 Avenue NW",
"community": "Beltline",
"postal_code": "T2M1L4",
"property_id": "102b203476085bb3"
},
{
"address": "457 Saddlelake Drive NE",
"community": "Saddle Ridge",
"postal_code": "T3J0R7",
"property_id": "102bcb28c782553c"
},
{
"address": "34 Rock Lake View NW",
"community": "Rocky Ridge",
"postal_code": "T3G0E9",
"property_id": "102be26879377c4f"
},
{
"address": "140 2727 16 Avenue NW",
"community": "Beltline",
"postal_code": "T2N3Y6",
"property_id": "102c4fa06bad422c"
},
{
"address": "246 Mount Douglas Circle SE",
"community": "McKenzie Lake",
"postal_code": "T2Z3P1",
"property_id": "102c4fb4e0a7cc94"
},
{
"address": "612 1030 16 Avenue SW",
"community": "Beltline",
"postal_code": "T2R1N1",
"property_id": "102c5a70945f3126"
},
{
"address": "447 Cranford Parade SE",
"community": "Beltline",
"postal_code": "T3M2C5",
"property_id": "102c77a0a5f74f6d"
},
{
"address": "128 Abberfield Place NE",
"community": "Abbeydale",
"postal_code": "T2A6L4",
"property_id": "102c81b2ec2f76e"
},
{
"address": "215 Patton Court SW",
"community": "Pump Hill",
"postal_code": "T2V5G4",
"property_id": "102c9f97f405db56"
},
{
"address": "99 Carringsby Landing NW",
"community": "Carrington",
"postal_code": "T3P1L9",
"property_id": "102d2da7db35e7ca"
},
{
"address": "202 Martinbrook Place NE",
"community": "Martindale",
"postal_code": "T3J3E2",
"property_id": "102d9a2ac3a21717"
},
{
"address": "75 Walden Heights SE",
"community": "Walden",
"postal_code": "T2X2J3",
"property_id": "102dc6c7dd978bc6"
},
{
"address": "380 Street Moritz Drive SW",
"community": "Springbank Hill",
"postal_code": "T3H0B4",
"property_id": "102dd7b14f6a0e21"
},
{
"address": "125 Sienna Heights Hill SW",
"community": "Signal Hill",
"postal_code": "T3H3T8",
"property_id": "102e0cbdcb70f891"
},
{
"address": "119 Fairview Drive SE",
"community": "Fairview",
"postal_code": "T2H1B4",
"property_id": "102e498dcfa02a8e"
},
{
"address": "D 518 18 Avenue SW",
"community": "Beltline",
"postal_code": "T2S0C5",
"property_id": "102ea834c9537c1f"
},
{
"address": "448 18 Avenue NE",
"community": "Winston Heights-Mountview",
"postal_code": "T2E1N4",
"property_id": "102f2ebb0c4105b6"
},
{
"address": "37 Skyview Springs Crescent NE",
"community": "Skyview Ranch",
"postal_code": "T3N0B9",
"property_id": "102f46de94beb70"
},
{
"address": "402 Martindale Drive NE",
"community": "Martindale",
"postal_code": "T3J0H8",
"property_id": "102f55d4926777b6"
},
{
"address": "38 1200 37 Street SW",
"community": "Beltline",
"postal_code": "T3C1S2",
"property_id": "102f95d80c9e1561"
},
{
"address": "2541 Charlebois Drive Northwest",
"community": "Beltline",
"postal_code": "T3M3H1",
"property_id": "102f9717e1378102"
},
{
"address": "29 Evansford Grove NW",
"community": "Evanston",
"postal_code": "T3P1G7",
"property_id": "102f9c9af1187ac0"
},
{
"address": "88 Auburn Glen Gardens Southeast",
"community": "Beltline",
"postal_code": "T3M3H1",
"property_id": "102fa05e4dc00baa"
},
{
"address": "301 120 23 Avenue NE",
"community": "Beltline",
"postal_code": "T2E1V5",
"property_id": "102fa3c74ca5b95"
},
{
"address": "305 308 14 Avenue SW",
"community": "Beltline",
"postal_code": "T2R0M3",
"property_id": "102fb8c2220819e7"
},
{
"address": "C207 5320 Lakeview Drive SW",
"community": "Lakeview",
"postal_code": "T3E6L5",
"property_id": "102fe446f974abdb"
},
{
"address": "200 Arbour Wood Close NW",
"community": "Arbour Lake",
"postal_code": "T3G4C3",
"property_id": "102fe6363d7b7f7b"
},
{
"address": "208 Citadel Meadow Bay NW",
"community": "Citadel",
"postal_code": "T3G4Z4",
"property_id": "10301a5d593fd77f"
},
{
"address": "10 2305 52 Avenue SE",
"community": "Beltline",
"postal_code": "T2C4X7",
"property_id": "103060ada3744ccf"
},
{
"address": "34 Rivercrest Circle SE",
"community": "Riverbend",
"postal_code": "T2C4G3",
"property_id": "1030985b1d6c42d4"
},
{
"address": "49 Lucas Grove NW",
"community": "Livingston",
"postal_code": "T3P1R4",
"property_id": "1030a4a1b171cf53"
},
{
"address": "192 Everbrook Drive SW",
"community": "Evergreen",
"postal_code": "T2Y0E8",
"property_id": "1030a6c3e515299d"
},
{
"address": "1119 48 Avenue NW",
"community": "North Haven",
"postal_code": "T2K0J6",
"property_id": "1030ae763950657f"
},
{
"address": "157 Riverview Park SE",
"community": "Riverbend",
"postal_code": "T2C4A1",
"property_id": "1030b0419eedaaf8"
},
{
"address": "848 Abbotsford Drive NE",
"community": "Abbeydale",
"postal_code": "T2A5Y4",
"property_id": "1030dbc243159ab4"
},
{
"address": "207 Hidden Spring Gr NW",
"community": "Hidden Valley",
"postal_code": "T3A6B9",
"property_id": "1030e90dcfd47aa6"
},
{
"address": "355 Chapala Point SE",
"community": "Chaparral",
"postal_code": "T2X0A2",
"property_id": "103100b52d454b7a"
},
{
"address": "3512 Bulyea Crescent NW",
"community": "Brentwood",
"postal_code": "T2L1N7",
"property_id": "103106279065f157"
},
{
"address": "40 Tarington Gr NE",
"community": "Taradale",
"postal_code": "T3J0G1",
"property_id": "10313a806ea9e172"
},
{
"address": "175 Templeton Circle NE",
"community": "Temple",
"postal_code": "T1Y4G6",
"property_id": "103178ca5403691a"
},
{
"address": "63 Chapala Drive SE",
"community": "Chaparral",
"postal_code": "T2X3M5",
"property_id": "1031791539fcf200"
},
{
"address": "1002 Rundlehorn Circle NE",
"community": "Beltline",
"postal_code": "T1Y5V1",
"property_id": "10318f68aaeb8665"
},
{
"address": "963 Rundlecairn Way NE",
"community": "Rundle",
"postal_code": "T1Y2W7",
"property_id": "1031a7bf34815bac"
},
{
"address": "159 Bedwood Bay NE",
"community": "Beddington Heights",
"postal_code": "T3K1M1",
"property_id": "10320f218a9c5d51"
},
{
"address": "60 Appleside Close SE",
"community": "Applewood Park",
"postal_code": "T2A7T8",
"property_id": "10323430721c0582"
},
{
"address": "431 Thorndale Road NW",
"community": "Thorncliffe",
"postal_code": "T2K3C6",
"property_id": "1032654e389044c1"
},
{
"address": "170 919 Centre Street NW",
"community": "Beltline",
"postal_code": "T2E2P6",
"property_id": "10326ecc2c4a9e88"
},
{
"address": "5837 66 Avenue NW",
"community": "Dalhousie",
"postal_code": "T3A2A8",
"property_id": "1032bfd6c1707de6"
},
{
"address": "231 Parkvalley Drive SE",
"community": "Parkland",
"postal_code": "T2J4V2",
"property_id": "1032e0aab660ccc1"
},
{
"address": "116 Shannon Hill SW",
"community": "Shawnessy",
"postal_code": "T2Y2Y7",
"property_id": "10330843ffc74a99"
},
{
"address": "809 5610 3 Street SW",
"community": "Beltline",
"postal_code": "T2H1J3",
"property_id": "10330d69876f0dff"
},
{
"address": "20 Saddlelake Common NE",
"community": "Saddle Ridge",
"postal_code": "T3J0W2",
"property_id": "103314b858b93bfb"
},
{
"address": "41 Glenside Drive SW",
"community": "Glendale",
"postal_code": "T3E4K4",
"property_id": "1033d45d240a16d1"
},
{
"address": "27 Edcath Road NW",
"community": "Edgemont",
"postal_code": "T3A4A2",
"property_id": "1033e01b55769cbb"
},
{
"address": "4 332 5 Avenue NE",
"community": "Beltline",
"postal_code": "T2E0K8",
"property_id": "1033e05d330dde4"
},
{
"address": "141 Mount Douglas Circle SE",
"community": "McKenzie Lake",
"postal_code": "T2Z3P2",
"property_id": "103408fdaa69866b"
},
{
"address": "1035 Thorneycroft Drive NW",
"community": "Thorncliffe",
"postal_code": "T2K3K7",
"property_id": "103453643abc39a5"
},
{
"address": "1820 29 Avenue Southwest",
"community": "Beltline",
"postal_code": "T3M3H1",
"property_id": "10347b0e9af30067"
},
{
"address": "84 Hawkhill Way NW",
"community": "Hawkwood",
"postal_code": "T3G2V2",
"property_id": "1034ac607217f9d1"
},
{
"address": "1602 21 Avenue NW",
"community": "Capitol Hill",
"postal_code": "T2M1M1",
"property_id": "1034cc69dcf530e3"
},
{
"address": "2033 46 Avenue SW",
"community": "Altadore",
"postal_code": "T2T2S1",
"property_id": "1034eaa73b558210"
},
{
"address": "121 Evansford Circle NW",
"community": "Evanston",
"postal_code": "T3P0A9",
"property_id": "1034f3385cb490ea"
},
{
"address": "73 Brightonwoods Crescent SE",
"community": "New Brighton",
"postal_code": "T2Z0T2",
"property_id": "1034f8a7c54066a8"
},
{
"address": "39 Coverton Green NE",
"community": "Beltline",
"postal_code": "T3K4Z9",
"property_id": "1034f92d169682d3"
},
{
"address": "1210 63 Corner Glen Crescent NE",
"community": "Cornerstone",
"postal_code": "T3N2L8",
"property_id": "1034fdae690e20db"
},
{
"address": "102 Auburn Sound Manor SE",
"community": "Auburn Bay",
"postal_code": "T3M0R6",
"property_id": "103501832404ccb5"
},
{
"address": "405 330 2 Avenue NE",
"community": "Beltline",
"postal_code": "T2E0E4",
"property_id": "10351bab49567365"
},
{
"address": "20 Saddlecrest Garden NE",
"community": "Saddle Ridge",
"postal_code": "T3J5N9",
"property_id": "103535199842ebb"
},
{
"address": "907 1515 12 Street SW",
"community": "Beltline",
"postal_code": "T3C1C7",
"property_id": "103548b40b36c71c"
},
{
"address": "4832 26 Avenue NE",
"community": "Rundle",
"postal_code": "T1Y1C9",
"property_id": "103556fd1b541339"
},
{
"address": "134 Cranarch Close SE",
"community": "Cranston",
"postal_code": "T3M0T9",
"property_id": "103561da4ba52d41"
},
{
"address": "2023 Ungava Road NW",
"community": "University Heights",
"postal_code": "T2N4B3",
"property_id": "10356824f14cb2b3"
},
{
"address": "2510 618 5 Avenue SW",
"community": "Beltline",
"postal_code": "T2P0M7",
"property_id": "10358b544ecb3b16"
},
{
"address": "368 Sienna Park Drive SW",
"community": "Signal Hill",
"postal_code": "T3H3K3",
"property_id": "1035b9fa56167136"
},
{
"address": "147 Sage Valley Green NW",
"community": "Sage Hill",
"postal_code": "T3R0H8",
"property_id": "1035f0fa33cbe51b"
},
{
"address": "42 Deerview Terrace SE",
"community": "Deer Ridge",
"postal_code": "T2J7B9",
"property_id": "1035f156cf444074"
},
{
"address": "8 Edelweiss Road NW",
"community": "Edgemont",
"postal_code": "T3A3R8",
"property_id": "1036497e6f08f95b"
},
{
"address": "127 Hawkside Close NW",
"community": "Hawkwood",
"postal_code": "T3G3K8",
"property_id": "1036656a81441c90"
},
{
"address": "5327 La Salle Crescent SW",
"community": "Lakeview",
"postal_code": "T3E5Y6",
"property_id": "10367e3b5538f7ba"
},
{
"address": "642 26 Avenue NW",
"community": "Mount Pleasant",
"postal_code": "T2M2E5",
"property_id": "10368944990cd3cf"
},
{
"address": "1336 R Colgrove Avenue NE",
"community": "Beltline",
"postal_code": "T2E5C4",
"property_id": "1036a21a3665970f"
},
{
"address": "103 Rivergreen Crescent SE",
"community": "Riverbend",
"postal_code": "T2C3V6",
"property_id": "1036b007f142fae0"
},
{
"address": "1152 Southglen Drive SW",
"community": "Southwood",
"postal_code": "T2W0X1",
"property_id": "1036eeef8bd8ef01"
},
{
"address": "678 Panorama Hills Drive NW",
"community": "Panorama Hills",
"postal_code": "T3K4V4",
"property_id": "10370f1d373e5c58"
},
{
"address": "218 Douglas Ridge Mews SE",
"community": "Douglasdale-Glen",
"postal_code": "T2Z2M3",
"property_id": "10371523bd07213f"
},
{
"address": "702 115 2 Avenue SW",
"community": "Beltline",
"postal_code": "T2P3C6",
"property_id": "103771e4223fc27e"
},
{
"address": "92 Castleglen Crescent NE",
"community": "Castleridge",
"postal_code": "T3J1N3",
"property_id": "10377a59582ee06b"
},
{
"address": "42 Marbank Place NE",
"community": "Marlborough",
"postal_code": "T2A4H5",
"property_id": "10377bbbbd1a9c1b"
},
{
"address": "1408 21A Street NW",
"community": "Hounsfield Heights-Briar Hill",
"postal_code": "T2N2M4",
"property_id": "10383c77f8691e48"
},
{
"address": "177 Hawkstone Drive NW",
"community": "Hawkwood",
"postal_code": "T3G3R1",
"property_id": "10384f0b337d1576"
},
{
"address": "102 Marthas Haven Green NE",
"community": "Martindale",
"postal_code": "T3J3X5",
"property_id": "1038629dd0fe235"
},
{
"address": "141 Bridlewood Way SW",
"community": "Bridlewood",
"postal_code": "T2Y3S8",
"property_id": "1038716fdee5a056"
},
{
"address": "25 Evergreen Cove SW",
"community": "Evergreen",
"postal_code": "T2Y3J7",
"property_id": "10387d6fa58d8b84"
},
{
"address": "70 Queen Isabella Close SE",
"community": "Queensland",
"postal_code": "T2J3R1",
"property_id": "1038a0dbfcfdcc86"
},
{
"address": "175 Citadel Peak Circle Northwest",
"community": "Beltline",
"postal_code": "T3M3H1",
"property_id": "1038c8903db1fb20"
},
{
"address": "2036 Pinetree Crescent NE",
"community": "Pineridge",
"postal_code": "T1Y1L7",
"property_id": "1038eb5f7cf59bbc"
},
{
"address": "3 3915 1 Street NE",
"community": "Beltline",
"postal_code": "T2E3E2",
"property_id": "1038ef7760f671b7"
},
{
"address": "2019 47 Avenue SW",
"community": "Altadore",
"postal_code": "T2T2S7",
"property_id": "10392f1e43d2525d"
},
{
"address": "2226 Brightoncrest Common SE",
"community": "New Brighton",
"postal_code": "T2Z1E9",
"property_id": "10394ec7b5460ac1"
},
{
"address": "228 Everbrook Way Southwest",
"community": "Beltline",
"postal_code": "T3M3H1",
"property_id": "103977b4e02ca3c5"
},
{
"address": "34 Sierra Morena Villas SW",
"community": "Signal Hill",
"postal_code": "T3H3J5",
"property_id": "10397dc108e20c7a"
},
{
"address": "7343 Huntley Road NE",
"community": "Huntington Hills",
"postal_code": "T2K4Z6",
"property_id": "1039860dac72fced"
},
{
"address": "1722 37 Avenue SW",
"community": "Altadore",
"postal_code": "T2T2H3",
"property_id": "1039a473f38f4735"
},
{
"address": "119 Strathbury Bay SW",
"community": "Strathcona Park",
"postal_code": "T3H1N3",
"property_id": "1039c1e1cc2f07f7"
},
{
"address": "354 Prestwick Circle SE",
"community": "McKenzie Towne",
"postal_code": "T2Z4P4",
"property_id": "1039cae0d95f35f3"
},
{
"address": "119 Valley Creek Crescent NW",
"community": "Valley Ridge",
"postal_code": "T3B5V3",
"property_id": "1039ebf261ead22b"
},
{
"address": "224 Vantage Place NW",
"community": "Varsity",
"postal_code": "T3A1X9",
"property_id": "103a4c0a45e2ca17"
},
{
"address": "165 Hunterhorn Manor NE",
"community": "Beltline",
"postal_code": "T2K6C8",
"property_id": "103a5170b9e7b220"
},
{
"address": "303 1320 21 Avenue NW",
"community": "Beltline",
"postal_code": "T2M1L4",
"property_id": "103a6da6ac0c174e"
},
{
"address": "95 Deermont Road SE",
"community": "Deer Ridge",
"postal_code": "T2J5T6",
"property_id": "103a710f68ce2f4"
},
{
"address": "3410 80 Street NW",
"community": "Bowness",
"postal_code": "T3B2B9",
"property_id": "103a7cdf8439aefa"
},
{
"address": "210 Cougarstone Gardens SW",
"community": "Beltline",
"postal_code": "T3H4W6",
"property_id": "103aa9084dc45539"
},
{
"address": "131 Auburn Sound View SE",
"community": "Auburn Bay",
"postal_code": "T3M0E1",
"property_id": "103ab7dc3cbd0183"
},
{
"address": "147 Woodborough Road SW",
"community": "Woodbine",
"postal_code": "T2W5C2",
"property_id": "103ac194586008a2"
},
{
"address": "108 Harvest Glen Rise NE",
"community": "Harvest Hills",
"postal_code": "T3K4C1",
"property_id": "103ac433652839e2"
},
{
"address": "104 Somerglen Common SW",
"community": "Somerset",
"postal_code": "T2Y4A3",
"property_id": "103af336812a3b1b"
},
{
"address": "106 2015 11 Avenue SW",
"community": "Beltline",
"postal_code": "T3C0P2",
"property_id": "103af81683816279"
},
{
"address": "57 Elveden Drive SW",
"community": "Springbank Hill",
"postal_code": "T3H3X8",
"property_id": "103b35cc5be96cc"
},
{
"address": "40 Evansdale Landng NW",
"community": "Beltline",
"postal_code": "T3P0C8",
"property_id": "103b5362a1cdfbd8"
},
{
"address": "4307 33 Avenue SW",
"community": "Glenbrook",
"postal_code": "T3E0Y3",
"property_id": "103b571a35dd2cdd"
},
{
"address": "98 Country Hills Drive NW",
"community": "Country Hills",
"postal_code": "T3K4X2",
"property_id": "103b5aa94f6b0ad1"
},
{
"address": "215 Saddlecrest Grove NE",
"community": "Saddle Ridge",
"postal_code": "T3J2K4",
"property_id": "103b966899e710b7"
},
{
"address": "10 Varsconna Place NW",
"community": "Varsity",
"postal_code": "T3A0B4",
"property_id": "103ba1788fdd5d24"
},
{
"address": "464 Cedarpark Drive SW",
"community": "Cedarbrae",
"postal_code": "T2W2J7",
"property_id": "103bb28e921eb0b7"
},
{
"address": "3423 31 Street SW",
"community": "Rutland Park",
"postal_code": "T3E2P3",
"property_id": "103bec2946d91e"
},
{
"address": "H 2410 2 Avenue SE",
"community": "Beltline",
"postal_code": "T2E6J9",
"property_id": "103c076b085840b9"
},
{
"address": "1416 Acadia Drive SE",
"community": "Lake Bonavista",
"postal_code": "T2J3B1",
"property_id": "103c69d8274b82b0"
},
{
"address": "211 Cedarwood Road SW",
"community": "Cedarbrae",
"postal_code": "T2W3G8",
"property_id": "103c8c5b81be4baf"
},
{
"address": "6 Shannon Crescent SW",
"community": "Shawnessy",
"postal_code": "T2Y2T5",
"property_id": "103cba8913145d3a"
},
{
"address": "920 Midridge Drive SE",
"community": "Midnapore",
"postal_code": "T2X1J5",
"property_id": "103d5734ebc8fd6d"
},
{
"address": "2028 Pinepoint Road NE",
"community": "Pineridge",
"postal_code": "T1Y1X1",
"property_id": "103d5f647937b358"
},
{
"address": "916 42 Street SE",
"community": "Forest Lawn",
"postal_code": "T2A1L4",
"property_id": "103d6e52387d60ec"
},
{
"address": "32 Cougar Ridge Place SW",
"community": "Cougar Ridge",
"postal_code": "T3H0V3",
"property_id": "103d83ee4a74ef08"
},
{
"address": "5 1726 11 Street SW",
"community": "Beltline",
"postal_code": "T2T3L6",
"property_id": "103da637feced091"
},
{
"address": "127 Lake Tahoe Gr SE",
"community": "Lake Bonavista",
"postal_code": "T2J7J1",
"property_id": "103db6085f778cc3"
},
{
"address": "129 Arbour Wood Mews NW",
"community": "Arbour Lake",
"postal_code": "T3G4B5",
"property_id": "103e33d477f2b03d"
},
{
"address": "949 32 Avenue NW",
"community": "Cambrian Heights",
"postal_code": "T2K0B1",
"property_id": "103e5657bbbc65a8"
},
{
"address": "376 Rundleridge Drne",
"community": "Beltline",
"postal_code": "T3M3H1",
"property_id": "103e8ee30b039cec"
},
{
"address": "1103 Colborne Crescent SW",
"community": "Upper Mount Royal",
"postal_code": "T2T0R1",
"property_id": "103ec09365a6ba88"
},
{
"address": "3778 Douglas Ridge Link SE",
"community": "Douglasdale-Glen",
"postal_code": "T2Z3H7",
"property_id": "103f020b3332179"
},
{
"address": "1131 1235 11 Avenue SW",
"community": "Beltline",
"postal_code": "T3C0M5",
"property_id": "103f09b3530e6b0a"
},
{
"address": "81 Tuscany Springs Garden NW",
"community": "Tuscany",
"postal_code": "T3L2M2",
"property_id": "103f2364170b3f69"
},
{
"address": "44 Tuscany Springs Way NW",
"community": "Tuscany",
"postal_code": "T3L2N3",
"property_id": "103f7661f8b64526"
},
{
"address": "518 Rochester Terrace NW",
"community": "Haskayne",
"postal_code": "T3L0H5",
"property_id": "103f92f6cf7bbdd9"
},
{
"address": "102 Bridlewood Way SW",
"community": "Bridlewood",
"postal_code": "T2Y3S8",
"property_id": "103fc1ee3b6bda3b"
},
{
"address": "301 520 57 Avenue SW",
"community": "Beltline",
"postal_code": "T2V0H2",
"property_id": "103ffdb434b20785"
},
{
"address": "103 Sierra Morena Circle SW",
"community": "Signal Hill",
"postal_code": "T3H2X1",
"property_id": "10403c1b3c78ba6a"
},
{
"address": "209 1515 12 Street SW",
"community": "Beltline",
"postal_code": "T3C1C7",
"property_id": "10403d64e97bd17b"
},
{
"address": "720 120 Avenue SE",
"community": "Lake Bonavista",
"postal_code": "T2J2K4",
"property_id": "104055f6488dc279"
},
{
"address": "17 Couture Crescent SW",
"community": "Garrison Green",
"postal_code": "T3E7R3",
"property_id": "1040bd9352572246"
},
{
"address": "31 Lake Sundance Place SE",
"community": "Lake Bonavista",
"postal_code": "T2J2S9",
"property_id": "1040c632b1abec70"
},
{
"address": "12 La Valencia Garden NE",
"community": "Monterey Park",
"postal_code": "T1Y7M1",
"property_id": "1040ce44e953b486"
},
{
"address": "2622 24A Street SW",
"community": "Richmond",
"postal_code": "T3E1W3",
"property_id": "1040f604189b7ca5"
},
{
"address": "2015 Palliser Drive Southwest",
"community": "Beltline",
"postal_code": "T3M3H1",
"property_id": "10413c0352c2918"
},
{
"address": "252 McKenna Lane SE",
"community": "Beltline",
"postal_code": "T2Z1X9",
"property_id": "10413f6ba4d29935"
},
{
"address": "127 Covepark Green NE",
"community": "Coventry Hills",
"postal_code": "T3K6L2",
"property_id": "1041586737b52150"
},
{
"address": "118 2939 26 Avenue SE",
"community": "Beltline",
"postal_code": "T2B1Y9",
"property_id": "1041777e0dc73f22"
},
{
"address": "6723 26 Avenue NE",
"community": "Pineridge",
"postal_code": "T1Y6M7",
"property_id": "10417e1883f7db05"
},
{
"address": "175 Falshire Drive NE",
"community": "Falconridge",
"postal_code": "T3J1P7",
"property_id": "10418e79132d92cf"
},
{
"address": "4 Chapalina Manor SE",
"community": "Chaparral",
"postal_code": "T2X3P3",
"property_id": "10421c0e707a6985"
},
{
"address": "2106 4 Avenue NW",
"community": "West Hillhurst",
"postal_code": "T2N0N5",
"property_id": "104265fae89c5d87"
},
{
"address": "2811 49 Street SW",
"community": "Glenbrook",
"postal_code": "T3E3X9",
"property_id": "104274531086c707"
},
{
"address": "39 Hendon Drive NW",
"community": "Highwood",
"postal_code": "T2K1Y6",
"property_id": "1042850e510ad0"
},
{
"address": "403 4650 50 Avenue SW",
"community": "Beltline",
"postal_code": "T3E8C4",
"property_id": "1042a0d56e6a4c5"
},
{
"address": "174 Cityside Common NE",
"community": "Cityscape",
"postal_code": "T3N1N9",
"property_id": "1042c0939bf1a0cb"
},
{
"address": "9 Shawfield Way SW",
"community": "Shawnessy",
"postal_code": "T2Y2X9",
"property_id": "10433a3f456af821"
},
{
"address": "160 Tuscany Springs Way NW",
"community": "Tuscany",
"postal_code": "T3L2L5",
"property_id": "1043fdbcfed63d91"
},
{
"address": "320 Pinewind Close NE",
"community": "Pineridge",
"postal_code": "T1Y2H6",
"property_id": "10442f63652470ae"
},
{
"address": "164 Tuscany Springs Circle NW",
"community": "Tuscany",
"postal_code": "T3L2L1",
"property_id": "104497d156ad1e29"
},
{
"address": "7927 Laguna Way NE",
"community": "Monterey Park",
"postal_code": "T1Y7C2",
"property_id": "1044b75fc4a9eaf2"
},
{
"address": "197 Cranberry Square SE",
"community": "Cranston",
"postal_code": "T3M1J4",
"property_id": "1044c677c0060361"
},
{
"address": "2406 505 6 Street SW",
"community": "Beltline",
"postal_code": "T2P1X5",
"property_id": "1044eab493e57723"
},
{
"address": "2631 Lionel Crescent SW",
"community": "Lakeview",
"postal_code": "T3E6B1",
"property_id": "1044ee14caad9d04"
},
{
"address": "800 8 Street Southeast",
"community": "Beltline",
"postal_code": "T3M3H1",
"property_id": "10452b880ab3d424"
},
{
"address": "33 Rundlelawn Close NE",
"community": "Rundle",
"postal_code": "T1Y4A6",
"property_id": "104541b13d9b2f10"
},
{
"address": "41 Cramond Crescent SE",
"community": "Cranston",
"postal_code": "T3M1B8",
"property_id": "1045450dd561be44"
},
{
"address": "22 Heirloom Manor SE",
"community": "Rangeview",
"postal_code": "T3S0H2",
"property_id": "104549b5ab5fc865"
},
{
"address": "552 Lake Moraine Gr SE",
"community": "Lake Bonavista",
"postal_code": "T2J7J1",
"property_id": "104556bb1afca481"
},
{
"address": "84 Cranfield Circle SE",
"community": "Cranston",
"postal_code": "T3M1H1",
"property_id": "10455b20a34ebfc7"
},
{
"address": "116 Maitland Road NE",
"community": "Marlborough Park",
"postal_code": "T2A4Z2",
"property_id": "104576d4c4db660"
},
{
"address": "112 Oakridge Place SW",
"community": "Oakridge",
"postal_code": "T2V1V1",
"property_id": "1045abd4151a4814"
},
{
"address": "4 White Oak Crescent SW",
"community": "Wildwood",
"postal_code": "T3C3J6",
"property_id": "1045b6f48b718aa9"
},
{
"address": "90 Country Hills Crescent NW",
"community": "Country Hills",
"postal_code": "T3K5A7",
"property_id": "1045c7a58efc2fb7"
},
{
"address": "64 Falton Mews NE",
"community": "Falconridge",
"postal_code": "T3J2A6",
"property_id": "1045c945a5276bd"
},
{
"address": "357 Carringvue Place NW",
"community": "Carrington",
"postal_code": "T3P2A5",
"property_id": "1045df58b7c5179b"
},
{
"address": "233 Panamount Road NW",
"community": "Panorama Hills",
"postal_code": "T3K0H9",
"property_id": "1045e5763a456a3f"
},
{
"address": "270 Royal Oak Court NW",
"community": "Royal Oak",
"postal_code": "T3G5V3",
"property_id": "104616a25978c541"
},
{
"address": "802 921 5 Avenue SW",
"community": "Beltline",
"postal_code": "T2P0N9",
"property_id": "104635bdf843baf9"
},
{
"address": "276 Pinemill Road NE",
"community": "Pineridge",
"postal_code": "T1Y2E2",
"property_id": "104670733c125762"
},
{
"address": "192 New Brighton Gr SE",
"community": "New Brighton",
"postal_code": "T2Z0T8",
"property_id": "10469a57199a863a"
},
{
"address": "111 Pump Hill Place SW",
"community": "Pump Hill",
"postal_code": "T2V4C6",
"property_id": "10469dea3c945bdc"
},
{
"address": "2017 42 Avenue SW",
"community": "Altadore",
"postal_code": "T2T2M8",
"property_id": "1046a8c862f6b8b8"
},
{
"address": "42 Edenwold Gr NW",
"community": "Edgemont",
"postal_code": "T3A5H5",
"property_id": "1046c6e060b24594"
},
{
"address": "113 Walgrove Garden SE",
"community": "Walden",
"postal_code": "T2X4N1",
"property_id": "104710c8cfca1054"
},
{
"address": "11 Sinclair Crescent SW",
"community": "Southwood",
"postal_code": "T2W0L8",
"property_id": "10473fd7dc8fd13e"
},
{
"address": "A 2025 36 Street SE",
"community": "Beltline",
"postal_code": "T2B0X7",
"property_id": "104781d943039f86"
},
{
"address": "123 Queen Charlotte Place SE",
"community": "Queensland",
"postal_code": "T2J4H8",
"property_id": "104792c9356a5e9a"
},
{
"address": "98 Citadel Crest Circle NW",
"community": "Citadel",
"postal_code": "T3G4G3",
"property_id": "1047a50e566123c3"
},
{
"address": "130 Sunset Place SE",
"community": "Sundance",
"postal_code": "T2X3J4",
"property_id": "1047b8d5e870e951"
},
{
"address": "60 Bridlecreek Terrace SW",
"community": "Bridlewood",
"postal_code": "T2Y3N7",
"property_id": "10483200d039658d"
},
{
"address": "15 Bernard Way NW",
"community": "Beddington Heights",
"postal_code": "T3K2E7",
"property_id": "1048601f83f02eea"
},
{
"address": "151 Mount Robson Circle SE",
"community": "McKenzie Lake",
"postal_code": "T2Z2C1",
"property_id": "104864c7f9206f4c"
},
{
"address": "61 Coral Reef Crescent NE",
"community": "Coral Springs",
"postal_code": "T3J3Y4",
"property_id": "1048b41824baf119"
},
{
"address": "B 3127 37 Street SW",
"community": "Beltline",
"postal_code": "T3E3B7",
"property_id": "1048c95bd3c80758"
},
{
"address": "1207 25 Street SE",
"community": "Albert Park-Radisson Heights",
"postal_code": "T2A0X1",
"property_id": "1048f3a9b4969109"
},
{
"address": "D202 500 Eau Claire Avenue SW",
"community": "Beltline",
"postal_code": "T2P3R8",
"property_id": "10495680d802e573"
},
{
"address": "45 Douglas Park Manor SE",
"community": "Douglasdale-Glen",
"postal_code": "T2Z2L1",
"property_id": "10497444b3268984"
},
{
"address": "114 Kincora Glen Green NW",
"community": "Beltline",
"postal_code": "T3R0C1",
"property_id": "10498df38ae0f35b"
},
{
"address": "312 1320 16 Avenue SW",
"community": "Beltline",
"postal_code": "T3C3S6",
"property_id": "1049c967758316d8"
},
{
"address": "207 Cranfield Circle SE",
"community": "Cranston",
"postal_code": "T3M1G9",
"property_id": "1049e94dbea908e"
},
{
"address": "515 Foritana Road SE",
"community": "Forest Heights",
"postal_code": "T2A2B7",
"property_id": "104a1d2f9b6a1a83"
},
{
"address": "205 1224 14 Avenue SW",
"community": "Beltline",
"postal_code": "T3C0V9",
"property_id": "104a38db5339bf07"
},
{
"address": "203 132 10 Avenue NW",
"community": "Beltline",
"postal_code": "T2M0B3",
"property_id": "104a7541890d8d6d"
},
{
"address": "3020 23 Avenue SW",
"community": "Beltline",
"postal_code": "T3E0J2",
"property_id": "104ab0974389d5b7"
},
{
"address": "8 4915 35 Avenue SW",
"community": "Beltline",
"postal_code": "T3E6K9",
"property_id": "104aef3b8223f14a"
},
{
"address": "301 609 8 Street SW",
"community": "Beltline",
"postal_code": "T2P2A6",
"property_id": "104b025474b4f0b8"
},
{
"address": "209 230 90 Avenue SE",
"community": "Beltline",
"postal_code": "T2J6P6",
"property_id": "104b345cad154997"
},
{
"address": "4759 Nelson Road NW",
"community": "North Haven",
"postal_code": "T2K2L8",
"property_id": "104b369466c6de03"
},
{
"address": "634 Corner Meadows Way NE",
"community": "Cornerstone",
"postal_code": "T3N2C8",
"property_id": "104b8919515909c9"
},
{
"address": "51 Scenic Acres Drive Northwest",
"community": "Beltline",
"postal_code": "T3M3H1",
"property_id": "104ba19a5f671d1f"
},
{
"address": "136 Lake Bonavista Drive SE",
"community": "Lake Bonavista",
"postal_code": "T2J3S9",
"property_id": "104bc0e4cddf8a7"
},
{
"address": "5 2029 90 Avenue SW",
"community": "Beltline",
"postal_code": "T2V0X4",
"property_id": "104bc4d66a1a32e6"
},
{
"address": "319 Chaparral Valley Way SE",
"community": "Chaparral",
"postal_code": "T2X0Y2",
"property_id": "104bdd63f9b69fb8"
},
{
"address": "36 Riverview Mews SE",
"community": "Riverbend",
"postal_code": "T2C3Z8",
"property_id": "104bddb1f29468b7"
},
{
"address": "7439 25 Street SE",
"community": "Ogden",
"postal_code": "T2C1A3",
"property_id": "104c1f667f5d1c3b"
},
{
"address": "8181 Fortress Drive SW",
"community": "Springbank Hill",
"postal_code": "T3H4Z2",
"property_id": "104ca5ee0f3d2744"
},
{
"address": "342 Evansglen Drive NW",
"community": "Evanston",
"postal_code": "T3P0X7",
"property_id": "104d05070ff8f9"
},
{
"address": "420 Hawkland Place NW",
"community": "Hawkwood",
"postal_code": "T3G3R6",
"property_id": "104d4e9b5b8f6d2a"
},
{
"address": "24 MacEwan Park Road NW",
"community": "Macewan",
"postal_code": "T3K3G4",
"property_id": "104da202f97f1815"
},
{
"address": "151 Valley Ridge Green NW",
"community": "Beltline",
"postal_code": "T3B5L6",
"property_id": "104dda62119eec5b"
},
{
"address": "9323 Albany Place SE",
"community": "Acadia",
"postal_code": "T2J0Z9",
"property_id": "104df35f7cdd27b0"
},
{
"address": "172 Cranleigh Terrace SE",
"community": "Cranston",
"postal_code": "T3M0G4",
"property_id": "104df3d8c88517c0"
},
{
"address": "4134 7 Avenue SW",
"community": "Rosscarrock",
"postal_code": "T3C0E2",
"property_id": "104e0af38bff0970"
},
{
"address": "2609 618 5 Avenue SW",
"community": "Beltline",
"postal_code": "T2P0M7",
"property_id": "104e1a0ee9c4af46"
},
{
"address": "240 21 Avenue NW",
"community": "Tuxedo park",
"postal_code": "T2M1J3",
"property_id": "104e314e3dad236a"
},
{
"address": "18 Millrise Mews SW",
"community": "Millrise",
"postal_code": "T2Y3E3",
"property_id": "104e4005e880090d"
},
{
"address": "943 39 Street SW",
"community": "Rosscarrock",
"postal_code": "T3C1V1",
"property_id": "104ecec6fc5d9171"
},
{
"address": "102 Hidden Crescent NW",
"community": "Hidden Valley",
"postal_code": "T3A5L4",
"property_id": "104ef6b066c98c9e"
},
{
"address": "6211 72 Street NW",
"community": "Silver Springs",
"postal_code": "T3B3V9",
"property_id": "104f1ab616d96934"
},
{
"address": "1003 121 13 Avenue SW",
"community": "Beltline",
"postal_code": "T2R0Z2",
"property_id": "104f4084bc33365f"
},
{
"address": "202 Homestead Park NE",
"community": "Homestead",
"postal_code": "T3J2K6",
"property_id": "104f5a7a735865f9"
},
{
"address": "87 Lewiston Drive Northeast",
"community": "Beltline",
"postal_code": "T3M3H1",
"property_id": "104f86fafc1838f3"
},
{
"address": "12 Del Ray Crescent NE",
"community": "Monterey Park",
"postal_code": "T1Y6V8",
"property_id": "104f8cdd848d6b1e"
},
{
"address": "145 Coverdale Road NE",
"community": "Coventry Hills",
"postal_code": "T3K4J8",
"property_id": "104f8dc1400ee869"
},
{
"address": "402 1212 13 Avenue SW",
"community": "Beltline",
"postal_code": "T3C0T1",
"property_id": "104f92c398f8dd2"
},
{
"address": "311 3600 Brenner Drive NW",
"community": "Brentwood",
"postal_code": "T2L1Y2",
"property_id": "104fe8a157de2322"
},
{
"address": "356 Cranberry Circle SE",
"community": "Cranston",
"postal_code": "T3M0L8",
"property_id": "104ffeed3c74729f"
},
{
"address": "45 Harvest Grove Green NE",
"community": "Beltline",
"postal_code": "T3K4W5",
"property_id": "105017056749067e"
},
{
"address": "6011 Dalford Road NW",
"community": "Dalhousie",
"postal_code": "T3A1L3",
"property_id": "105019a0c3b7b2c3"
},
{
"address": "8532 Fairmount Drive SE",
"community": "Acadia",
"postal_code": "T2H0Z1",
"property_id": "10502f2cde5e6c3a"
},
{
"address": "152 Redstone Park NE",
"community": "Redstone",
"postal_code": "T3N0P7",
"property_id": "10502fb665625f55"
},
{
"address": "50 Aspen Hills Manor SW",
"community": "Aspen Woods",
"postal_code": "T3H0G6",
"property_id": "10503c8fc7952677"
},
{
"address": "141 Citadel Gardens NW",
"community": "Beltline",
"postal_code": "T3G3X6",
"property_id": "10503f11ece35598"
},
{
"address": "96 Copperstone Gardens SE",
"community": "Beltline",
"postal_code": "T2Z0R7",
"property_id": "1050b45497f3b77c"
},
{
"address": "63 Mystic Ridge Way SW",
"community": "Springbank Hill",
"postal_code": "T3H1S7",
"property_id": "1050d2f0a0253ffe"
},
{
"address": "29 Panton View NW",
"community": "Panorama Hills",
"postal_code": "T3K0W2",
"property_id": "1050d997756da9ce"
},
{
"address": "376 Woodfield Place SW",
"community": "Woodbine",
"postal_code": "T2W3Y1",
"property_id": "1050e58dead47abc"
},
{
"address": "39 Hidden Creek Bay NW",
"community": "Hidden Valley",
"postal_code": "T3A6H4",
"property_id": "1051131b982201bb"
},
{
"address": "173 Somerside Gr SW",
"community": "Somerset",
"postal_code": "T2Y4M1",
"property_id": "10514df1de386a00"
},
{
"address": "120 Castleridge Way Northeast",
"community": "Beltline",
"postal_code": "T3M3H1",
"property_id": "105189a317ce0785"
},
{
"address": "7508 Hunterfield Road NW",
"community": "Huntington Hills",
"postal_code": "T2K4L1",
"property_id": "1051b71b1a6cd632"
},
{
"address": "24 Cedargrove Road SW",
"community": "Cedarbrae",
"postal_code": "T2W4T9",
"property_id": "1051b95d0159cff4"
},
{
"address": "226 New Brighton Ro SE",
"community": "New Brighton",
"postal_code": "T2Z0T8",
"property_id": "1051d1d42b970a6e"
},
{
"address": "2319 51 Street NE",
"community": "Rundle",
"postal_code": "T1Y1C2",
"property_id": "1051dec0db142497"
},
{
"address": "35 Mount Apex Gr SE",
"community": "McKenzie Lake",
"postal_code": "T2Z3N8",
"property_id": "1051f1961c1c55b1"
},
{
"address": "185 Auburn Bay Boulevard SE",
"community": "Auburn Bay",
"postal_code": "T3M0E8",
"property_id": "1051f73252d593b3"
},
{
"address": "257 Shawfield Road SW",
"community": "Shawnessy",
"postal_code": "T2Y2W2",
"property_id": "105235bbcc810cd0"
},
{
"address": "219 Scenic Way NW",
"community": "Scenic Acres",
"postal_code": "T3L1B6",
"property_id": "10527ad81d50ea7c"
},
{
"address": "422 New Brighton Place SE",
"community": "New Brighton",
"postal_code": "T2Z4W6",
"property_id": "1052a51f493bf78e"
},
{
"address": "115 McKenna Crescent SE",
"community": "McKenzie Lake",
"postal_code": "T2Z1Y2",
"property_id": "1052b89c3a91514d"
},
{
"address": "2109 Hope Street SW",
"community": "Upper Mount Royal",
"postal_code": "T2T0L4",
"property_id": "1052ba0ee755829c"
},
{
"address": "B 20 Hilton Avenue NW",
"community": "Beltline",
"postal_code": "T2K2H2",
"property_id": "1052da9d22013a6c"
},
{
"address": "122 Somercrest Gardens SW",
"community": "Beltline",
"postal_code": "T2Y3K5",
"property_id": "105319f61574ab8d"
},
{
"address": "350 3545 32 Avenue NE",
"community": "Beltline",
"postal_code": "T1Y6M6",
"property_id": "10531d4ebb517b2"
},
{
"address": "1009 609 8 Street SW",
"community": "Beltline",
"postal_code": "T2P2A6",
"property_id": "1053b1862f194911"
},
{
"address": "232 Belmont Park Southwest",
"community": "Beltline",
"postal_code": "T3M3H1",
"property_id": "1053de5fb1a15db2"
},
{
"address": "71 Cougar Ridge Crescent SW",
"community": "Cougar Ridge",
"postal_code": "T3H5L2",
"property_id": "10540b45a2d9d8ae"
},
{
"address": "1407 42 Street SW",
"community": "Rosscarrock",
"postal_code": "T3C1Z4",
"property_id": "1054be66f402476c"
},
{
"address": "1308 Mapleglade Crescent SE",
"community": "Maple Ridge",
"postal_code": "T2J2H3",
"property_id": "1054d4dd160e2774"
},
{
"address": "50 Marthas Haven Place NE",
"community": "Martindale",
"postal_code": "T3J3W2",
"property_id": "10550b8f5bcb0e82"
},
{
"address": "771 New Brighton Drive SE",
"community": "New Brighton",
"postal_code": "T2Z0Z9",
"property_id": "10550c8d14913b71"
},
{
"address": "112 Coventry Circle NE",
"community": "Coventry Hills",
"postal_code": "T3K4Y9",
"property_id": "10550ec8525c49db"
},
{
"address": "1314 A 15 Avenue SW",
"community": "Beltline",
"postal_code": "T3C0X7",
"property_id": "105519fa4ccab461"
},
{
"address": "8 Cityscape Pssge NE",
"community": "Beltline",
"postal_code": "T3N0S3",
"property_id": "10551fe0eedff444"
},
{
"address": "14 Mount Yamnuska Court SE",
"community": "McKenzie Lake",
"postal_code": "T2Z2Z6",
"property_id": "105565bbdfbfe2cf"
},
{
"address": "18 Chaparral Valley Green SE",
"community": "Beltline",
"postal_code": "T2X0M3",
"property_id": "1055b83a900d85d3"
},
{
"address": "954 Drury Avenue NE",
"community": "Bridgeland-Riverside",
"postal_code": "T2E0M2",
"property_id": "1055c0ec8ae6309d"
},
{
"address": "3404 114 Avenue SE",
"community": "Beltline",
"postal_code": "T2Z3V6",
"property_id": "1055db0c43975d63"
},
{
"address": "54 Rowmont Link NW",
"community": "Haskayne",
"postal_code": "T3L0H5",
"property_id": "1055f97323e53f25"
},
{
"address": "12 Scimitar Circle NW",
"community": "Scenic Acres",
"postal_code": "T3L2C8",
"property_id": "1055fafb62c4df1e"
},
{
"address": "1779 41 Street NE",
"community": "Rundle",
"postal_code": "T1Y2L4",
"property_id": "105638c73541f6aa"
},
{
"address": "1219 18 Street NW",
"community": "Hounsfield Heights-Briar Hill",
"postal_code": "T2N2G8",
"property_id": "10564fb894e319b0"
},
{
"address": "95 Cranbrook Lane SE",
"community": "Cranston",
"postal_code": "T3M2J5",
"property_id": "105655dd3e0ad5f3"
},
{
"address": "2714 17 Street NW",
"community": "Beltline",
"postal_code": "T2M3S4",
"property_id": "1056606100555768"
},
{
"address": "102 Bedford Drive NE",
"community": "Beddington Heights",
"postal_code": "T3K1L4",
"property_id": "105684a66cb0f7e5"
},
{
"address": "81 Sandalwood Court NW",
"community": "Sandstone Valley",
"postal_code": "T3K4B7",
"property_id": "1056a43ac6320d2d"
},
{
"address": "1831 62 Avenue SE",
"community": "Ogden",
"postal_code": "T2C0B6",
"property_id": "1056e2e0ba476d5a"
},
{
"address": "58 Aspen Hills Way SW",
"community": "Aspen Woods",
"postal_code": "T3H0G6",
"property_id": "1056e600ec7b0f07"
},
{
"address": "201 807 4 Avenue NW",
"community": "Beltline",
"postal_code": "T2N0M9",
"property_id": "10570f64c30df36c"
},
{
"address": "19 Beacham Rise NW",
"community": "Beddington Heights",
"postal_code": "T3K1S1",
"property_id": "10571fa01eb09c1b"
},
{
"address": "9947 Scurfield Drive NW",
"community": "Scenic Acres",
"postal_code": "T3L1V9",
"property_id": "10576063a8d61218"
},
{
"address": "2003 35 Street SW",
"community": "Beltline",
"postal_code": "T3E2X5",
"property_id": "105760c435514112"
},
{
"address": "1612 Remington Road NE",
"community": "Renfrew",
"postal_code": "T2E5K5",
"property_id": "10576fee758d248a"
},
{
"address": "202 238 90 Avenue SE",
"community": "Beltline",
"postal_code": "T2J6P6",
"property_id": "10577123332e891c"
},
{
"address": "2023 New Brighton Drive Drive SE",
"community": "Beltline",
"postal_code": "T2Z4G8",
"property_id": "10577630cdb7af7"
},
{
"address": "1432 45 Street SW",
"community": "Beltline",
"postal_code": "T3C2C2",
"property_id": "10578e4825d1ecec"
},
{
"address": "37 Country Hills Terrace Northwest",
"community": "Beltline",
"postal_code": "T3M3H1",
"property_id": "10578edbe6638547"
},
{
"address": "3407 Boulton Road NW",
"community": "Brentwood",
"postal_code": "T2L1M5",
"property_id": "1057c779a50b9f65"
},
{
"address": "1417 Lake Fraser Gr SE",
"community": "Lake Bonavista",
"postal_code": "T2J7J1",
"property_id": "1057e4248661d8c0"
},
{
"address": "24 Arbour Wood Crescent NW",
"community": "Arbour Lake",
"postal_code": "T3G4A9",
"property_id": "1057f250311b975d"
},
{
"address": "102 515 19 Avenue SW",
"community": "Beltline",
"postal_code": "T2S0E3",
"property_id": "1058b6c8c544b0a7"
},
{
"address": "11 518 22 Avenue SW",
"community": "Beltline",
"postal_code": "T2S0H6",
"property_id": "1058cebd864b9cdc"
},
{
"address": "178 Saddlemont Boulevard NE",
"community": "Saddle Ridge",
"postal_code": "T3J5E5",
"property_id": "1058d93beac0ffb8"
},
{
"address": "286 Catalina Place NE",
"community": "Monterey Park",
"postal_code": "T1Y6S2",
"property_id": "1059d548f73500da"
},
{
"address": "104 Auburn Glen Heights SE",
"community": "Auburn Bay",
"postal_code": "T3M0N1",
"property_id": "1059e347d20c703f"
},
{
"address": "1036 Bridlemeadows Manor SW",
"community": "Bridlewood",
"postal_code": "T2Y4K9",
"property_id": "1059eae3670030da"
},
{
"address": "16268 10 Street SW",
"community": "Shawnessy",
"postal_code": "T2Y2W2",
"property_id": "1059fca5133bd026"
},
{
"address": "126 Inverness Park SE",
"community": "McKenzie Towne",
"postal_code": "T2Z3E2",
"property_id": "105a01e582fd30ec"
},
{
"address": "319 19 Street NW",
"community": "Beltline",
"postal_code": "T2N2J2",
"property_id": "105a56c02a8f7741"
},
{
"address": "125 Bridlerange Circle SW",
"community": "Bridlewood",
"postal_code": "T2Y5H7",
"property_id": "105a7f36cb9162e2"
},
{
"address": "33 Mount Kidd Garden SE",
"community": "McKenzie Lake",
"postal_code": "T2Z3N8",
"property_id": "105a95a4ddb8bdf7"
},
{
"address": "164 Walden Prairie SE",
"community": "Walden",
"postal_code": "T2X4N1",
"property_id": "105a962e83f34673"
},
{
"address": "103 Royal Elm Way NW",
"community": "Royal Oak",
"postal_code": "T3G5P7",
"property_id": "105ab60013d8de3e"
},
{
"address": "6628 37 Street SW",
"community": "Lakeview",
"postal_code": "T3E5M9",
"property_id": "105af485ebc9e033"
},
{
"address": "23 Berwick Crescent NW",
"community": "Beddington Heights",
"postal_code": "T3K1P7",
"property_id": "105aff2bbd38d8ba"
},
{
"address": "517 30 Avenue NE",
"community": "Winston Heights-Mountview",
"postal_code": "T2E2E5",
"property_id": "105b01c3167f3d9e"
},
{
"address": "203 2725 12 Street NE",
"community": "Beltline",
"postal_code": "T2E7J2",
"property_id": "105b11b596c7fe8c"
},
{
"address": "9 Walcrest Gate SE",
"community": "Walden",
"postal_code": "T2X4G3",
"property_id": "105b200c481f59f6"
},
{
"address": "516 Norfolk Way NW",
"community": "North Haven Upper",
"postal_code": "T2K5L9",
"property_id": "105b903eef55034a"
},
{
"address": "45 Arbour Wood Place NW",
"community": "Arbour Lake",
"postal_code": "T3G4A7",
"property_id": "105b9202e16490cd"
},
{
"address": "402 2611 15 Avenue SE",
"community": "Beltline",
"postal_code": "T2A0L6",
"property_id": "105ba27e8abed3c7"
},
{
"address": "510 1710 Radisson Drive SE",
"community": "Albert Park-Radisson Heights",
"postal_code": "T2A7E9",
"property_id": "105bc7cc053767be"
},
{
"address": "9 Simcoe Bay SW",
"community": "Signal Hill",
"postal_code": "T3H4K7",
"property_id": "105c243868844c69"
},
{
"address": "39 Everoak Gr SW",
"community": "Evergreen",
"postal_code": "T2Y0L1",
"property_id": "105c7b5274762382"
},
{
"address": "45 Country Hills Terrace NW",
"community": "Country Hills",
"postal_code": "T3K4S5",
"property_id": "105ca1b6255a03e4"
},
{
"address": "99 Laguna Circle NE",
"community": "Monterey Park",
"postal_code": "T1Y6W3",
"property_id": "105cfb54ecbbdb77"
},
{
"address": "143 Pumpvalley Court SW",
"community": "Pump Hill",
"postal_code": "T2V5E2",
"property_id": "105d053dd5f2ed5c"
},
{
"address": "139 McKinnon Place NE",
"community": "Mayland Heights",
"postal_code": "T2E7B8",
"property_id": "105d141e56df19c2"
},
{
"address": "160 Sherview Heights NW",
"community": "Sherwood",
"postal_code": "T3R0Y8",
"property_id": "105d7a7620ac772b"
},
{
"address": "176 Springbluff Heights SW",
"community": "Springbank Hill",
"postal_code": "T3H5B8",
"property_id": "105d7ebfec4eef8d"
},
{
"address": "13 Martindale Crescent NE",
"community": "Martindale",
"postal_code": "T3J2W4",
"property_id": "105d8fbf9d79cf6d"
},
{
"address": "108 Aspen Summit Circle SW",
"community": "Aspen Woods",
"postal_code": "T3H0Z6",
"property_id": "105dcb53bde453c6"
},
{
"address": "104 1701 35 Street SE",
"community": "Beltline",
"postal_code": "T2A1B4",
"property_id": "105e072b347768e1"
},
{
"address": "1620 47 Street SW",
"community": "Westgate",
"postal_code": "T3C2C8",
"property_id": "105e0ff544cfbad9"
},
{
"address": "27 Deerbrook Road SE",
"community": "Deer Run",
"postal_code": "T2J6G5",
"property_id": "105e2b60c53da6c"
},
{
"address": "43 Cranleigh Close SE",
"community": "Cranston",
"postal_code": "T3M1H6",
"property_id": "105e7331623ee96f"
},
{
"address": "104 2420 2 Avenue NW",
"community": "Beltline",
"postal_code": "T2N0H4",
"property_id": "105e91594584b59"
},
{
"address": "1403 3600 Brenner Drive NW",
"community": "Brentwood",
"postal_code": "T2L1Y2",
"property_id": "105ee4ff72296903"
},
{
"address": "26 Rockford Park NW",
"community": "Rocky Ridge",
"postal_code": "T3G5K7",
"property_id": "105f23c67de01582"
},
{
"address": "2831 Dovely Parade SE",
"community": "Beltline",
"postal_code": "T2B3G9",
"property_id": "105f8f4c9628a363"
},
{
"address": "C309 5735 Dalgetty Drive NW",
"community": "Dalhousie",
"postal_code": "T3A2L4",
"property_id": "105faecf47efa1eb"
},
{
"address": "628 24 Avenue NW",
"community": "Mount Pleasant",
"postal_code": "T2M1X5",
"property_id": "105fc3588dda64a5"
},
{
"address": "24 Douglas Glen Place SE",
"community": "Douglasdale-Glen",
"postal_code": "T2Z2M9",
"property_id": "105fc3891f1c4c41"
},
{
"address": "91 Scenic Cove Circle NW",
"community": "Scenic Acres",
"postal_code": "T3L1M2",
"property_id": "106024b5faf1ec88"
},
{
"address": "188 Tuscany Valley Drive Northwest",
"community": "Beltline",
"postal_code": "T3M3H1",
"property_id": "10604589033c66d9"
},
{
"address": "206 1239 12 Avenue SW",
"community": "Beltline",
"postal_code": "T3C3R8",
"property_id": "1060d6f608fc468f"
},
{
"address": "23 Belmont Gardens SW",
"community": "Belmont",
"postal_code": "T2X4H8",
"property_id": "1060ec8d5fe0f47d"
},
{
"address": "42 Prestwick Landng SE",
"community": "Beltline",
"postal_code": "T2Z3S3",
"property_id": "1060fac106a8cb9a"
},
{
"address": "244 Lucas Way NW",
"community": "Livingston",
"postal_code": "T3P1M4",
"property_id": "10613c674a2e249"
},
{
"address": "B 117 18 Avenue NW",
"community": "Beltline",
"postal_code": "T2M0S9",
"property_id": "10619ed778819bb"
},
{
"address": "170 Shannon Circle SW",
"community": "Shawnessy",
"postal_code": "T2Y2L1",
"property_id": "1061b6bd26e34dcc"
},
{
"address": "8408 62 Avenue NW",
"community": "Silver Springs",
"postal_code": "T3B4A7",
"property_id": "106218c0f627e38e"
},
{
"address": "181 Chaparral Common SE",
"community": "Chaparral",
"postal_code": "T2X3N7",
"property_id": "10623caedaf0b29f"
},
{
"address": "120 Oakland Place SW",
"community": "Oakridge",
"postal_code": "T2V4M8",
"property_id": "1062507214c3cece"
},
{
"address": "808 Hillcrest Avenue SW",
"community": "Upper Mount Royal",
"postal_code": "T2T0L4",
"property_id": "106286ba01760409"
},
{
"address": "10 Evansborough Crescent Northwest",
"community": "Beltline",
"postal_code": "T3M3H1",
"property_id": "1062db4fef0ba124"
},
{
"address": "36 Hutton Crescent Southwest",
"community": "Beltline",
"postal_code": "T3M3H1",
"property_id": "1062e8fe5078ff0f"
},
{
"address": "52 Tuscany Ridge Manor NW",
"community": "Tuscany",
"postal_code": "T3L0E4",
"property_id": "10632937372b3805"
},
{
"address": "323 Tremblant Heights SW",
"community": "Springbank Hill",
"postal_code": "T3H0Z9",
"property_id": "10634ffad26e0840"
},
{
"address": "176 Cougartown Close SW",
"community": "Cougar Ridge",
"postal_code": "T3H0B1",
"property_id": "10635db13fcca35d"
},
{
"address": "128 Tararidge Close NE",
"community": "Taradale",
"postal_code": "T3J2P6",
"property_id": "106373c1b99d61b7"
},
{
"address": "4115 67 Street Northwest",
"community": "Beltline",
"postal_code": "T3M3H1",
"property_id": "1063854db393d9a9"
},
{
"address": "108 Silver Springs Gr NW",
"community": "Silver Springs",
"postal_code": "T3B5H4",
"property_id": "1063976a4414d04f"
},
{
"address": "364 Greenwich Drive NW",
"community": "Greenwood-Greenbriar",
"postal_code": "T3B6P4",
"property_id": "1063c48c09ae7acf"
},
{
"address": "5704 11 Street NW",
"community": "North Haven Upper",
"postal_code": "T2K5P3",
"property_id": "1063cb18cdefe09b"
},
{
"address": "222 Magnolia Way SE",
"community": "Mahogany",
"postal_code": "T3M2W7",
"property_id": "1063e88a78dd4b2a"
},
{
"address": "298 Evanspark Circle NW",
"community": "Evanston",
"postal_code": "T3P0A6",
"property_id": "1063ec13cfbcf314"
},
{
"address": "6263 Saddlehorn Drive NE",
"community": "Saddle Ridge",
"postal_code": "T3J4M5",
"property_id": "106441176d2e4bd6"
},
{
"address": "3206 50 Street SW",
"community": "Glenbrook",
"postal_code": "T3E6P6",
"property_id": "106441c96a31ba0"
},
{
"address": "14 Harmon Place SW",
"community": "Haysboro",
"postal_code": "T2V2Z9",
"property_id": "10645b1e28bd203a"
},
{
"address": "4227 Britannia Lane SW",
"community": "Britannia",
"postal_code": "T2S0Z8",
"property_id": "106484ecec1afe2f"
},
{
"address": "35 Scenic Cove Court NW",
"community": "Scenic Acres",
"postal_code": "T3L1N2",
"property_id": "106493daeac75dbb"
},
{
"address": "34 Cranbrook Close SE",
"community": "Cranston",
"postal_code": "T3M2X5",
"property_id": "1064aeaca8f40dbc"
},
{
"address": "793 Panatella Boulevard NW",
"community": "Panorama Hills",
"postal_code": "T3K0N8",
"property_id": "1064d72abc625821"
},
{
"address": "75 Bridlewood Garden SW",
"community": "Bridlewood",
"postal_code": "T2Y0H7",
"property_id": "1064f8df9712f85a"
},
{
"address": "389 Santana Bay NW",
"community": "Sandstone Valley",
"postal_code": "T3K3N6",
"property_id": "1064fd810b21e9c6"
},
{
"address": "406 820 67 Avenue SW",
"community": "Beltline",
"postal_code": "T2V0M5",
"property_id": "106508a3d171a894"
},
{
"address": "221 Scenic View Close NW",
"community": "Scenic Acres",
"postal_code": "T3L1Z4",
"property_id": "10650a836bd1254"
},
{
"address": "6 Commerce Street NW",
"community": "Cambrian Heights",
"postal_code": "T2K1T3",
"property_id": "10650b4f38979e95"
},
{
"address": "16 Berkley Place",
"community": "Beddington Heights",
"postal_code": "T3K1A7",
"property_id": "10651d78efeadd0d"
},
{
"address": "7 Panatella Close NW",
"community": "Panorama Hills",
"postal_code": "T3K6B3",
"property_id": "10653c0a16678957"
},
{
"address": "735 27 Avenue NW",
"community": "Mount Pleasant",
"postal_code": "T2M2J4",
"property_id": "1065622059b74660"
},
{
"address": "210 530 8 Avenue SW",
"community": "Beltline",
"postal_code": "T2P3S8",
"property_id": "10656925b3d953e3"
},
{
"address": "8 Redstone Pssge NE",
"community": "Beltline",
"postal_code": "T3N0K2",
"property_id": "10659217d522cbe5"
},
{
"address": "71 Panorama Hills Close NW",
"community": "Panorama Hills",
"postal_code": "T3K5J2",
"property_id": "1065ad13b4fa941b"
},
{
"address": "268 Cedarwood Road SW",
"community": "Cedarbrae",
"postal_code": "T2W3G7",
"property_id": "1065dbe23396e774"
},
{
"address": "236 Mount SElkirk Close SE",
"community": "McKenzie Lake",
"postal_code": "T2Z2P7",
"property_id": "106607291cbd735d"
},
{
"address": "1406 20 Avenue NW",
"community": "Capitol Hill",
"postal_code": "T2M1G5",
"property_id": "1066117babdceca0"
},
{
"address": "51 Rundleson Way NE",
"community": "Rundle",
"postal_code": "T1Y3H7",
"property_id": "10665a59d6fc9728"
},
{
"address": "2102 Westmount Road NW",
"community": "West Hillhurst",
"postal_code": "T2N3N2",
"property_id": "106689990d6c689e"
},
{
"address": "79 Edgeland Crescent NW",
"community": "Edgemont",
"postal_code": "T3A4C7",
"property_id": "1066abc9828936a5"
},
{
"address": "208 3524 31 Street NW",
"community": "Beltline",
"postal_code": "T2L2A5",
"property_id": "1066e0b73277b541"
},
{
"address": "41 6440 Centre Street NE",
"community": "Beltline",
"postal_code": "T2K0V4",
"property_id": "10670b88c2a478e0"
},
{
"address": "1307 48 Avenue NW",
"community": "North Haven",
"postal_code": "T2K0J6",
"property_id": "1067327045105d6e"
},
{
"address": "207 Marpole Bay NE",
"community": "Marlborough",
"postal_code": "T2A4W9",
"property_id": "10674cffda46c68e"
},
{
"address": "12426 Coventry Hills Way NE",
"community": "Coventry Hills",
"postal_code": "T3K4T1",
"property_id": "1067b7a37295d836"
},
{
"address": "240 Prestwick Estate Way",
"community": "McKenzie Towne",
"postal_code": "T2Z3Z1",
"property_id": "1067c8ec17c15708"
},
{
"address": "172 Taracove Estate Drive NE",
"community": "Taradale",
"postal_code": "T3J4R2",
"property_id": "1067cc327b870338"
},
{
"address": "305 Douglas Ridge Circle SE",
"community": "Douglasdale-Glen",
"postal_code": "T2Z3H5",
"property_id": "1067d1d68c80f16c"
},
{
"address": "149 Coral Keys Court NE",
"community": "Coral Springs",
"postal_code": "T3J3K5",
"property_id": "106806992c3f2b84"
},
{
"address": "127 Sandalwood Place NW",
"community": "Sandstone Valley",
"postal_code": "T3K4B5",
"property_id": "106834345f06ca58"
},
{
"address": "39 New Brighton Close SE",
"community": "New Brighton",
"postal_code": "T2Z0H7",
"property_id": "106886fcf564255c"
},
{
"address": "440 Evanston View NW",
"community": "Evanston",
"postal_code": "T3P1G1",
"property_id": "1068b3965bd25a8d"
},
{
"address": "A 1419 44 Street SE",
"community": "Beltline",
"postal_code": "T2A5E6",
"property_id": "1069266b0c0f5b9a"
},
{
"address": "26 Auburn Sound View SE",
"community": "Auburn Bay",
"postal_code": "T3M1L2",
"property_id": "10693d13e14761e8"
},
{
"address": "98 Arbour Ridge Heights NW",
"community": "Arbour Lake",
"postal_code": "T3G3Z2",
"property_id": "10694ea90154f1d2"
},
{
"address": "106 Mitchell Road NW",
"community": "Glacier Ridge",
"postal_code": "T3R2C9",
"property_id": "10695aa37779e431"
},
{
"address": "175 Tarawood Road NE",
"community": "Taradale",
"postal_code": "T3J5G4",
"property_id": "1069697af89ddf76"
},
{
"address": "4317 10 Avenue SW",
"community": "Rosscarrock",
"postal_code": "T3C0L7",
"property_id": "10696a37d8faba50"
},
{
"address": "407 123 10 Avenue SW",
"community": "Beltline",
"postal_code": "T2R1K8",
"property_id": "106971e88a4fa84"
},
{
"address": "108 Treeline Manor SW",
"community": "Alpine Park",
"postal_code": "T2Y0R6",
"property_id": "1069dc26d105706a"
},
{
"address": "316 20 Country Village Cove NE",
"community": "Country Hills Village",
"postal_code": "T3K5T9",
"property_id": "1069de8e6f067133"
},
{
"address": "57 Everhollow Avenue SW",
"community": "Evergreen",
"postal_code": "T2Y0A9",
"property_id": "1069ed8d7ada11a5"
},
{
"address": "618 Varsity Estates Crescent NW",
"community": "Varsity",
"postal_code": "T3B3C3",
"property_id": "1069f776d9b060df"
},
{
"address": "1116 35 Street SE",
"community": "Beltline",
"postal_code": "T2A1A8",
"property_id": "106a3735ca429e74"
},
{
"address": "244 Everbrook Way SW",
"community": "Evergreen",
"postal_code": "T2Y0E7",
"property_id": "106a5187c29e75d3"
},
{
"address": "100 Sun Valley Drive SE",
"community": "Sundance",
"postal_code": "T2X1W3",
"property_id": "106a52b1958f9ec7"
},
{
"address": "91 Cranbrook Lane SE",
"community": "Cranston",
"postal_code": "T3M2J5",
"property_id": "106a9c7c76f1af5d"
},
{
"address": "5811 Lakeview Drive SW",
"community": "Lakeview",
"postal_code": "T3E5S7",
"property_id": "106ab9069ae652b7"
},
{
"address": "2419 1 Avenue NW",
"community": "West Hillhurst",
"postal_code": "T2N0C1",
"property_id": "106ae97685016ad5"
},
{
"address": "74 Silverton Glen Crescent SW",
"community": "Silverado",
"postal_code": "T2X5B9",
"property_id": "106af55a3add45e8"
},
{
"address": "270 Copperstone Grove SE",
"community": "Copperfield",
"postal_code": "T2Z4X9",
"property_id": "106b514884bd2bf4"
},
{
"address": "14 Sherwood Terrace NW",
"community": "Sherwood",
"postal_code": "T3R1M6",
"property_id": "106b82526f91c21b"
},
{
"address": "35 Abbercove Lane SE",
"community": "Beltline",
"postal_code": "T2A7B5",
"property_id": "106bbccab9d0080d"
},
{
"address": "65 Silverado Skies Drive SW",
"community": "Silverado",
"postal_code": "T2X0J5",
"property_id": "106be2f6d08d2bdc"
},
{
"address": "B 2638 16 Avenue SE",
"community": "Beltline",
"postal_code": "T2A0M2",
"property_id": "106be81b4ab3af6e"
},
{
"address": "42 Cougarstone Park SW",
"community": "Cougar Ridge",
"postal_code": "T3H4Z9",
"property_id": "106bf572551b35f0"
},
{
"address": "90 Midridge Garden SE",
"community": "Midnapore",
"postal_code": "T2X1K1",
"property_id": "106bf65143048b1e"
},
{
"address": "2031 50 Avenue SW",
"community": "Beltline",
"postal_code": "T2T2W4",
"property_id": "106c00123641133b"
},
{
"address": "228 Lucas Manor NW",
"community": "Livingston",
"postal_code": "T3P1H9",
"property_id": "106c5bfed9c166c"
},
{
"address": "6604 Law Drive SW",
"community": "Lakeview",
"postal_code": "T3E6A1",
"property_id": "106c78dfd53fa694"
},
{
"address": "60 Edgedale Drive Northwest",
"community": "Beltline",
"postal_code": "T3M3H1",
"property_id": "106c824109070c4a"
},
{
"address": "88 Silverado Plains View SW",
"community": "Silverado",
"postal_code": "T2X0H4",
"property_id": "106c9987c1b749c2"
},
{
"address": "1928 50 Avenue SW",
"community": "Altadore",
"postal_code": "T2T2W2",
"property_id": "106cb1adb1ad3ce"
},
{
"address": "406 2016 34 Avenue SW",
"community": "Beltline",
"postal_code": "T2T2C3",
"property_id": "106cc1240954c16d"
},
{
"address": "88 Marthas Haven Gardens NE",
"community": "Beltline",
"postal_code": "T3J3W1",
"property_id": "106cfb84b63f58eb"
},
{
"address": "211 1055 Bow Valley Drive NE",
"community": "Beltline",
"postal_code": "T2E8A9",
"property_id": "106d0afcde3f1f49"
},
{
"address": "70 Auburn Meadows Court SE",
"community": "Auburn Bay",
"postal_code": "T3M2E3",
"property_id": "106d0c09a37a7cd8"
},
{
"address": "101 1329 9 Avenue SE",
"community": "Beltline",
"postal_code": "T2G0T2",
"property_id": "106d172576d5e436"
},
{
"address": "115 Cougar Plateau Circle SW",
"community": "Cougar Ridge",
"postal_code": "T3H5S7",
"property_id": "106d228c2a33d875"
},
{
"address": "25 12 Erin Dale Crescent SE",
"community": "Erin Woods",
"postal_code": "T2B2R2",
"property_id": "106d3adc7e0f15ab"
},
{
"address": "83 Cranfield Crescent Southeast",
"community": "Beltline",
"postal_code": "T3M3H1",
"property_id": "106d74345b68fdd6"
},
{
"address": "7 Corner Meadows Common NE",
"community": "Cornerstone",
"postal_code": "T3N1J5",
"property_id": "106d91f2b6e561a0"
},
{
"address": "73 Cranleigh Park SE",
"community": "Cranston",
"postal_code": "T3M1J1",
"property_id": "106da65c259dcc4"
},
{
"address": "A 5706 2 Street SW",
"community": "Beltline",
"postal_code": "T2H1Y6",
"property_id": "106db1317f99df3a"
},
{
"address": "314 Covewood Circle NE",
"community": "Coventry Hills",
"postal_code": "T3K5S8",
"property_id": "106dc39d4f732c1b"
},
{
"address": "160 317 7 Avenue SW",
"community": "Beltline",
"postal_code": "T2P2Y9",
"property_id": "106df30577de9db3"
},
{
"address": "102 Springborough Green SW",
"community": "Beltline",
"postal_code": "T3H5M5",
"property_id": "106e0e20386d0fe1"
},
{
"address": "1015 Thorneycroft Drive NW",
"community": "Thorncliffe",
"postal_code": "T2K3K7",
"property_id": "106e73479004c76a"
},
{
"address": "1835 13 Avenue NW",
"community": "Beltline",
"postal_code": "T2N1L4",
"property_id": "106edb39875f4608"
},
{
"address": "37 Discovery Ridge Heights SW",
"community": "Discovery Ridge",
"postal_code": "T3H5T1",
"property_id": "106f421f32ab7f9a"
},
{
"address": "301 2241 14 Street SW",
"community": "Beltline",
"postal_code": "T2T3T4",
"property_id": "106ff5cbc0ca535c"
},
{
"address": "6431 33 Avenue Northwest",
"community": "Beltline",
"postal_code": "T3M3H1",
"property_id": "106ffc68d21156c6"
},
{
"address": "327 Tremblant Heights SW",
"community": "Springbank Hill",
"postal_code": "T3H0Z9",
"property_id": "1070182f6461dfd6"
},
{
"address": "169 Taracove Road NE",
"community": "Taradale",
"postal_code": "T3J5A4",
"property_id": "10705716cd934562"
},
{
"address": "190 Tuscany Vista Point NW",
"community": "Tuscany",
"postal_code": "T3L3A1",
"property_id": "10705904fc42774"
},
{
"address": "99 Covette Green NE",
"community": "Beltline",
"postal_code": "T3K4P1",
"property_id": "107094d372c0be7a"
},
{
"address": "29 4915 35 Avenue SW",
"community": "Beltline",
"postal_code": "T3E6K9",
"property_id": "10709bde3cf01189"
},
{
"address": "1200 815 8 Avenue SW",
"community": "Beltline",
"postal_code": "T2P3P2",
"property_id": "10709c1372bd7b9d"
},
{
"address": "6027 8 Avenue SE",
"community": "Penbrooke Meadows",
"postal_code": "T2A0B3",
"property_id": "1070bdadfbd3d450"
},
{
"address": "205 Tuscany Springs Way NW",
"community": "Tuscany",
"postal_code": "T3L2X6",
"property_id": "1070d0b29a973cd1"
},
{
"address": "132 New Brighton Gr SE",
"community": "New Brighton",
"postal_code": "T2Z0T8",
"property_id": "1070e195b0e57296"
},
{
"address": "308 1309 Cameron Avenue SW",
"community": "Beltline",
"postal_code": "T2T0L2",
"property_id": "1070f095dd258ef2"
},
{
"address": "36 Falmead Bay NE",
"community": "Falconridge",
"postal_code": "T3J1H2",
"property_id": "10714920354b1aa8"
},
{
"address": "16 Panatella Lane NW",
"community": "Panorama Hills",
"postal_code": "T3K6C6",
"property_id": "10717ac26f0edb43"
},
{
"address": "27 Deer Ridge Way SE",
"community": "Deer Ridge",
"postal_code": "T2J6Y4",
"property_id": "10718f5bbcae698c"
},
{
"address": "240 17 Avenue NE",
"community": "Tuxedo park",
"postal_code": "T2E1L8",
"property_id": "107190fbdeb5112f"
},
{
"address": "83 Edgeview Heights NW",
"community": "Edgemont",
"postal_code": "T3A4W8",
"property_id": "107193bf0818e676"
},
{
"address": "135 Hidden Green NW",
"community": "Hidden Valley",
"postal_code": "T3A5K7",
"property_id": "1071a5f4bdc6d401"
},
{
"address": "116 Stratton Hill Rise SW",
"community": "Strathcona Park",
"postal_code": "T3H1X8",
"property_id": "1071ade45b408464"
},
{
"address": "27 Strathlea Place SW",
"community": "Strathcona Park",
"postal_code": "T3H4R8",
"property_id": "1071b0fb06237f97"
},
{
"address": "1841 1632 14 Avenue NW",
"community": "Beltline",
"postal_code": "T2N1M7",
"property_id": "1071b74385e110fd"
},
{
"address": "30 Covington Rise NE",
"community": "Coventry Hills",
"postal_code": "T3K4A8",
"property_id": "1071e3bc4b40c5c2"
},
{
"address": "53 Carringsby Landng NW",
"community": "Beltline",
"postal_code": "T3P1L9",
"property_id": "1072351c36bd37f0"
},
{
"address": "117 Panamount Gr NW",
"community": "Panorama Hills",
"postal_code": "T3K5Z1",
"property_id": "107270408f7bf46"
},
{
"address": "52 Walgrove Rise SE",
"community": "Walden",
"postal_code": "T2X4E6",
"property_id": "10727d27e0caf328"
},
{
"address": "6 Setonstone Manor Southeast",
"community": "Beltline",
"postal_code": "T3M3H1",
"property_id": "1072c51383b5540c"
},
{
"address": "238 Cranston Way SE",
"community": "Cranston",
"postal_code": "T3M1S3",
"property_id": "1072c6fe7a42bd83"
},
{
"address": "5219 Vandale Place NW",
"community": "Varsity",
"postal_code": "T3A0K5",
"property_id": "1072e3351a4b0c2"
},
{
"address": "228 Legacy Glen Way SE",
"community": "Legacy",
"postal_code": "T2X4G7",
"property_id": "1073196fb84941f7"
},
{
"address": "8 Hunterhorn Gate NE",
"community": "Huntington Hills",
"postal_code": "T2K6H3",
"property_id": "10731c5b5be0a72"
},
{
"address": "131 Saddlemead Gr NE",
"community": "Saddle Ridge",
"postal_code": "T3J5N9",
"property_id": "10731e13747aedea"
},
{
"address": "86 Hawkdale Circle NW",
"community": "Hawkwood",
"postal_code": "T3G3L5",
"property_id": "10731ec1d78164f5"
},
{
"address": "16 Huntham Road NE",
"community": "Huntington Hills",
"postal_code": "T2K4G1",
"property_id": "10732fca7021d9fe"
},
{
"address": "7 320 9 Street NW",
"community": "Beltline",
"postal_code": "T2N1T4",
"property_id": "107331e94dcb8280"
},
{
"address": "327 Huntbourne Hill NE",
"community": "Huntington Hills",
"postal_code": "T2K3Y5",
"property_id": "10733b164d7f43f"
},
{
"address": "130 Nolanshire Crescent NW",
"community": "Nolan Hill",
"postal_code": "T3R0P8",
"property_id": "107340aba8655abf"
},
{
"address": "120 Elgin Estates View SE",
"community": "McKenzie Towne",
"postal_code": "T2Z0N7",
"property_id": "107367cc31f832c2"
},
{
"address": "1404 Northmount Drive NW",
"community": "Brentwood",
"postal_code": "T2L0G2",
"property_id": "10736e78d4c263db"
},
{
"address": "120 Everbrook Drive SW",
"community": "Evergreen",
"postal_code": "T2Y0L6",
"property_id": "1073b6dee29a98f6"
},
{
"address": "7243 Hunterdale Road NW",
"community": "Huntington Hills",
"postal_code": "T2K4S2",
"property_id": "1073ba20312b726"
},
{
"address": "102 Sage Bluff Heights NW",
"community": "Sage Hill",
"postal_code": "T3R1T3",
"property_id": "1073f1c4423b89e5"
},
{
"address": "214 Cornerstone Circle NE",
"community": "Cornerstone",
"postal_code": "T3N1H1",
"property_id": "1073fbdd11994a2b"
},
{
"address": "3707 Glenbrook Drive SW",
"community": "Glenbrook",
"postal_code": "T3E4L8",
"property_id": "10745c1be7890391"
},
{
"address": "208 Calhoun Crescent NE",
"community": "Livingston",
"postal_code": "T3P1X8",
"property_id": "1074773b0d220b87"
},
{
"address": "6515 34 Street SW",
"community": "Lakeview",
"postal_code": "T3E5M3",
"property_id": "107561a0b8b8e9b9"
},
{
"address": "25 Panton View NW",
"community": "Panorama Hills",
"postal_code": "T3K0W2",
"property_id": "107561d01a11c427"
},
{
"address": "B 708 23 Avenue NW",
"community": "Beltline",
"postal_code": "T2M1S9",
"property_id": "107570547fbc37d3"
},
{
"address": "1308 Kerwood Crescent SW",
"community": "Kelvin Grove",
"postal_code": "T2V2N6",
"property_id": "1075a9b22021a573"
},
{
"address": "229 4628 Montgomery Boulevard NW",
"community": "Beltline",
"postal_code": "T3B0K7",
"property_id": "1075ef806d17f4c5"
},
{
"address": "40 Treeline Manor SW",
"community": "Alpine Park",
"postal_code": "T2Y0R6",
"property_id": "10760e862294bd1a"
},
{
"address": "610 Crescent Road NW",
"community": "Rosedale",
"postal_code": "T2M4A6",
"property_id": "10761f13651b2347"
},
{
"address": "3704 54 Avenue SW",
"community": "Lakeview",
"postal_code": "T3E5H4",
"property_id": "10764940f94db534"
},
{
"address": "4529 26 Avenue SE",
"community": "Dover",
"postal_code": "T2B2K4",
"property_id": "1076511e8d324e97"
},
{
"address": "716 Foritana Road SE",
"community": "Forest Heights",
"postal_code": "T2A2C1",
"property_id": "10766a5feb2367c5"
},
{
"address": "43 Harvest Lake Crescent NE",
"community": "Harvest Hills",
"postal_code": "T3K3Y7",
"property_id": "1076885da40434a9"
},
{
"address": "2505 Cherokee Drive NW",
"community": "Charleswood",
"postal_code": "T2L0X8",
"property_id": "10768ab9e19bb00f"
},
{
"address": "235 Everwillow Close SW",
"community": "Evergreen",
"postal_code": "T2Y4G6",
"property_id": "1076ac4724c0ee3a"
},
{
"address": "328 3139 Bowwood Drive NW",
"community": "Bowness",
"postal_code": "T3B5G2",
"property_id": "1076e4dab04ecfec"
},
{
"address": "71 Carrington Crescent NW",
"community": "Carrington",
"postal_code": "T3P1N6",
"property_id": "1077075491cbc223"
},
{
"address": "211 Midvalley Place SE",
"community": "Midnapore",
"postal_code": "T2X1L3",
"property_id": "10771628c506c31e"
},
{
"address": "87 Inverness Parade SE",
"community": "Beltline",
"postal_code": "T2Z3E3",
"property_id": "107726f91a4f1257"
},
{
"address": "912 Shawnee Drive SW",
"community": "Shawnee Slopes",
"postal_code": "T2Y2G9",
"property_id": "10776ea4e55dfd8a"
},
{
"address": "29 Brightondale Green SE",
"community": "Beltline",
"postal_code": "T2Z4N8",
"property_id": "107775f1c00165b2"
},
{
"address": "226 Schooner Close NW",
"community": "Scenic Acres",
"postal_code": "T3L1Y7",
"property_id": "1077777db3ebb073"
},
{
"address": "1714 605 13 Avenue SW",
"community": "Beltline",
"postal_code": "T2R0K6",
"property_id": "10778ade531e35f1"
},
{
"address": "83 Arbour Stone Close NW",
"community": "Arbour Lake",
"postal_code": "T3G4T2",
"property_id": "107793c9f6f6e065"
},
{
"address": "102 1612 24 Avenue SW",
"community": "Beltline",
"postal_code": "T2T0Y2",
"property_id": "1077a873d25f04a3"
},
{
"address": "1012 Mayland Drive NE",
"community": "Mayland Heights",
"postal_code": "T2E6C6",
"property_id": "1077d1a88e73d206"
},
{
"address": "313 11A Street NW",
"community": "Beltline",
"postal_code": "T2N1X9",
"property_id": "107805f9700b6cda"
},
{
"address": "221 Edgevalley Way NW",
"community": "Edgemont",
"postal_code": "T3A5E3",
"property_id": "107831efd46dd12a"
},
{
"address": "50 Copperstone Crescent SE",
"community": "Copperfield",
"postal_code": "T2Z0K8",
"property_id": "10788ecf536c2787"
},
{
"address": "132 Everhollow Street SW",
"community": "Evergreen",
"postal_code": "T2Y0B1",
"property_id": "1078cb7ee02c2cc5"
},
{
"address": "78 Discovery Ridge Gardens SW",
"community": "Beltline",
"postal_code": "T3H5L7",
"property_id": "1079065b2bdc73da"
},
{
"address": "14555 Parkside Drive SE",
"community": "Parkland",
"postal_code": "T2J4P3",
"property_id": "10791d9202ea21e6"
},
{
"address": "409 851 17 Avenue NW",
"community": "Beltline",
"postal_code": "T2M0P1",
"property_id": "10798c015d3f2ac4"
},
{
"address": "39 Legacy Woods Crescent SE",
"community": "Legacy",
"postal_code": "T2X2G5",
"property_id": "1079efa69acad4cb"
},
{
"address": "54 Panorama Hills Close NW",
"community": "Panorama Hills",
"postal_code": "T3K5J2",
"property_id": "107a0e1e661f8d4b"
},
{
"address": "118 Berwick Way NW",
"community": "Beddington Heights",
"postal_code": "T3K1B9",
"property_id": "107a1282ca6449b4"
},
{
"address": "6508 Silver Springs Crescent NW",
"community": "Silver Springs",
"postal_code": "T3B4C6",
"property_id": "107a1610be9a00b6"
},
{
"address": "327 1171 Bow Valley Lane NE",
"community": "Beltline",
"postal_code": "T2E8B1",
"property_id": "107a3a97061108b0"
},
{
"address": "161 Panatella Crescent NW",
"community": "Panorama Hills",
"postal_code": "T3K0M5",
"property_id": "107a4e8374bf6732"
},
{
"address": "102 B Martindale Boulevard Northeast",
"community": "Beltline",
"postal_code": "T3M3H1",
"property_id": "107a5f05569e0506"
},
{
"address": "2344 Uxbridge Drive NW",
"community": "University Heights",
"postal_code": "T2N3Z6",
"property_id": "107a9f1808388baa"
},
{
"address": "95 Templeridge Close NE",
"community": "Temple",
"postal_code": "T1Y4E1",
"property_id": "107aa0354314db20"
},
{
"address": "732 Seymour Avenue SW",
"community": "Southwood",
"postal_code": "T2W0N4",
"property_id": "107b2043a901226f"
},
{
"address": "39 Evansmeade Way NW",
"community": "Evanston",
"postal_code": "T3P1C1",
"property_id": "107b387be16c155e"
},
{
"address": "608 924 7 Avenue SW",
"community": "Beltline",
"postal_code": "T2P1A4",
"property_id": "107b413c72ab75eb"
},
{
"address": "1130 43 Street SW",
"community": "Rosscarrock",
"postal_code": "T3C1Z9",
"property_id": "107b4b9128accbfd"
},
{
"address": "40 Mount Robson Circle SE",
"community": "McKenzie Lake",
"postal_code": "T2Z2B9",
"property_id": "107b8fe6cda5f36a"
},
{
"address": "3754 Douglas Ridge Link SE",
"community": "Douglasdale-Glen",
"postal_code": "T2Z3H7",
"property_id": "107c07a11eff4df5"
},
{
"address": "314 631 17 Avenue NW",
"community": "Beltline",
"postal_code": "T2M0N6",
"property_id": "107c5366da0dc56c"
},
{
"address": "74 Kincora Landing NW",
"community": "Kincora",
"postal_code": "T3R1K8",
"property_id": "107c81cf659322b2"
},
{
"address": "4 Stradbrooke Way SW",
"community": "Strathcona Park",
"postal_code": "T3H1S4",
"property_id": "107ccdaa6570f576"
},
{
"address": "66 Masters Villas SE",
"community": "Mahogany",
"postal_code": "T3M2N4",
"property_id": "107d15cd9e9fe48a"
},
{
"address": "64 Masters Ro SE",
"community": "Mahogany",
"postal_code": "T3M3E1",
"property_id": "107d18fbce5d887f"
},
{
"address": "36 Elgin Terrace SE",
"community": "McKenzie Towne",
"postal_code": "T2Z0B7",
"property_id": "107d5e9c9d1112fb"
},
{
"address": "201 2611 15 Avenue SE",
"community": "Beltline",
"postal_code": "T2A0L6",
"property_id": "107d749b0e4b79b0"
},
{
"address": "62 Cranwell Manor SE",
"community": "Cranston",
"postal_code": "T3M1G8",
"property_id": "107d852a3abb8f58"
},
{
"address": "325 Panton Way NW",
"community": "Panorama Hills",
"postal_code": "T3K0X5",
"property_id": "107d9baf25400508"
},
{
"address": "111 Crestmont Drive SW",
"community": "Crestmont",
"postal_code": "T3B5Z6",
"property_id": "107de7adfddcdea1"
},
{
"address": "102 Abadan Crescent NE",
"community": "Abbeydale",
"postal_code": "T2A6N9",
"property_id": "107df06ef1c4ddc0"
},
{
"address": "2329 7 Street NE",
"community": "Winston Heights-Mountview",
"postal_code": "T2E3Z1",
"property_id": "107e0f206238bb70"
},
{
"address": "294 Tuscany Springs Way NW",
"community": "Tuscany",
"postal_code": "T3L2X7",
"property_id": "107e1a8d51390665"
},
{
"address": "23 Auburn Sound View SE",
"community": "Auburn Bay",
"postal_code": "T3M1L2",
"property_id": "107e41fa444539b3"
},
{
"address": "3427 Bonita Crescent NW",
"community": "Bowness",
"postal_code": "T3B2R9",
"property_id": "107e8483ae5092ad"
},
{
"address": "4778 Elgin Avenue SE",
"community": "McKenzie Towne",
"postal_code": "T2Z0M6",
"property_id": "107eab19e92a6bbe"
},
{
"address": "456 Willamina Crescent SE",
"community": "Willow Park",
"postal_code": "T2J2C1",
"property_id": "107f05dad2d3bdd3"
},
{
"address": "71 Aspen Cliff Close SW",
"community": "Aspen Woods",
"postal_code": "T3H0M1",
"property_id": "107f38a304f9f0e1"
},
{
"address": "447 29 Avenue NW",
"community": "Mount Pleasant",
"postal_code": "T2M2M4",
"property_id": "107f3e31dd68a42f"
},
{
"address": "712 26 Avenue NW",
"community": "Mount Pleasant",
"postal_code": "T2M2E7",
"property_id": "107f4145c4a262"
},
{
"address": "29 Cityline Mount NE",
"community": "Cityscape",
"postal_code": "T3N2N5",
"property_id": "107f41dc307b043a"
},
{
"address": "344 Hidden Valley Landing NW",
"community": "Hidden Valley",
"postal_code": "T3A6B9",
"property_id": "107f579aca80e1fd"
},
{
"address": "58 Westbury Place",
"community": "West Springs",
"postal_code": "T3H5B6",
"property_id": "107f7a4089a455bc"
},
{
"address": "1703 12 Avenue NE",
"community": "Mayland Heights",
"postal_code": "T2E1B4",
"property_id": "107f9ec8acbd73fa"
},
{
"address": "121 Citadel Meadow Bay NW",
"community": "Citadel",
"postal_code": "T3G4Z5",
"property_id": "107fc14c81d21aef"
},
{
"address": "271 Somerset Drive SW",
"community": "Somerset",
"postal_code": "T2Y3M1",
"property_id": "107fdd9d41023981"
},
{
"address": "72 Woodfield Green SW",
"community": "Beltline",
"postal_code": "T2W3T9",
"property_id": "107fe53f9adde319"
},
{
"address": "128 Valley Stream Close NW",
"community": "Valley Ridge",
"postal_code": "T3B5V7",
"property_id": "107ff13970b4c620"
},
{
"address": "194 Brabourne Road SW",
"community": "Braeside",
"postal_code": "T2W2W3",
"property_id": "1080049f28ee107a"
},
{
"address": "124 Marthas Manor NE",
"community": "Martindale",
"postal_code": "T3J4Y6",
"property_id": "1080558d6136bc7d"
},
{
"address": "495 Woodbine Boulevard SW",
"community": "Woodbine",
"postal_code": "T2W4P5",
"property_id": "1080820a9ed00bc"
},
{
"address": "4208 111 146 Avenue SE",
"community": "Beltline",
"postal_code": "T2X1Z1",
"property_id": "10808bd43a6b8fe5"
},
{
"address": "505 121 13 Avenue SW",
"community": "Beltline",
"postal_code": "T2R0Z2",
"property_id": "1080ce4b59c9ddb8"
},
{
"address": "231 Hawkwood Boulevard NW",
"community": "Hawkwood",
"postal_code": "T3G2Y2",
"property_id": "1080d79e929059a2"
},
{
"address": "1236 73 Avenue SW",
"community": "Kelvin Grove",
"postal_code": "T2V0S1",
"property_id": "1080e6cf6825fe2d"
},
{
"address": "1810 4 Street NW",
"community": "Mount Pleasant",
"postal_code": "T2M0N6",
"property_id": "10810ce195a703fb"
},
{
"address": "47 G Elgin Meadows Road SE",
"community": "McKenzie Towne",
"postal_code": "T2Z0M6",
"property_id": "10812ca45c885c9d"
},
{
"address": "5905 Trollinger Street NE",
"community": "Beltline",
"postal_code": "T2K3W5",
"property_id": "108142756ab71446"
},
{
"address": "5003 Centre A Street NE",
"community": "Thorncliffe",
"postal_code": "T2K1J9",
"property_id": "1081567cfb0b176"
},
{
"address": "647 Radcliffe Road SE",
"community": "Albert Park-Radisson Heights",
"postal_code": "T2A6C1",
"property_id": "108166abc0751ec7"
},
{
"address": "91 Rock Lake View NW",
"community": "Rocky Ridge",
"postal_code": "T3G0E9",
"property_id": "1082306dbf40f1df"
},
{
"address": "2228 Lake Bonavista Drive SE",
"community": "Lake Bonavista",
"postal_code": "T2J3Z6",
"property_id": "10827ef5495cc470"
},
{
"address": "9134 21 Street SE",
"community": "Riverbend",
"postal_code": "T2C4B9",
"property_id": "1082810de1869514"
},
{
"address": "6323 Centre Street NW",
"community": "Thorncliffe",
"postal_code": "T2K0V3",
"property_id": "10828fd4313ec01a"
},
{
"address": "303 Shawnessy Drive SW",
"community": "Shawnessy",
"postal_code": "T2Y1J2",
"property_id": "1082c8b95d9a7584"
},
{
"address": "1730 A Broadview Road NW",
"community": "West Hillhurst",
"postal_code": "T2N3H3",
"property_id": "1082d433f998660c"
},
{
"address": "640 Hunterplain Hill NW",
"community": "Huntington Hills",
"postal_code": "T2K4M1",
"property_id": "1082e7dcdcc4d0de"
},
{
"address": "1416 Lake Ontario Drive SE",
"community": "Bonavista Downs",
"postal_code": "T2J3G6",
"property_id": "10832f0fdb150a79"
},
{
"address": "1750 29 Street SW",
"community": "Shaganappi",
"postal_code": "T3E0A7",
"property_id": "10835ed6e7ff4f84"
},
{
"address": "305 Copperpond Landng SE",
"community": "Beltline",
"postal_code": "T2Z1G6",
"property_id": "10838b490132882f"
},
{
"address": "1007 Huntercove Place NW",
"community": "Huntington Hills",
"postal_code": "T2K4S3",
"property_id": "1083b0ea8a752690"
},
{
"address": "34 Vardell Place NW",
"community": "Varsity",
"postal_code": "T3A0B8",
"property_id": "1083ce91191fd32"
},
{
"address": "272 Chaparral Ridge Circle SE",
"community": "Chaparral",
"postal_code": "T2X3M6",
"property_id": "1083e08fcb9ac1e"
},
{
"address": "105 Auburn Shores Landng SE",
"community": "Beltline",
"postal_code": "T3M1T5",
"property_id": "10844bb54e0fe9bb"
},
{
"address": "2602 618 5 Avenue SW",
"community": "Beltline",
"postal_code": "T2P0M7",
"property_id": "1084dfa3cc4dfb4b"
},
{
"address": "32 Sage Bank Link NW",
"community": "Sage Hill",
"postal_code": "T3R0J8",
"property_id": "1084ed1e2e909e04"
},
{
"address": "23 Sunmount Crescent SE",
"community": "Sundance",
"postal_code": "T2X1V9",
"property_id": "1084f37707071ac3"
},
{
"address": "2300 308 4 Avenue SW",
"community": "Beltline",
"postal_code": "T2P0H7",
"property_id": "1084fb7324873662"
},
{
"address": "81 Saddlemead Road NE",
"community": "Saddle Ridge",
"postal_code": "T3J4J2",
"property_id": "1085163bd8737607"
},
{
"address": "498 Sunmills Drive SE",
"community": "Sundance",
"postal_code": "T2X2W5",
"property_id": "1085360755b4432e"
},
{
"address": "8 Simcoe Close SW",
"community": "Signal Hill",
"postal_code": "T3H4N2",
"property_id": "1085471c7ebde2f"
},
{
"address": "155 Citadel Close NW",
"community": "Citadel",
"postal_code": "T3G4A6",
"property_id": "108548560c66e13"
},
{
"address": "424 Foritana Road SE",
"community": "Forest Heights",
"postal_code": "T2A2B6",
"property_id": "10856039c29d7d72"
},
{
"address": "1704 2127 90 Avenue SW",
"community": "Beltline",
"postal_code": "T2V0X6",
"property_id": "10861017f4b8852f"
},
{
"address": "7223 Fleetwood Drive SE",
"community": "Fairview",
"postal_code": "T2H0X2",
"property_id": "1086372f91f89b53"
},
{
"address": "811 706 7 Avenue SW",
"community": "Beltline",
"postal_code": "T2P0Z1",
"property_id": "108727ec2fb03a56"
},
{
"address": "159 Penmeadows Close Southeast",
"community": "Beltline",
"postal_code": "T3M3H1",
"property_id": "1087820bfcb1f22"
},
{
"address": "863 Whitehill Way NE",
"community": "Whitehorn",
"postal_code": "T1Y3G1",
"property_id": "10879afb81e22979"
},
{
"address": "903 840 9 Street SW",
"community": "Beltline",
"postal_code": "T2P2T1",
"property_id": "1087eb959299b22a"
},
{
"address": "129 Cranwell Common SE",
"community": "Cranston",
"postal_code": "T3M0J5",
"property_id": "1087fc384711ab64"
},
{
"address": "68 Walden Prairie SE",
"community": "Walden",
"postal_code": "T2X4N1",
"property_id": "10881c0c40c4a953"
},
{
"address": "101 1310 14 Avenue SW",
"community": "Beltline",
"postal_code": "T3C3S3",
"property_id": "10881f23355d70b1"
},
{
"address": "201 7915 43 Avenue NW",
"community": "Beltline",
"postal_code": "T3B4R6",
"property_id": "1088315f20c749ad"
},
{
"address": "32 Erin Croft Place SE",
"community": "Erin Woods",
"postal_code": "T2B2V3",
"property_id": "10883f3a63b95dc3"
},
{
"address": "460 Bracewood Crescent SW",
"community": "Braeside",
"postal_code": "T2W3B8",
"property_id": "1088517eecbf74c7"
},
{
"address": "133 Kincora Glen Rise NW",
"community": "Kincora",
"postal_code": "T3R0B7",
"property_id": "10888b44884aa33d"
},
{
"address": "424 Homestead Grove NE",
"community": "Homestead",
"postal_code": "T3J5S1",
"property_id": "1088b0d838048a93"
},
{
"address": "436 Hawkview Manor Circle NW",
"community": "Hawkwood",
"postal_code": "T3G2Z2",
"property_id": "1088c049bae6babc"
},
{
"address": "220 Stravanan Bay SW",
"community": "Strathcona Park",
"postal_code": "T3H1H4",
"property_id": "1088c90a0c0b11a9"
},
{
"address": "119 Kincora He NW",
"community": "Kincora",
"postal_code": "T3R0V2",
"property_id": "1088dc94bee9370b"
},
{
"address": "59 Prestwick Manor SE",
"community": "McKenzie Towne",
"postal_code": "T2Z4S6",
"property_id": "1088e4d1d6337f42"
},
{
"address": "114 Valley Ponds Crescent NW",
"community": "Valley Ridge",
"postal_code": "T3B5T7",
"property_id": "1088fcb338d1c0a2"
},
{
"address": "209 6923 16 Avenue SE",
"community": "Beltline",
"postal_code": "T2A6A8",
"property_id": "1088fdb07e7ffdc5"
},
{
"address": "919 Midridge Drive SE",
"community": "Midnapore",
"postal_code": "T2X1H5",
"property_id": "108935941251d867"
},
{
"address": "75 Saddlelake Grove NE",
"community": "Saddle Ridge",
"postal_code": "T3J0P1",
"property_id": "1089c5f82afb1607"
},
{
"address": "82 Stradwick Rise SW",
"community": "Strathcona Park",
"postal_code": "T3H1J7",
"property_id": "108a3d1bb42841eb"
},
{
"address": "24 Riverbrook Road SE",
"community": "Riverbend",
"postal_code": "T2C3R1",
"property_id": "108a7af6e334b684"
},
{
"address": "15 Panatella Link NW",
"community": "Panorama Hills",
"postal_code": "T3K0T6",
"property_id": "108a9d79ed584702"
},
{
"address": "27 Sherwood He NW",
"community": "Sherwood",
"postal_code": "T3R0V3",
"property_id": "108aff629b2e4ca8"
},
{
"address": "59 Wentworth Heights SW",
"community": "West Springs",
"postal_code": "T3H5K2",
"property_id": "108b02c04f5c667c"
},
{
"address": "201 619 11 Avenue SE",
"community": "Beltline",
"postal_code": "T2G0Y8",
"property_id": "108b0b8336dfd573"
},
{
"address": "102 Heartwood Villas SE",
"community": "Rangeview",
"postal_code": "T3S0R6",
"property_id": "108b24c2d6afe8c8"
},
{
"address": "1430 21 Avenue NW",
"community": "Capitol Hill",
"postal_code": "T2M1L6",
"property_id": "108b4f2c9ac02c7f"
},
{
"address": "4412 Centre A Street Northeast",
"community": "Beltline",
"postal_code": "T3M3H1",
"property_id": "108b62d0a33831da"
},
{
"address": "D21 4501 37 Street NW",
"community": "Beltline",
"postal_code": "T2L2J5",
"property_id": "108b6534bf312312"
},
{
"address": "37 Yorkville Gr SW",
"community": "Yorkville",
"postal_code": "T2X4X4",
"property_id": "108b6ed4b463dc8a"
},
{
"address": "205 840 67 Avenue SW",
"community": "Beltline",
"postal_code": "T2V0M5",
"property_id": "108ba3d5796f9462"
},
{
"address": "173 Brightondale Prairie SE",
"community": "New Brighton",
"postal_code": "T2Z0T8",
"property_id": "108c3d1b70070682"
},
{
"address": "307 733 44 Avenue NW",
"community": "Beltline",
"postal_code": "T2K0J5",
"property_id": "108c8251b2cfb5aa"
},
{
"address": "201 Creekstone Path SW",
"community": "Pine Creek",
"postal_code": "T2X4Z4",
"property_id": "108c84f057e88d0"
},
{
"address": "79 Everwoods Park Southwest",
"community": "Beltline",
"postal_code": "T3M3H1",
"property_id": "108c99eb3a6fd898"
},
{
"address": "52 Chapala He SE",
"community": "Chaparral",
"postal_code": "T2X0N2",
"property_id": "108ca69b9849c814"
},
{
"address": "41 New Brighton Heights SE",
"community": "New Brighton",
"postal_code": "T2Z0P7",
"property_id": "108d145873ac125d"
},
{
"address": "3762 Catalina Boulevard NE",
"community": "Monterey Park",
"postal_code": "T1Y6Y2",
"property_id": "108d58afba7b100d"
},
{
"address": "8016 4A Street NE",
"community": "Huntington Hills",
"postal_code": "T2K5W8",
"property_id": "108d9300823f079c"
},
{
"address": "3726 2 Street NW",
"community": "Beltline",
"postal_code": "T2K0Y4",
"property_id": "108d97cd335961d7"
},
{
"address": "62 Tuscany Estates Point NW",
"community": "Tuscany",
"postal_code": "T3L0C3",
"property_id": "108dc03d96458021"
},
{
"address": "127 Douglas Glen Crescent SE",
"community": "Douglasdale-Glen",
"postal_code": "T2Z3M6",
"property_id": "108ddf861fc08703"
},
{
"address": "13 Evansford Grove NW",
"community": "Evanston",
"postal_code": "T3P1G7",
"property_id": "108df12ceb632d5b"
},
{
"address": "304 4503 73 Street NW",
"community": "Beltline",
"postal_code": "T3B2M3",
"property_id": "108e4f1dfc0b9162"
},
{
"address": "31 Taraglen Road NE",
"community": "Taradale",
"postal_code": "T3J2N8",
"property_id": "108e4f54e1cc284d"
},
{
"address": "31 Hidden Crescent NW",
"community": "Hidden Valley",
"postal_code": "T3A5L3",
"property_id": "108e688e4b44bdb3"
},
{
"address": "80 Sunrise Circle SE",
"community": "Sundance",
"postal_code": "T2X3A6",
"property_id": "108e8781b1f74e6a"
},
{
"address": "79 Harvest Wood Way NE",
"community": "Harvest Hills",
"postal_code": "T3K3X5",
"property_id": "108ed493d6bb1a91"
},
{
"address": "Centre 1214 9 Avenue SE",
"community": "Beltline",
"postal_code": "T2G0T1",
"property_id": "108f25648e55c0d"
},
{
"address": "8504 46 Avenue NW",
"community": "Bowness",
"postal_code": "T3B1Y6",
"property_id": "108f2b8e30cf0f3a"
},
{
"address": "65 Abbercove Lane SE",
"community": "Beltline",
"postal_code": "T2A7B5",
"property_id": "108f30e52ff40049"
},
{
"address": "70 Edith Manor NW",
"community": "Glacier Ridge",
"postal_code": "T3R1Y7",
"property_id": "108f4c523af2b020"
},
{
"address": "23 Riverbirch Crescent SE",
"community": "Riverbend",
"postal_code": "T2C3L7",
"property_id": "108f561609af6ddf"
},
{
"address": "49 White Oak Crescent SW",
"community": "Wildwood",
"postal_code": "T3C3J9",
"property_id": "108fb53b0f5610c9"
},
{
"address": "16 Mount Copper Gr SE",
"community": "McKenzie Lake",
"postal_code": "T2Z3N8",
"property_id": "108fb8a18ee7c18a"
},
{
"address": "76 Sienna Park Link SW",
"community": "Signal Hill",
"postal_code": "T3H4N1",
"property_id": "108ff4239fa7536"
},
{
"address": "202 1521 15 Avenue SW",
"community": "Beltline",
"postal_code": "T3C0Y1",
"property_id": "109011136f2113ca"
},
{
"address": "3 Baker Crescent NW",
"community": "Brentwood",
"postal_code": "T2L1R3",
"property_id": "109024c2f7d2eefd"
},
{
"address": "258 Panamount Court NW",
"community": "Panorama Hills",
"postal_code": "T3K5S2",
"property_id": "10904b30f5ccdb79"
},
{
"address": "204 Westover Drive SW",
"community": "Westgate",
"postal_code": "T3C2S6",
"property_id": "1090a22f35dbf80c"
},
{
"address": "13 Hidden Spring Circle NW",
"community": "Hidden Valley",
"postal_code": "T3A5H3",
"property_id": "1090b390959b431f"
},
{
"address": "408 1010 Centre Street SE",
"community": "Beltline",
"postal_code": "T2G1B3",
"property_id": "1090bc3f7217f90d"
},
{
"address": "95 Auburn Sound View SE",
"community": "Auburn Bay",
"postal_code": "T3M0C9",
"property_id": "1090c384125eea1d"
},
{
"address": "3607 2 Street NW",
"community": "Highland Park",
"postal_code": "T2K0Y3",
"property_id": "10911b8a326ebb2f"
},
{
"address": "62 Riverside Circle SE",
"community": "Riverbend",
"postal_code": "T2C3Y9",
"property_id": "1091c2ec6dfe0ca6"
},
{
"address": "3839 8 Street SW",
"community": "Elbow Park",
"postal_code": "T2T2J1",
"property_id": "1091d9143695e57c"
},
{
"address": "104 2808 25 Street SW",
"community": "Beltline",
"postal_code": "T3E1X9",
"property_id": "1091e4b4c07ad9ef"
},
{
"address": "5107 Marian Road NE",
"community": "Marlborough",
"postal_code": "T2A2Y1",
"property_id": "10921461aeae945"
},
{
"address": "714 618 5 Avenue SW",
"community": "Beltline",
"postal_code": "T2P0M7",
"property_id": "10922e04ff88891b"
},
{
"address": "98 Deerpath Road SE",
"community": "Deer Ridge",
"postal_code": "T2J6K8",
"property_id": "109241c29d431080"
},
{
"address": "112 Riverbirch Road SE",
"community": "Riverbend",
"postal_code": "T2C3M5",
"property_id": "109256ea09479286"
},
{
"address": "215 222 16 Avenue NE",
"community": "Beltline",
"postal_code": "T2E1J8",
"property_id": "109289ac08cd85ca"
},
{
"address": "28 Crestridge Rise SW",
"community": "Crestmont",
"postal_code": "T3B6K6",
"property_id": "1092f9bb2029e4f7"
},
{
"address": "343 River Rock Circle SE",
"community": "Riverbend",
"postal_code": "T2C4C1",
"property_id": "10934eb2c2a89c04"
},
{
"address": "60 Taralake Street Northeast",
"community": "Beltline",
"postal_code": "T3M3H1",
"property_id": "1093807c7fb064cb"
},
{
"address": "132 Woodmont Drive SW",
"community": "Woodbine",
"postal_code": "T2W4X2",
"property_id": "10939c64d789d065"
},
{
"address": "1143 Lake Placid Drive SE",
"community": "Lake Bonavista",
"postal_code": "T2J6A6",
"property_id": "1093a73271ed9006"
},
{
"address": "2910 Douglasdale Boulevard SE",
"community": "Douglasdale-Glen",
"postal_code": "T2Z2H9",
"property_id": "109409fca441f6af"
},
{
"address": "35 Heartwood Villas SE",
"community": "Rangeview",
"postal_code": "T3S0R6",
"property_id": "1094121e912c201b"
},
{
"address": "196 Evanspark Gardens NW",
"community": "Evanston",
"postal_code": "T3P0G6",
"property_id": "10941c0e6697a9ff"
},
{
"address": "148 Riverglen Drive SE",
"community": "Riverbend",
"postal_code": "T2C4E2",
"property_id": "10946d5c681f4bfa"
},
{
"address": "193 Simcoe Circle SW",
"community": "Signal Hill",
"postal_code": "T3H4S3",
"property_id": "10947c69eed85922"
},
{
"address": "227 Hidden Ranch Circle NW",
"community": "Hidden Valley",
"postal_code": "T3A5R1",
"property_id": "10947ed4a4274616"
},
{
"address": "304 120 25 Avenue SW",
"community": "Beltline",
"postal_code": "T2S0K9",
"property_id": "109481960706e203"
},
{
"address": "7 Inverness Garden SE",
"community": "McKenzie Towne",
"postal_code": "T2Z4N1",
"property_id": "1094b3552171d182"
},
{
"address": "112 Coverdale Way NE",
"community": "Coventry Hills",
"postal_code": "T3K4J5",
"property_id": "1094c8997e6a0998"
},
{
"address": "719 Rundleridge Drive NE",
"community": "Rundle",
"postal_code": "T1Y2L1",
"property_id": "10950ecf7240b1ba"
},
{
"address": "115 Sage Hill Way NW",
"community": "Sage Hill",
"postal_code": "T3R0H3",
"property_id": "109522e6e8939b9a"
},
{
"address": "342 Cranford Park SE",
"community": "Cranston",
"postal_code": "T3M2C5",
"property_id": "109575ac8c79bb32"
},
{
"address": "809 MacEwan Valley Road NW",
"community": "Macewan",
"postal_code": "T3K3T5",
"property_id": "109591f02569ebe4"
},
{
"address": "147 Hawkmount Close NW",
"community": "Hawkwood",
"postal_code": "T3G3Z6",
"property_id": "1095aba33343eac2"
},
{
"address": "271 Edgepark Boulevard NW",
"community": "Edgemont",
"postal_code": "T3A4J2",
"property_id": "1096213513069f18"
},
{
"address": "523 Lucas Boulevard NW",
"community": "Livingston",
"postal_code": "T3P1N1",
"property_id": "1096294991327211"
},
{
"address": "88 Sage Bank Crescent NW",
"community": "Sage Hill",
"postal_code": "T3R0J2",
"property_id": "10962bc6bc115a50"
},
{
"address": "39 Windermere Road SW",
"community": "Wildwood",
"postal_code": "T3C3K4",
"property_id": "109676bd7b8f6ac8"
},
{
"address": "84 Beddington Circle NE",
"community": "Beddington Heights",
"postal_code": "T3K1K6",
"property_id": "109694225ce4c71b"
},
{
"address": "527 30 Avenue NE",
"community": "Winston Heights-Mountview",
"postal_code": "T2E2E5",
"property_id": "10969efe339ce8eb"
},
{
"address": "5023 43 Street SW",
"community": "Glamorgan",
"postal_code": "T3E3R4",
"property_id": "10970560ad75cf2"
},
{
"address": "36 Sierra Morena Way SW",
"community": "Signal Hill",
"postal_code": "T3H3C3",
"property_id": "109767a64da1381f"
},
{
"address": "1251 Deer River Circle SE",
"community": "Deer Run",
"postal_code": "T2J6Z2",
"property_id": "109767cbe533f2fe"
},
{
"address": "302 305 14 Avenue NE",
"community": "Beltline",
"postal_code": "T2E4G4",
"property_id": "1097838036dafb0e"
},
{
"address": "720 34 Street NW",
"community": "Beltline",
"postal_code": "T2N2X9",
"property_id": "1097e2ace522f5b3"
},
{
"address": "25 Panamount Gr NW",
"community": "Panorama Hills",
"postal_code": "T3K5Z1",
"property_id": "1097f70bbc3498bb"
},
{
"address": "10815 Willowglen Place SE",
"community": "Willow Park",
"postal_code": "T2J1R8",
"property_id": "1097ffdae29c931c"
},
{
"address": "96 Edgeland Road NW",
"community": "Edgemont",
"postal_code": "T3A2Y4",
"property_id": "1098221bb77011a6"
},
{
"address": "34 Tuscany Valley Rise NW",
"community": "Tuscany",
"postal_code": "T3L2G6",
"property_id": "10983c08706a37ab"
},
{
"address": "48 Evergreen Mount SW",
"community": "Evergreen",
"postal_code": "T2Y0K1",
"property_id": "109857c91c365120"
},
{
"address": "502 933 5 Avenue SW",
"community": "Beltline",
"postal_code": "T2P0N8",
"property_id": "10985c59900903ae"
},
{
"address": "4019 14A Street SW",
"community": "Altadore",
"postal_code": "T2T3Y3",
"property_id": "1098a1621243024"
},
{
"address": "54 Nolanhurst Garden NW",
"community": "Nolan Hill",
"postal_code": "T3R0Z9",
"property_id": "1098f8c7dc998961"
},
{
"address": "381 Copperfield Boulevard SE",
"community": "Copperfield",
"postal_code": "T2Z4C8",
"property_id": "1099021c5c5dfb1b"
},
{
"address": "36 Everridge Way SW",
"community": "Evergreen",
"postal_code": "T2Y4S7",
"property_id": "10991e50da147145"
},
{
"address": "643 Poplar Road SW",
"community": "Spruce Cliff",
"postal_code": "T3C2Z9",
"property_id": "10993f4b772f1141"
}
],
"error": "",
"pagination": {
"current_page": 1,
"has_next_page": true,
"has_previous_page": false,
"page_total": 402
},
"price_quote": false,
"result_total": 401204,
"time_ms": 81,
"ui_info": {
"city": "Calgary",
"city_id": "6ec95b53075d062c",
"city_link": "ca/ab/calgary",
"city_slug": "calgary",
"country": "Canada",
"country_abbreviation": "CA",
"country_abbreviation_id": "9ace2b6431b7f1be",
"country_abbreviation_link": "ca",
"country_slug": "canada",
"province": "Alberta",
"province_abbreviation": "AB",
"province_abbreviation_id": "aae1f05a0f89d2c7",
"province_abbreviation_link": "ca/ab",
"province_slug": "alberta"
}
}
See our Filtering guide for all filter options.
Strategy 2: Roof replacement timing
Target homeowners whose roofs are aging toward the back half of their service life, so solar becomes part of the roof project. Roofs typically last 20-25 years, so filtering on roof_material_install_year for installs roughly 12 to 16 years ago surfaces the prospects coming up on replacement:
const houski_data = async (): Promise<PropertiesResponse> => {
// You must copy the PropertiesResponse type declarations from the
// Houski API documentation to strongly type the response
const url = new URL('https://api.houski.ca/properties');
url.searchParams.set('api_key', 'YOUR_API_KEY');
url.searchParams.set('city', 'calgary');
url.searchParams.set('country_abbreviation', 'ca');
url.searchParams.set('estimate_sale_price_gte', '350000');
url.searchParams.set('property_type_eq', 'House');
url.searchParams.set('province_abbreviation', 'ab');
url.searchParams.set('roof_material_install_year_gte', '2010');
url.searchParams.set('roof_material_install_year_lte', '2014');
url.searchParams.set('select', 'address,city,postal_code,roof_material,roof_material_install_year,estimate_sale_price,interior_sq_m');
const response = await fetch(url);
const data = await response.json();
return data;
}
(async () => {
let data: PropertiesResponse = await houski_data();
// Log the response
console.log(data);
})();
{
"cache_hit": false,
"cost_cents": 2.6399998664855957,
"data": [
{
"address": "7237 California Boulevard NE",
"city": "Calgary",
"estimate_sale_price": 671900,
"interior_sq_m": 200.01858520507812,
"postal_code": "T1Y6Y8",
"property_id": "1001392d95458fc1",
"roof_material": "Asphalt",
"roof_material_install_year": 2012
},
{
"address": "1516 49 Street SE",
"city": "Calgary",
"estimate_sale_price": 465441,
"interior_sq_m": 90.67261505126952,
"postal_code": "T2A1S1",
"property_id": "10024c6023d6ca9",
"roof_material": "Asphalt",
"roof_material_install_year": 2011
},
{
"address": "1542 52 Street SE",
"city": "Calgary",
"estimate_sale_price": 564297,
"interior_sq_m": 98.01189422607422,
"postal_code": "T2A1T8",
"property_id": "1003955fedeb5ef7",
"roof_material": "Asphalt",
"roof_material_install_year": 2011
},
{
"address": "232 Rundlefield Road NE",
"city": "Calgary",
"estimate_sale_price": 553975,
"interior_sq_m": 102.74990844726562,
"postal_code": "T1Y2W1",
"property_id": "1003a8f7e7319598",
"roof_material": "Asphalt",
"roof_material_install_year": 2011
},
{
"address": "2104 53 Avenue SW",
"city": "Calgary",
"estimate_sale_price": 1249876,
"interior_sq_m": 134.8940887451172,
"postal_code": "T3E1K8",
"property_id": "100570c4133180e3",
"roof_material": "Asphalt",
"roof_material_install_year": 2014
},
{
"address": "2404 Pinewood Drive SE",
"city": "Calgary",
"estimate_sale_price": 561081,
"interior_sq_m": 97.2686767578125,
"postal_code": "T2B1S4",
"property_id": "100577ee6782c5e1",
"roof_material": "Asphalt",
"roof_material_install_year": 2011
}
],
"error": "",
"pagination": {
"current_page": 1,
"has_next_page": true,
"has_previous_page": false,
"page_total": 15431
},
"price_quote": false,
"result_total": 92581,
"time_ms": 78,
"ui_info": {
"city": "Calgary",
"city_id": "6ec95b53075d062c",
"city_link": "ca/ab/calgary",
"city_slug": "calgary",
"country": "Canada",
"country_abbreviation": "CA",
"country_abbreviation_id": "9ace2b6431b7f1be",
"country_abbreviation_link": "ca",
"country_slug": "canada",
"province": "Alberta",
"province_abbreviation": "AB",
"province_abbreviation_id": "aae1f05a0f89d2c7",
"province_abbreviation_link": "ca/ab",
"province_slug": "alberta"
}
}
Strategy 3: High-value home targeting
Focus on affluent areas with higher electricity consumption and budgets:
const houski_data = async (): Promise<PropertiesResponse> => {
// You must copy the PropertiesResponse type declarations from the
// Houski API documentation to strongly type the response
const url = new URL('https://api.houski.ca/properties');
url.searchParams.set('api_key', 'YOUR_API_KEY');
url.searchParams.set('city', 'calgary');
url.searchParams.set('construction_year_lte', '2020');
url.searchParams.set('country_abbreviation', 'ca');
url.searchParams.set('estimate_sale_price_gte', '750000');
url.searchParams.set('interior_sq_m_gte', '200');
url.searchParams.set('property_type_eq', 'House');
url.searchParams.set('province_abbreviation', 'ab');
url.searchParams.set('select', 'address,city,community,postal_code,construction_year,interior_sq_m,estimate_sale_price,floor_above_ground,latitude,longitude');
const response = await fetch(url);
const data = await response.json();
return data;
}
(async () => {
let data: PropertiesResponse = await houski_data();
// Log the response
console.log(data);
})();
{
"cache_hit": false,
"cost_cents": 2.8199996948242188,
"data": [
{
"address": "335 Millrise Drive Southwest",
"city": "Calgary",
"community": "Beltline",
"construction_year": 2006,
"estimate_sale_price": 782754,
"floor_above_ground": 2,
"interior_sq_m": 241.5478973388672,
"latitude": 50.917877197265625,
"longitude": -114.0899429321289,
"postal_code": "T3M3H1",
"property_id": "100523ae7fef83ad"
},
{
"address": "72 Signature Heights SW",
"city": "Calgary",
"community": "Signal Hill",
"construction_year": 1993,
"estimate_sale_price": 1784339,
"floor_above_ground": 2,
"interior_sq_m": 243.40394592285156,
"latitude": 51.03351211547851,
"longitude": -114.17767333984376,
"postal_code": "T3H3C1",
"property_id": "1005d39b3c800a14"
},
{
"address": "31 Panatella Circle NW",
"city": "Calgary",
"community": "Panorama Hills",
"construction_year": 2004,
"estimate_sale_price": 769001,
"floor_above_ground": 2,
"interior_sq_m": 201.5514678955078,
"latitude": 51.16341781616211,
"longitude": -114.07530212402344,
"postal_code": "T3K5Z6",
"property_id": "1009b9c608997e52"
},
{
"address": "149 Panorama Hills View NW",
"city": "Calgary",
"community": "Panorama Hills",
"construction_year": 1999,
"estimate_sale_price": 879451,
"floor_above_ground": 2,
"interior_sq_m": 224.08026123046875,
"latitude": 51.15174865722656,
"longitude": -114.0885009765625,
"postal_code": "T3K5B8",
"property_id": "100aff0e2b4db155"
},
{
"address": "54 Panamount Road NW",
"city": "Calgary",
"community": "Panorama Hills",
"construction_year": 2008,
"estimate_sale_price": 779089,
"floor_above_ground": 2,
"interior_sq_m": 203.92047119140625,
"latitude": 51.1550407409668,
"longitude": -114.08855438232422,
"postal_code": "T3K0H6",
"property_id": "100b2c6e60c8fbad"
},
{
"address": "46 Cranarch View SE",
"city": "Calgary",
"community": "Cranston",
"construction_year": 2015,
"estimate_sale_price": 872543,
"floor_above_ground": 2,
"interior_sq_m": 230.2118225097656,
"latitude": 50.86787414550781,
"longitude": -113.9697494506836,
"postal_code": "T3M2J3",
"property_id": "100b7f2dba017cce"
}
],
"error": "",
"pagination": {
"current_page": 1,
"has_next_page": true,
"has_previous_page": false,
"page_total": 6522
},
"price_quote": false,
"result_total": 39128,
"time_ms": 76,
"ui_info": {
"city": "Calgary",
"city_id": "6ec95b53075d062c",
"city_link": "ca/ab/calgary",
"city_slug": "calgary",
"country": "Canada",
"country_abbreviation": "CA",
"country_abbreviation_id": "9ace2b6431b7f1be",
"country_abbreviation_link": "ca",
"country_slug": "canada",
"province": "Alberta",
"province_abbreviation": "AB",
"province_abbreviation_id": "aae1f05a0f89d2c7",
"province_abbreviation_link": "ca/ab",
"province_slug": "alberta"
}
}
Strategy 4: Older home energy savings
Target older homes with typically higher energy costs:
const houski_data = async (): Promise<PropertiesResponse> => {
// You must copy the PropertiesResponse type declarations from the
// Houski API documentation to strongly type the response
const url = new URL('https://api.houski.ca/properties');
url.searchParams.set('api_key', 'YOUR_API_KEY');
url.searchParams.set('city', 'calgary');
url.searchParams.set('construction_year_gte', '1970');
url.searchParams.set('construction_year_lte', '2000');
url.searchParams.set('country_abbreviation', 'ca');
url.searchParams.set('estimate_sale_price_gte', '350000');
url.searchParams.set('interior_sq_m_gte', '140');
url.searchParams.set('property_type_eq', 'House');
url.searchParams.set('province_abbreviation', 'ab');
url.searchParams.set('select', 'address,city,postal_code,construction_year,interior_sq_m,heating_type_first,estimate_sale_price');
const response = await fetch(url);
const data = await response.json();
return data;
}
(async () => {
let data: PropertiesResponse = await houski_data();
// Log the response
console.log(data);
})();
{
"cache_hit": false,
"cost_cents": 2.6399998664855957,
"data": [
{
"address": "28 Sundown Gr SE",
"city": "Calgary",
"construction_year": 1988,
"estimate_sale_price": 781636,
"heating_type_first": "Gas furnace",
"interior_sq_m": 172.61241149902344,
"postal_code": "T2X3G3",
"property_id": "1001109ab2aebbc0"
},
{
"address": "117 Sandpiper Place NW",
"city": "Calgary",
"construction_year": 1988,
"estimate_sale_price": 712601,
"heating_type_first": "Gas furnace",
"interior_sq_m": 142.6978759765625,
"postal_code": "T3K3T9",
"property_id": "1001217184d8717b"
},
{
"address": "7237 California Boulevard NE",
"city": "Calgary",
"construction_year": 1995,
"estimate_sale_price": 671900,
"heating_type_first": "Gas furnace",
"interior_sq_m": 200.01858520507812,
"postal_code": "T1Y6Y8",
"property_id": "1001392d95458fc1"
},
{
"address": "52 Tuscany Valley Lane NW",
"city": "Calgary",
"construction_year": 1998,
"estimate_sale_price": 655810,
"heating_type_first": "Gas furnace",
"interior_sq_m": 158.44482421875,
"postal_code": "T3L2C3",
"property_id": "1003eea453087ea3"
},
{
"address": "81 Scandia Hill NW",
"city": "Calgary",
"construction_year": 1989,
"estimate_sale_price": 996856,
"heating_type_first": "Gas furnace",
"interior_sq_m": 188.9632110595703,
"postal_code": "T3L1T9",
"property_id": "10043508321f54ba"
},
{
"address": "1309 18 Avenue NW",
"city": "Calgary",
"construction_year": 1985,
"estimate_sale_price": 846246,
"heating_type_first": "Gas furnace",
"interior_sq_m": 148.319091796875,
"postal_code": "T2M0W5",
"property_id": "10055f7b25bdcfa4"
}
],
"error": "",
"pagination": {
"current_page": 1,
"has_next_page": true,
"has_previous_page": false,
"page_total": 10747
},
"price_quote": false,
"result_total": 64482,
"time_ms": 81,
"ui_info": {
"city": "Calgary",
"city_id": "6ec95b53075d062c",
"city_link": "ca/ab/calgary",
"city_slug": "calgary",
"country": "Canada",
"country_abbreviation": "CA",
"country_abbreviation_id": "9ace2b6431b7f1be",
"country_abbreviation_link": "ca",
"country_slug": "canada",
"province": "Alberta",
"province_abbreviation": "AB",
"province_abbreviation_id": "aae1f05a0f89d2c7",
"province_abbreviation_link": "ca/ab",
"province_slug": "alberta"
}
}
Using datasets for bulk prospecting
For large campaigns, the datasets page offers pre-built prospect lists:
Relevant pre-built datasets
- Large lot properties (800+ sqm) - More roof space for panels
- High quality of life areas - Environmentally conscious demographics
- Top 10% household income - Budget for installation
- Older homes for renovation - Higher energy costs, improvement-oriented owners
Custom dataset requests
For solar-specific criteria, contact us to discuss:
- Custom roof age filtering
- Geographic boundary targeting
- Property type combinations
- Exclusion of recent installations
Direct mail integration
Export your prospect list for direct mail:
// Export prospects for direct mail
const exportForDirectMail = async (prospects) => {
return prospects.map(p => ({
// Mailing address
address_line_1: p.address,
city: p.city,
province: p.province_abbreviation,
postal_code: p.postal_code,
// Personalization fields
home_age: new Date().getFullYear() - p.construction_year,
roof_age: p.roof_material_install_year ?
new Date().getFullYear() - p.roof_material_install_year : null,
home_size_sqft: Math.round(p.interior_sq_m * 10.764),
estimated_value: p.estimate_sale_price,
// Calculated fields
estimated_roof_area: estimateRoofArea(p),
solar_score: p.solarScore,
priority_tier: p.solarScore >= 80 ? 'A' : p.solarScore >= 60 ? 'B' : 'C'
}));
};
Campaign personalization
Use property data to personalize outreach:
// Generate personalized messaging
const generateSolarPitch = (property) => {
const homeAge = new Date().getFullYear() - property.construction_year;
const roofAge = property.roof_material_install_year ?
new Date().getFullYear() - property.roof_material_install_year : null;
const homeSizeSqft = Math.round(property.interior_sq_m * 10.764);
let pitch = `Dear ${property.address} homeowner,\n\n`;
if (roofAge && roofAge >= 15) {
pitch += `Your ${roofAge}-year-old roof is approaching the age where many ` +
`homeowners consider replacement. This is the perfect time to add ` +
`solar panels - combining both projects can save thousands.\n\n`;
} else if (homeAge >= 20) {
pitch += `Homes built in ${property.construction_year} typically have higher ` +
`energy costs than newer construction. Solar panels can significantly ` +
`reduce your electricity bills while increasing your home's value.\n\n`;
}
pitch += `Based on your ${homeSizeSqft} square foot home, we estimate ` +
`you could save substantially on your annual electricity costs ` +
`with a properly sized solar installation.\n\n`;
pitch += `Your home's estimated value of $${property.estimate_sale_price.toLocaleString()} ` +
`could increase further with a solar installation - ` +
`studies show solar homes sell for a premium.\n\n`;
return pitch;
};
Measuring campaign effectiveness
Track which property characteristics correlate with conversions:
// Analyze conversion patterns
const analyzeConversions = (prospects, conversions) => {
const converted = new Set(conversions.map(c => c.property_id));
const analysis = {
total_prospects: prospects.length,
total_conversions: conversions.length,
conversion_rate: (conversions.length / prospects.length * 100).toFixed(2),
by_roof_age: {},
by_home_value: {},
by_home_size: {}
};
// Analyze by roof age
prospects.forEach(p => {
const roofAge = p.roofAge;
const bucket = roofAge < 10 ? '0-9' : roofAge < 15 ? '10-14' : roofAge < 20 ? '15-19' : '20+';
if (!analysis.by_roof_age[bucket]) {
analysis.by_roof_age[bucket] = { prospects: 0, conversions: 0 };
}
analysis.by_roof_age[bucket].prospects++;
if (converted.has(p.property_id)) {
analysis.by_roof_age[bucket].conversions++;
}
});
// Calculate conversion rates per bucket
Object.keys(analysis.by_roof_age).forEach(bucket => {
const data = analysis.by_roof_age[bucket];
data.rate = (data.conversions / data.prospects * 100).toFixed(2);
});
return analysis;
};
Pricing for solar companies
- Property lookups: Most fields cost a tenth of a cent per field per property
- Bulk datasets: Volume pricing for large prospect lists
- Custom queries: Filter by any combination of property characteristics
A typical campaign pulling 10,000 properties with 10 fields each runs around $100, a fraction of the cost of purchased leads.
Getting started
- Sign up for API access - Get your API key
- Define your ideal customer - What makes a home perfect for your installations?
- Build your query - Use the filter documentation to target those characteristics
- Test with a small area - Validate your criteria work before scaling
- Launch your campaign - Export data for direct mail or integrate into your customer relationship management (CRM) system
The solar marketing advantage
Solar is a considered purchase. Homeowners research, compare, and evaluate. Personalized, relevant messaging converts dramatically better than generic outreach.
Property data APIs give you targeting precision to find ideal customers before competitors do.
Ready to supercharge your solar prospecting? Explore Houski's API documentation or visit our datasets page for pre-built prospect lists.
