/v1/moneysupply
Annual growth of M1, M2 and M3
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}