/v1/latest
Every country's latest house-price reading
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/houseprices-api/v1/latest" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/houseprices-api/v1/latest", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/houseprices-api/v1/latest");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/houseprices-api/v1/latest",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"count": 61,
"source": "BIS",
"countries": [
{
"period": "2025-Q4",
"country": "TR",
"real_index": 220.8,
"real_yoy_pct": -0.75,
"nominal_index": 4310.7,
"nominal_yoy_pct": 30.62
},
{
"period": "2025-Q4",
"country": "MK",
"real_index": 123,
"real_yoy_pct": 19.96,
"nominal_index": 199,
"nominal_yoy_pct": 25.01
},
{
"period": "2025-Q4",
"country": "HU",
"real_index": 216.1,
"real_yoy_pct": 16.83,
"nominal_index": 416.9,
"nominal_yoy_pct": 21.24
},
{
"period": "2025-Q4",
"country": "PT",
"real_index": 196.2,
"real_yoy_pct": 16.28,
"nominal_index": 261,
"nominal_yoy_pct": 18.89
},
{
"period": "2025-Q4",
"country": "HR",
"real_index": 147.3,
"real_yoy_pct": 12.01,
"nominal_index": 215.3,
"nominal_yoy_pct": 16.05
},
{
"period": "2025-Q4",
"country": "RU",
"real_index": 76.4,
"real_yoy_pct": 7.16,
"nominal_index": 219.4,
"nominal_yoy_pct": 14.27
},
{
"period": "2025-Q4",
"country": "CO",
"real_index": 142.5,
"real_yoy_pct": 7.2,
"nominal_index": 297.7,
"nominal_yoy_pct": 12.89
},
{
"period": "2025-Q4",
"country": "ES",
"real_index": 102.2,
"real_yoy_pct": 9.57,
"nominal_index": 139.3,
"nominal_yoy_pct": 12.87
},
{
"period": "2025-Q4",
"country": "SK",
"real_index": 135.9,
"real_yoy_pct": 8.64,
"nominal_index": 221.3,
"nominal_yoy_pct": 12.73
},
{
"period": "2025-Q4",
"country": "BG",
"real_index": 147.3,
"real_yoy_pct": 7.04,
"nominal_index": 242.6,
"nominal_yoy_pct": 12.59
},
{
"period": "2025-Q4",
"country": "LV",
"real_index": 170.6,
"real_yoy_pct": 6.91,
"nominal_index": 278.8,
"nominal_yoy_pct": 10.96
},
{
"period": "2025-Q4",
"country": "LT",
"real_index"
…