Ir al contenido
GET /v1/meta

Service metadata

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/moneysupply-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

curl "https://api.oanor.com/moneysupply-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/moneysupply-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/moneysupply-api/v1/meta");
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/meta",
    headers={"x-oanor-key": "oanor_test_..."}
)

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "data": {
        "note": "board and narrow take countries_only (true to drop aggregates). country takes country (ISO-3 code or name, required). meta takes no parameters. Growth figures are in percent; yoy is year-on-year, mom is month-on-month, computed from the monetary-aggregate index. Monthly data; a multi-hour protective cache fronts the OECD upstream.",
        "source": "OECD monetary aggregates (DF_MONAGG) via OECD SDMX API (M1=MANM, M3=MABM, seasonally adjusted), live, keyless",
        "service": "moneysupply-api",
        "economies": 17,
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/board": "Economies ranked by broad-money (M3) growth, with M1 alongside (countries_only optional).",
            "GET /v1/narrow": "Economies ranked by narrow-money (M1) growth.",
            "GET /v1/country": "One economy's M1 and M3 growth, year-on-year and month-on-month (country=USA)."
        },
        "description": "Money supply — how fast the money in each economy is growing, live from the OECD's monetary statistics (no key). It computes the year-on-year and month-on-month growth of narrow money (M1) and broad money (M3) from the OECD's seasonally-adjusted index. board ranks every economy by M3 (broad money) growth with M1 alongside; narrow ranks by M1 growth; country gives one economy's M1 and M3 growth. Money growth running ahead of the economy is the classic fuel for inflation and asset booms; contraction flags a credit squeeze. The money-supply / monetary-growth cut — distinct from central-bank policy-rate APIs (the price of money, not its quantity), the inflation board, and the generic data aggregator.",
        "united_states": {
            "m1_yoy": 4.89,
            "m3_yoy": 4.72
        },
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-12T19:37:37.357Z",
        "request_id": "a4eaf2cb-ac40-4521-b548-0bea6e92c4b5"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}