For example if you make the following pv_power requests at UTC 15:13 you receive
/pv_power/forecasts
Forecasts are for predicted values in the future from your request time rounded to 30 minute intervals
Predictions starting at 15:30 UTC
{
"forecasts": [
{
"period_end": "2018-08-06T15:30:00.0000000Z",
"period": "PT30M",
"pv_estimate": 0
},...
}
Estimated Actuals are the observed values from the particular satellite feeds that are in the past relative to the request time -6 hours again making a request at UTC 15:13 the response would look like the last actual value is from 6 hours in the past 09:00.
/pv_power/estimated_actuals
{
"estimated_actuals": [
{
"period_end": "2018-08-06T09:00:00.0000000Z",
"period": "PT30M",
"pv_estimate": 0
},...
}
If you have signed up for the day behind data when you registered you will have access to the Estimated Actuals (latest) which if you make at UTC 15:13 the response will look identical to the Estimated Actual response, but include up to the last interval of your current request time.
/pv_power/estimated_actuals/latest
{
"estimated_actuals": [
{
"period_end": "2018-08-06T15:00:00.0000000Z",
"period": "PT30M",
"pv_estimate": 0
},..
}