skills/domains/economics/imf-data-api-guide/SKILL.md
Retrieve IMF economic indicators, exchange rates, and country data
npx skillsauth add wentorai/research-plugins imf-data-api-guideInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
The International Monetary Fund (IMF) provides a free JSON-based REST API for accessing its extensive collection of macroeconomic and financial datasets. The API covers data from virtually every country and territory, spanning indicators such as GDP, inflation, trade balances, exchange rates, government finance statistics, and balance of payments.
For economics researchers, the IMF API is an essential tool for accessing authoritative international economic data without manual downloads. The data powers research in macroeconomics, development economics, international finance, and policy analysis. The API provides access to key datasets including the World Economic Outlook (WEO), International Financial Statistics (IFS), Balance of Payments Statistics (BOP), and the Direction of Trade Statistics (DOTS).
The API requires no authentication and returns JSON data. It uses a hierarchical structure of datasets, indicators, and country/time dimensions.
No authentication is required. The IMF Data API is completely free and open.
# No API key needed
curl "https://www.imf.org/external/datamapper/api/v1/NGDP_RPCH?periods=2024"
GET https://www.imf.org/external/datamapper/api/v1
curl -s "https://www.imf.org/external/datamapper/api/v1" | python3 -m json.tool
GET https://www.imf.org/external/datamapper/api/v1/indicators
GET https://www.imf.org/external/datamapper/api/v1/{indicator}?periods={year}
Common Indicators:
NGDP_RPCH: Real GDP growth (annual percent change)PCPIPCH: Inflation, consumer prices (annual percent change)BCA_NGDPD: Current account balance (percent of GDP)GGXWDG_NGDP: Government gross debt (percent of GDP)LUR: Unemployment rateExample: Get real GDP growth for all countries in 2024:
curl -s "https://www.imf.org/external/datamapper/api/v1/NGDP_RPCH?periods=2024" \
| python3 -m json.tool
For more granular data, use the Dataflow-based API:
GET http://dataservices.imf.org/REST/SDMX_JSON.svc/CompactData/{database}/{dimensions}?startPeriod={start}&endPeriod={end}
Example: Monthly CPI data for the US and China:
curl -s "http://dataservices.imf.org/REST/SDMX_JSON.svc/CompactData/IFS/M.US+CN.PCPI_IX?startPeriod=2020&endPeriod=2025" \
| python3 -m json.tool
import requests
DATAMAPPER_URL = "https://www.imf.org/external/datamapper/api/v1"
def get_indicator_data(indicator, periods=None):
"""Fetch IMF indicator data for all countries."""
url = f"{DATAMAPPER_URL}/{indicator}"
params = {}
if periods:
params["periods"] = ",".join(str(p) for p in periods)
resp = requests.get(url, params=params)
resp.raise_for_status()
return resp.json()
# Compare real GDP growth across G7 countries
data = get_indicator_data("NGDP_RPCH", periods=[2022, 2023, 2024])
values = data.get("values", {}).get("NGDP_RPCH", {})
g7_codes = ["USA", "GBR", "FRA", "DEU", "JPN", "CAN", "ITA"]
print("Country | 2022 | 2023 | 2024")
print("--------|--------|--------|-------")
for code in g7_codes:
country_data = values.get(code, {})
row = f"{code:7s}"
for year in ["2022", "2023", "2024"]:
val = country_data.get(year, "N/A")
if isinstance(val, (int, float)):
row += f" | {val:5.1f}%"
else:
row += f" | {str(val):>6s}"
print(row)
import requests
def get_exchange_rates(country_codes, start_year, end_year):
"""Fetch exchange rate data from IFS database."""
codes = "+".join(country_codes)
url = (
f"http://dataservices.imf.org/REST/SDMX_JSON.svc/"
f"CompactData/IFS/A.{codes}.ENDA_XDC_USD_RATE"
f"?startPeriod={start_year}&endPeriod={end_year}"
)
resp = requests.get(url)
resp.raise_for_status()
return resp.json()
data = get_exchange_rates(["BR", "IN", "ZA"], 2015, 2024)
series = data.get("CompactData", {}).get("DataSet", {}).get("Series", [])
for s in series:
country = s.get("@REF_AREA", "Unknown")
obs = s.get("Obs", [])
if isinstance(obs, dict):
obs = [obs]
print(f"\n{country} exchange rate (LCU per USD):")
for o in obs:
print(f" {o.get('@TIME_PERIOD')}: {o.get('@OBS_VALUE')}")
Cross-Country Panel Analysis: Retrieve indicator data for multiple countries and years to construct panel datasets for econometric analysis. Combine GDP growth, inflation, and trade data for gravity models or growth regressions.
Policy Impact Assessment: Track economic indicators before and after major policy changes or economic shocks. Compare indicator trajectories across treatment and control country groups.
Forecasting Benchmarks: Use IMF WEO projections as baseline forecasts to compare against model predictions. The IMF publishes projections for most indicators several years forward.
Development Economics: Access poverty, inequality, and structural indicators for developing economies to study convergence, aid effectiveness, and institutional quality.
tools
10 document processing skills. Trigger: extracting text from PDFs, parsing references, document Q&A. Design: parsing pipelines (GROBID, marker) and structured extraction tools.
documentation
Guide to tldraw for infinite canvas whiteboarding and diagram creation
testing
Create graphical abstracts, schematic diagrams, and scientific illustrations
documentation
Create UML diagrams and architecture visualizations with PlantUML