Forecasting API
Forecasting data for specific economic indicators, tourism insights and labour market trends.
GET https://skillscapes.csd.auth.gr:22226/forecast/economy/gdp_eur_hab
{...
data: [{
"geo": "EL30",
"indicator": gdp_eur_hab,
"year": 2025,
"value": 33503.68,
},
...}]}
/forecast/metadata
Returns a list of all available domains and their corresponding indicators.
Query Parameters
curl -X GET "https://skillscapes.csd.auth.gr:22226/forecast/metadata" \
-H "accept: application/json"
/forecast/economy/{indicator}
Retrieve forecasts for specific Economy indicators.
Query Parameters
indicator - economy indicator
Required • String
e.g., gdp_eur_hab
nuts_code - NUTS code
Optional • String
e.g., EL30
curl -X GET "https://skillscapes.csd.auth.gr:22226/forecast/economy/gdp_eur_hab" \
-H "accept: application/json"
/forecast/labour/{indicator}
Retrieves forecasts for specific Labour market indicators.
Query Parameters
indicator - labour market indicator
Required • String
e.g., employees
nuts_code - NUTS code
Optional • String
e.g., EL43
curl -X GET "https://skillscapes.csd.auth.gr:22226/forecast/labour/employees?nuts_code=EL43" \
-H "accept: application/json"
/forecast/tourism/{indicator}
Retrieves forecasts for specific Tourism indicators.
Query Parameters
indicator - tourism indicator
Required • String
e.g., arrivals
nuts_code - NUTS code
Optional • String
e.g., EL30
curl -X GET "https://skillscapes.csd.auth.gr:22226/forecast/tourism/arrivals" \
-H "accept: application/json"
/forecast/greek-tourism/{indicator}
Retrieves forecasts for specific Greek tourism indicators.
Query Parameters
indicator - greek tourism indicator
Required • String
e.g., employment_total
nuts_code - NUTS code
Optional • String
e.g., EL53
curl -X GET "https://skillscapes.csd.auth.gr:22226/forecast/greek_tourism/employment_total?nuts_code=EL53" \
-H "accept: application/json"
