← Finance & Currency

Country Economics

GET /economics/:country

Get all 15 economic indicators for a specific country in a single request, each with multiple years of historical data. Returns GDP, inflation, unemployment, PPP, trade balance, government debt, population, and more. Ideal for building country economic profile pages, research dashboards, and investment analysis tools. Data from the World Bank, typically covering the most recent 5-10 years of available data.

Parameters

country required

ISO country code

Example Requests

Basic usage
curl https://nordapi.ee/api/v1/economics/NO
Norway economic indicators
curl https://nordapi.ee/api/v1/economics/NO
United States economic indicators
curl https://nordapi.ee/api/v1/economics/US
Japan economic indicators
curl https://nordapi.ee/api/v1/economics/JP

Live Response

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

Example Response

{"success":true,"country":"NO","data":{"GDP (current US$)":[{"year":2024,"value":483592648313}]}}