One country's latest reading
API · /houseprices-api
Residential Property Prices API
How house prices are moving across the world's economies, read live from the Bank for International Settlements' Selected Residential Property Prices dataset. For roughly 60 countries the BIS publishes a quarterly residential property price index — both nominal and real (inflation-adjusted) — together with its year-on-year change. The latest endpoint returns every country's most recent reading at once — the nominal and real index plus the nominal and real year-on-year growth — sortable by nominal or real YoY so you instantly see which housing markets are heating up and which are cooling once you strip out inflation. The country endpoint returns a single country's latest reading; the history endpoint returns its quarterly index time series (nominal and real) so you can chart a market over time. Countries are given as ISO-2 codes (US, DE, GB, JP) or common names (xm is the euro area). The nominal index is the headline price level; the real index is deflated by consumer prices, so a negative real YoY means prices are falling after inflation even when the nominal index still rises. This is the real-estate / property-price macro data-cut — distinct from the FX-rate, central-bank, yield-curve, commodity and equity-index APIs in the catalogue. Live source, no key required upstream, nothing stored.
API health
healthy- Uptime
- 100.00%
- Server probes · 24h
- Avg latency
- 109 ms
- Server probes · 24h
- Subscribers
- 4,115
- active
- Total calls
- 76
- last 7 days
Pricing
Pick a tier — billed monthly, cancel anytime.
Free
Free
- 350 calls / month
- 2 requests / second
- Hard cap (429 above quota, no overage)
- 350 calls/month
- 2 req/sec
- All countries, latest + history
- No credit card
Starter
€11.37 /month
- 6,800 calls / month
- 6 requests / second
- Hard cap (429 above quota, no overage)
- 6,800 calls/month
- 6 req/sec
- Nominal + real index & YoY
- Email support
Pro
€34.21 /month
- 43,500 calls / month
- 16 requests / second
- Hard cap (429 above quota, no overage)
- 43,500 calls/month
- 16 req/sec
- Macro dashboards & research
- Priority support
Business
€79.53 /month
- 235,000 calls / month
- 40 requests / second
- Hard cap (429 above quota, no overage)
- 235,000 calls/month
- 40 req/sec
- Real-estate analytics at scale
- Dedicated SLA
Built by
Related APIs
Other APIs with overlapping tags.
Real Estate Investment API
Real-estate investment maths as an API, computed locally and deterministically — the property-analysis layer a loan calculator leaves out. The cap-rate endpoint gives the net operating income and capitalization rate of a rental from its price, gross rent, vacancy allowance and operating expenses (NOI = gross rent × (1 − vacancy) − expenses; cap rate = NOI / price), plus the gross rent multiplier — the unlevered view a buyer compares deals on. The cash-flow endpoint adds financing: from a down payment (amount or percent), interest rate and term it amortizes the mortgage, then returns the monthly payment, annual debt service, the property cash flow, the cash-on-cash return (annual cash flow ÷ cash invested), the debt-service-coverage ratio (DSCR = NOI ÷ debt service, the figure lenders underwrite to) and the loan-to-value. The metrics endpoint runs the quick screening ratios investors filter on — the 1 % rule (monthly rent ≥ 1 % of price), gross rental yield, gross rent multiplier and price per square foot. Money in, ratios out, in one consistent currency. Everything is computed locally and deterministically, so it is instant and private. Ideal for proptech, real-estate-investment, rental-analysis and landlord app developers, deal-screening and underwriting tools, and personal-finance dashboards. Pure local computation — no key, no third-party service, instant. Live, nothing stored. 3 compute endpoints. This is property-investment analysis; for pure loan amortization use a loan API and for DCF/NPV use an investment-appraisal API.
api.oanor.com/realestate-api
Statistics Sweden (SCB) API
A gateway to the official Statistics Sweden (SCB) PxWeb data service. Read the latest headline Consumer Price Index and fetch the latest time-series observations for any of the thousands of SCB statistics tables by table path and dimension selections — consumer prices, population, the labour market, national accounts, housing and much more. Every observation carries its reference period, and values always resolve to the latest published release, so there are no dates to hard-code. Built for Swedish macro research, CPI and inflation tracking, and SEK currency or rates models that need authoritative national statistics. Distinct from our OECD, Statistics Canada, ABS and Statistics Norway feeds, and from central-bank FX feeds: this surfaces the official SCB data service for Sweden.
api.oanor.com/scb-api
Statistics Norway (SSB) API
A gateway to the official Statistics Norway (SSB) PxWeb data service. Read the latest headline Consumer Price Index (2015=100) and fetch the latest time-series observations for any of the thousands of SSB statistics tables by table id and dimension selections — consumer prices, the producer price index, GDP, the labour market, population, housing and much more. Every observation carries its reference period, and values always resolve to the latest published release, so there are no dates to hard-code. Built for Norwegian macro research, CPI and inflation tracking, and NOK currency or rates models that need authoritative national statistics. Distinct from our OECD cross-country indicators, Statistics Canada and ABS feeds, and from central-bank FX feeds: this surfaces the official SSB data service for Norway.
api.oanor.com/ssb-api
Australian Bureau of Statistics API
A gateway to the official Australian Bureau of Statistics (ABS) SDMX data service. Read the latest headline Consumer Price Index, browse and search the 1,200-plus ABS statistical dataflows by id or name, and fetch the latest observations for any ABS series by its dataflow id and SDMX series key with as many recent periods as you need. Every observation carries its reference period, and values always resolve to the latest published release, so there are no dates to hard-code. Built for Australian macro research, CPI and inflation tracking, and AUD currency or rates models that need authoritative national statistics. Distinct from our OECD cross-country indicators and Statistics Canada feed: this surfaces the official ABS data service for Australia.
api.oanor.com/abs-api
Frequently asked questions
Quick answers about pricing, quotas, and integration.
How do I get an API key for Residential Property Prices API?
What's the rate limit for Residential Property Prices API?
How much does Residential Property Prices API cost?
Can I cancel my subscription anytime?
Is Residential Property Prices API GDPR-compliant?
Pick an endpoint from the list on the left to see its details and try it.
Code snippets
Sign up to get an API key, then call any path under your slug.
curl https://api.oanor.com/houseprices-api/SOME_PATH \
-H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/houseprices-api/SOME_PATH", {
headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/houseprices-api/SOME_PATH");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
$response = curl_exec($ch);
import requests
r = requests.get(
"https://api.oanor.com/houseprices-api/SOME_PATH",
headers={"x-oanor-key": "oanor_test_..."},
)
print(r.json())
Ratings
Sign in to rate.
No reviews yet.
Discussion
Ask questions, share usage tips, get answers from the provider and other developers. Public — anyone can read.
Sign in to start a thread or reply.
Sign inNew thread
·
-
Provider answer
🔒 This thread is locked — no new replies.
-
·
- No threads yet — start the discussion.
Support
Private 1:1 support with the provider — billing questions, integration issues, account problems. Only you and the provider team can see these threads.
Sign in to open a support ticket.
Sign inOpen new ticket
Describe what you need help with. The provider team gets an email and replies on the ticket page.
-
·
Urgent - No tickets yet for this API.