API Documentation
⌘K
API Key
Get free key 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
2countrystringrequiredISO3 country code (e.g. USA, DEU, JPN) or an IMF aggregate code
indicatorstringrequiredIndicator 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
}
}