/v1/growth
Latest annual growth of household & business credit
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
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_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"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
}