Vai al contenuto
GET /v1/country

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

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/moneysupply-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "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
}