← Finance & Currency

Specific Indicator

GET /economics/:country/:indicator

Get a single economic indicator for a specific country with multiple years of historical data. Provide the country code and indicator key (e.g., gdp, inflation, gdp_per_capita, unemployment, ppp) in the URL. Returns year-by-year values for trend analysis. More focused than the full country endpoint when you only need one metric, useful for time-series charts and targeted economic comparisons.

Parameters

country required

Country code

indicator required

Indicator key (e.g. gdp, inflation, gdp_per_capita)

Example Requests

Basic usage
curl https://nordapi.ee/api/v1/economics/US/gdp_per_capita
US GDP per capita over time
curl https://nordapi.ee/api/v1/economics/US/gdp_per_capita
Norway inflation rate
curl https://nordapi.ee/api/v1/economics/NO/inflation
Germany unemployment rate
curl https://nordapi.ee/api/v1/economics/DE/unemployment

Live Response

HTTP 404: {
  "error": "No data available for the requested parameters",
  "success": false
}

Example Response

{"success":true,"data":[{"year":2024,"value":84534.04},{"year":2023,"value":80035.18}]}