← Finance & Currency

Available Indicators

GET /economics/indicators

List all 15 available economic indicators with their keys and World Bank API codes. Indicators include GDP, GDP per capita, inflation (CPI), unemployment rate, purchasing power parity (PPP), trade balance, government debt, population, life expectancy, and more. Use this endpoint to discover which indicators are available before querying country-specific data. Data sourced from the World Bank Open Data platform.

Example Requests

Basic usage
curl https://nordapi.ee/api/v1/economics/indicators

Live Response

{
  "count": 15,
  "data": [
    {
      "code": "EN.ATM.CO2E.PC",
      "key": "co2_emissions"
    },
    {
      "code": "GC.DOD.TOTL.GD.ZS",
      "key": "debt_to_gdp"
    },
    {
      "code": "NE.EXP.GNFS.CD",
      "key": "exports"
    },
    {
      "code": "BX.KLT.DINV.CD.WD",
      "key": "fdi_inflows"
    },
    {
      "code": "NY.GDP.MKTP.CD",
      "key": "gdp"
    },
    {
      "code": "NY.GDP.PCAP.CD",
      "key": "gdp_per_capita"
    },
    {
      "code": "NY.GNP.PCAP.CD",
      "key": "gni_per_capita"
    },
    {
      "code": "NE.IMP.GNFS.CD",
      "key": "imports"
    },
    {
      "code": "FP.CPI.TOTL.ZG",
      "key": "inflation"
    },
    {
      "code": "FR.INR.RINR",
      "key": "interest_rate"
    },
    {
      "code": "SP.DYN.LE00.IN",
      "key": "life_expectancy"
    },
    {
      "code": "SP.POP.TOTL",
      "key": "population"
    },
    {
      "code": "PA.NUS.PPP",
      "key": "ppp_conversion"
    },
    {
      "code": "NE.RSB.GNFS.CD",
      "key": "trade_balance"
    },
    {
      "code": "SL.UEM.TOTL.ZS",
      "key": "unemployment"
    }
  ],
  "success": true
}

Example Response

{"success":true,"data":[{"key":"gdp","code":"NY.GDP.MKTP.CD"},{"key":"inflation","code":"FP.CPI.TOTL.ZG"}]}