!
Endpoints
Aggregate
Auth
AVM
Properties
Location
Search
Map
Predict
Geocoding

API Recipe: Get property data near a point (reverse geocoding)

Learn how to use the Houski API with practical examples.

Get properties around a point
This request returns properties within a 2km radius of the point (51.0447, -114.0719).
Request
Shell session
curl -X GET "https://api.houski.ca/geocoding?api_key=YOUR_API_KEY&country_abbreviation=ca&latitude=51.0447&longitude=-114.0719&radius=2&select=latitude,longitude,bedroom,den,bathroom_full,bathroom_half&shape=circle"
Shell session
curl -X GET "https://api.houski.ca/geocoding?api_key=YOUR_API_KEY&country_abbreviation=ca&latitude=51.0447&longitude=-114.0719&radius=2&select=latitude,longitude,bedroom,den,bathroom_full,bathroom_half&shape=circle"
Response
JSON
{
  "cache_hit": false,
  "cost_cents": 4.800000190734863,
  "data": [
    {
      "address": "513 9 Avenue SW",
      "bathroom_full": 2,
      "bathroom_half": 0,
      "bedroom": 3,
      "den": 0,
      "latitude": 51.044551849365234,
      "longitude": -114.07220458984376,
      "property_id": "e9baf46145362e25"
    },
    {
      "address": "520 9 Avenue SW",
      "bathroom_full": 2,
      "bathroom_half": 0,
      "bedroom": 3,
      "den": 0,
      "latitude": 51.04525375366211,
      "longitude": -114.0722198486328,
      "property_id": "8808ff7c79ba3508"
    },
    {
      "address": "525 8 Avenue SW",
      "bathroom_full": 2,
      "bathroom_half": 0,
      "bedroom": 3,
      "den": 0,
      "latitude": 51.04532241821289,
      "longitude": -114.07241821289062,
      "property_id": "301a806c3b139f6"
    },
    {
      "address": "505 8 Avenue SW",
      "bathroom_full": 2,
      "bathroom_half": 0,
      "bedroom": 3,
      "den": 0,
      "latitude": 51.0455207824707,
      "longitude": -114.07185363769533,
      "property_id": "3848dc60cd88ee55"
    },
    {
      "address": "524 10 Avenue SW",
      "bathroom_full": 2,
      "bathroom_half": 0,
      "bedroom": 3,
      "den": 0,
      "latitude": 51.043914794921875,
      "longitude": -114.07220458984376,
      "property_id": "cc8a04767d8753ff"
    },
    {
      "address": "811 4 Street SW",
      "bathroom_full": 2,
      "bathroom_half": 0,
      "bedroom": 3,
      "den": 0,
      "latitude": 51.045597076416016,
      "longitude": -114.07174682617188,
      "property_id": "dc52b008ab37089e"
    }
  ],
  "error": "",
  "pagination": {
    "current_page": 1,
    "has_next_page": true,
    "has_previous_page": false,
    "page_total": 8699
  },
  "price_quote": false,
  "result_total": 52190,
  "time_ms": 78
}