!
Endpoints
Aggregate
Auth
AVM
Properties
Location
Search
Map
Predict
Geocoding

API Recipe: Get property

Learn how to use the Houski API with practical examples.

Get property
You can retrieve detailed information on many properties in Canada. This example shows retrieving specific information on a property - just the number of bedrooms and bathrooms. Every property has hundreds of fields of information available.
Request
Shell session
curl -X GET "https://api.houski.ca/properties?address=151-mckerrell-place-se&api_key=YOUR_API_KEY&city=calgary&country_abbreviation=ca&province_abbreviation=ab&results_per_page=3&select=bedroom,den,bathroom_full,bathroom_half"
Shell session
curl -X GET "https://api.houski.ca/properties?address=151-mckerrell-place-se&api_key=YOUR_API_KEY&city=calgary&country_abbreviation=ca&province_abbreviation=ab&results_per_page=3&select=bedroom,den,bathroom_full,bathroom_half"
Response
JSON
{
  "cache_hit": false,
  "cost_cents": 0.6000000238418579,
  "data": [
    {
      "address": "151 McKerrell Place SE",
      "bathroom_full": 2,
      "bathroom_half": 0,
      "bedroom": 2,
      "den": 0,
      "property_id": "1f6299f6f1616645"
    }
  ],
  "error": "",
  "pagination": {
    "current_page": 1,
    "has_next_page": false,
    "has_previous_page": false,
    "page_total": 1
  },
  "price_quote": false,
  "result_total": 1,
  "time_ms": 495,
  "ui_info": {
    "address": "151 McKerrell Place SE",
    "address_link": "ca/ab/calgary/mckenzie-lake/151-mckerrell-place-se",
    "address_slug": "151-mckerrell-place-se",
    "city": "Calgary",
    "city_id": "6ec95b53075d062c",
    "city_link": "ca/ab/calgary",
    "city_slug": "calgary",
    "community": "McKenzie Lake",
    "community_id": "6893f1425b51f7bb",
    "community_link": "ca/ab/calgary/mckenzie-lake",
    "community_slug": "mckenzie-lake",
    "country": "Canada",
    "country_abbreviation": "CA",
    "country_abbreviation_id": "9ace2b6431b7f1be",
    "country_abbreviation_link": "ca",
    "country_slug": "canada",
    "property_id": "1f6299f6f1616645",
    "province": "Alberta",
    "province_abbreviation": "AB",
    "province_abbreviation_id": "aae1f05a0f89d2c7",
    "province_abbreviation_link": "ca/ab",
    "province_slug": "alberta"
  }
}