/v1/growth
Latest annual growth of household & business credit
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/creditgrowth-api/v1/growth" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/creditgrowth-api/v1/growth", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/creditgrowth-api/v1/growth");
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/creditgrowth-api/v1/growth",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"area": "Euro area",
"note": "Annual growth of euro-area bank lending by borrower and purpose. change is versus the prior month — accelerating credit is expansionary, decelerating credit is a slowdown signal.",
"count": 4,
"credit": [
{
"unit": "percent",
"label": "Loans to households (MFIs), annual growth",
"change": 0.02,
"period": "2026-04",
"indicator": "households_total",
"growth_pct": 2.94
},
{
"unit": "percent",
"label": "Lending for house purchase to households, annual growth",
"change": 0.02,
"period": "2026-04",
"indicator": "house_purchase",
"growth_pct": 2.93
},
{
"unit": "percent",
"label": "Consumer credit to households, annual growth",
"change": 0.01,
"period": "2026-04",
"indicator": "consumer_credit",
"growth_pct": 5.25
},
{
"unit": "percent",
"label": "Loans to non-financial corporations (MFIs), annual growth",
"change": 0.28,
"period": "2026-04",
"indicator": "businesses",
"growth_pct": 3.46
}
],
"source": "ECB",
"category": "MFI loan annual growth (BSI)"
},
"meta": {
"timestamp": "2026-06-12T10:35:47.602Z",
"request_id": "32596bf9-d6a0-4edb-90ac-0b1b31647547"
},
"status": "ok",
"message": "Growth retrieved successfully",
"success": true
}