!

Canada's largest independent property data platform

Access detailed property data for over 9.5M Canadian properties.

You do not need to be a licensed real estate professional to use our API - anyone can use our data.

Why choose Houski?

  • Independent and unbiased: Not affiliated with real estate industry or government agencies, ensuring transparent and objective data access
  • Comprehensive coverage: Detailed information on 9.5M+ Canadian properties, including valuations, tax assessments, and transaction history
  • Always updating: Daily property data updates, market trends, and AI-powered predictions
  • Developer-first: Modern REST API with extensive documentation and dedicated support
  • Cost-effective: 30-day free trial and usage-based pricing - only pay for what you use

Try it now

Get all 3-bedroom houses in Calgary

This simple query returns bedrooms, dens, and estimated prices - but there are hundreds of other data points available for each property.

Request
Shell session
curl -X GET "https://api.houski.ca/properties?api_key=YOUR_API_KEY&bedroom_eq=3&city=calgary&country_abbreviation=ca&property_type_eq=House&province_abbreviation=ab&results_per_page=3&select=bedroom,den,estimate_list_price"
TypeScript code
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('bedroom_eq', '3');
    url.searchParams.set('city', 'calgary');
    url.searchParams.set('country_abbreviation', 'ca');
    url.searchParams.set('property_type_eq', 'House');
    url.searchParams.set('province_abbreviation', 'ab');
    url.searchParams.set('results_per_page', '3');
    url.searchParams.set('select', 'bedroom,den,estimate_list_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);
})();
Response
JSON
{
  "cache_hit": false,
  "cost_cents": 1.5,
  "data": [
    {
      "address": "52 Ambleside Crescent NW",
      "bedroom": 3,
      "den": 0,
      "estimate_list_price": 766839,
      "property_id": "cd3bd8b5fa280142"
    },
    {
      "address": "69 Douglas Park Manor SE",
      "bedroom": 3,
      "den": 0,
      "estimate_list_price": 856088,
      "property_id": "6f7e81accb2f4d82"
    },
    {
      "address": "119 1408 17 Street SE",
      "bedroom": 3,
      "den": 0,
      "estimate_list_price": 354807,
      "property_id": "5ecfa9dcb4f7ca09"
    }
  ],
  "error": "",
  "pagination": {
    "current_page": 1,
    "has_next_page": true,
    "has_previous_page": false,
    "page_total": 87146
  },
  "price_quote": false,
  "result_total": 261438,
  "time_ms": 47,
  "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"
  }
}

Key features

  • Comprehensive data coverage: From property specifics to listing history and tax assessments, with AI-powered gap filling
  • Seamless integration: Developer-friendly API design with flexible customization options
  • Uniform coverage: Consistent high-quality data across all Canadian regions
  • Research tools: Advanced analytics and granular data for informed decision-making
  • Robust support: Comprehensive documentation and dedicated customer support

Simple, usage-based pricing

  • 30-day free trial, no credit card required
  • Pay only for the data you use
  • Custom plans for high-volume users
  • Flexible pricing tiers to match your needs

World-class support

Join our developer community and get real-time support through Slack