Aller au contenu
GET /v1/country

One economy's M1 and M3 growth, year-on-year and month-on-month

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/moneysupply-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

curl "https://api.oanor.com/moneysupply-api/v1/country" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/moneysupply-api/v1/country", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/moneysupply-api/v1/country");
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/moneysupply-api/v1/country",
    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": {
        "m1": {
            "mom": 0.49,
            "yoy": 4.89,
            "period": "2026-04",
            "signal": "moderate money growth"
        },
        "m3": {
            "mom": 0.52,
            "yoy": 4.72,
            "period": "2026-04",
            "signal": "moderate money growth"
        },
        "code": "USA",
        "name": "United States",
        "note": "One economy's narrow (M1) and broad (M3) money growth, year-on-year and month-on-month, from the OECD's seasonally-adjusted monetary-aggregate index. Fast money growth is expansionary/inflationary liquidity; contraction flags a credit squeeze. Monthly, cached a few hours.",
        "period": "2026-04",
        "source": "OECD monetary aggregates (SDMX)",
        "is_aggregate": false
    },
    "meta": {
        "timestamp": "2026-06-12T19:37:37.268Z",
        "request_id": "e7f4e0ff-726f-41a3-9ddd-e76156de4277"
    },
    "status": "ok",
    "message": "Country money supply retrieved successfully",
    "success": true
}