/v1/latest
Every country's latest debt service ratios
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/debtservice-api/v1/latest" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/debtservice-api/v1/latest", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/debtservice-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/debtservice-api/v1/latest",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"note": "DSR = share of income spent servicing debt (interest + principal), in percent. household_dsr is for households, corporate_dsr for non-financial corporations, private_total_dsr for the whole private non-financial sector. A high or rising DSR squeezes spending and has led recessions. Sort by household (default), corporate, total or country.",
"count": 17,
"source": "BIS",
"countries": [
{
"period": "2025-Q3",
"country": "NO",
"corporate_dsr": 35.8,
"household_dsr": 20.8,
"private_total_dsr": 28
},
{
"period": "2025-Q3",
"country": "AU",
"corporate_dsr": 39.4,
"household_dsr": 15.6,
"private_total_dsr": 20.1
},
{
"period": "2025-Q3",
"country": "CA",
"corporate_dsr": 57.4,
"household_dsr": 13.9,
"private_total_dsr": 25.3
},
{
"period": "2025-Q3",
"country": "NL",
"corporate_dsr": 49.5,
"household_dsr": 12.9,
"private_total_dsr": 25.9
},
{
"period": "2025-Q3",
"country": "DK",
"corporate_dsr": 42.5,
"household_dsr": 11.8,
"private_total_dsr": 23.2
},
{
"period": "2025-Q3",
"country": "SE",
"corporate_dsr": 44,
"household_dsr": 11.6,
"private_total_dsr": 23.3
},
{
"period": "2025-Q3",
"country": "KR",
"corporate_dsr": 37.6,
"household_dsr": 11.3,
"private_total_dsr": 19.8
},
{
"period": "2025-Q3",
"country": "GB",
"corporate_dsr": 27.8,
"household_dsr": 8.7,
"private_total_dsr": 13
},
{
"period": "2025-Q3",
"country": "US",
"corporate_dsr": 37.8,
"household_dsr": 7.9,
"private_total_dsr": 14.1
},
{
"period": "2025-Q3",
"country": "FI",
"corporate_dsr": 41.9,
"household_dsr": 7.7,
"private_total_dsr": 18.4
},
{
"period": "2025-Q3",
"country": "JP",
"corporate_dsr": 31.9,
"household_dsr": 7.4,
"private_total_dsr": 15.3
},
{
"period": "2025-Q3",
"country": "BE",
"corporate_dsr": 37,
"household_dsr": 7,
…