Naar de inhoud
GET /v1/moneysupply

Annual growth of M1, M2 and M3

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/bankrates-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste 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
}