/v1/moneysupply
Annual growth of M1, M2 and M3
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/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_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo 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
}