/v1/moneysupply
Annual growth of M1, M2 and M3
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/bankrates-api/v1/moneysupply" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/bankrates-api/v1/moneysupply", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/bankrates-api/v1/moneysupply");
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/bankrates-api/v1/moneysupply",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"area": "Euro area",
"note": "Annual growth of the euro-area monetary aggregates M1, M2, M3 (ECB BSI). M3 growth leads inflation and the credit cycle.",
"count": 3,
"source": "ECB",
"category": "monetary aggregates (BSI)",
"aggregates": [
{
"unit": "percent",
"label": "M1 money supply, annual growth",
"value": 3.8,
"change": -0.9,
"period": "2026-04",
"indicator": "m1_growth"
},
{
"unit": "percent",
"label": "M2 money supply, annual growth",
"value": 2.87,
"change": -0.31,
"period": "2026-04",
"indicator": "m2_growth"
},
{
"unit": "percent",
"label": "M3 money supply, annual growth",
"value": 2.74,
"change": -0.5,
"period": "2026-04",
"indicator": "m3_growth"
}
]
},
"meta": {
"timestamp": "2026-06-12T01:41:04.707Z",
"request_id": "2a427198-90f1-4667-9f49-d5750beaa8a4"
},
"status": "ok",
"message": "Money supply retrieved successfully",
"success": true
}