/v1/meta
Service metadata
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
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_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"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
}