/v1/meta
Service metadata
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/imf-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/imf-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/imf-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/imf-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"note": "country is an ISO-3 code (USA, DEU, CHN, IND). Find indicator codes via /v1/indicators (e.g. NGDP_RPCH = real GDP growth, PCPIPCH = inflation, GGXWDG_NGDP = govt debt % of GDP). Later years in any series are IMF projections.",
"source": "IMF DataMapper (imf.org/external/datamapper/api/v1, live)",
"service": "imf-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/series": "One indicator's full time series for one country (indicator=NGDP_RPCH&country=USA).",
"GET /v1/country": "A country's headline macro snapshot — growth, inflation, debt, unemployment, current account, GDP/capita (country=USA).",
"GET /v1/indicators": "Every IMF indicator (code, label, unit); optional search=."
},
"description": "Live macroeconomic data from the IMF World Economic Outlook via the public DataMapper API — GDP, growth, inflation, government debt, unemployment, current account and 120+ other indicators for 200+ countries, with history back to 1980 and forecasts several years out. The indicators endpoint lists every series; the series endpoint returns one indicator's full time series for one country (actual and forecast); the country endpoint returns a snapshot of a country's headline numbers (GDP growth, inflation, debt, unemployment, current account, GDP per capita). Live, no key, nothing stored. The IMF macro / economic-indicator cut — distinct from the FX-rate, central-bank and market-data APIs.",
"indicator_count": 132,
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-12T01:43:04.697Z",
"request_id": "41277b8e-3e84-4098-bde7-c58e45c5465b"
},
"status": "ok",
"message": "Meta",
"success": true
}