API Documentation

⌘K
GET/api/1/economic-forecasts/{country}/{indicator}

Country Indicator Forecast

Returns the full history and IMF projection for one indicator of a country (e.g. USA/NGDP_RPCH for US real GDP growth). See /economic-forecasts/indicators for available indicator IDs.

Parameters

2
countrystringrequired
path

ISO3 country code (e.g. USA, DEU, JPN) or an IMF aggregate code

indicatorstringrequired
path

Indicator ID (e.g. NGDP_RPCH, PCPIPCH, LUR)

Responses

Was this helpful?
Request
curl -X GET \
  'https://api.eulerpool.com/api/1/economic-forecasts/US/sma' \
  -H 'Accept: application/json'
200 Response
{
  "country": "string",
  "indicator": "string",
  "name": "string",
  "units": "string",
  "forecastFromYear": 0,
  "series": {
    "year": 0,
    "value": 0,
    "isForecast": false
  }
}