/shorttermforecasthistorydates#
Forecast run dates
Endpoint#
GET |
https://hyperion.api.synmax.com/v4/shorttermforecasthistorydates |
Request Examples#
curl -X GET "https://hyperion.api.synmax.com/v4/shorttermforecasthistorydates" \
-H "Access-Key: $API_TOKEN"
from synmax.hyperion.v4 import HyperionApiClient
SYNMAX_ACCESS_TOKEN = "<YOUR_API_TOKEN>"
hyperion_api_client = HyperionApiClient(access_token=SYNMAX_ACCESS_TOKEN)
fetch_forecast_run_dates_resp = hyperion_api_client.fetch_forecast_run_dates()
fetch_forecast_run_dates_df = fetch_forecast_run_dates_resp.df()
fetch_forecast_run_dates_df.head()
Response#
Parameter |
Type |
Description |
Example |
---|---|---|---|
date_forecast_run |
string |
A date in YYYY-MM-DD format |
2021-11-24 |
Normal Output#
date_forecast_run |
---|
2024-07-01 |
2024-07-04 |
2024-07-07 |
2024-07-10 |
2024-07-13 |
2024-07-16 |
2024-07-19 |
2024-07-28 |
2024-07-31 |
2024-08-03 |