Expected

List the expected generation energy datums for all projects

get

List the expected generation energy datums for a specified date range and aggregate for all projects

Authorizations
Query parameters
startstring · date-timeRequired

The inclusive start date

endstring · date-timeRequired

The exclusive end date

aggregationstring · enumOptional

The aggregation to group the datums by

Possible values:
Responses
200

successful operation

application/json
get
GET //energy/datums/generation/expected HTTP/1.1
Host: api.ecosuite.io
Authorization: YOUR_API_KEY
Accept: */*
{
  "projects": {
    "expectedGeneration": 1,
    "irradianceHours": 1,
    "aggregatedTotals": {
      "ANY_ADDITIONAL_PROPERTY": {
        "expectedGeneration": 1
      }
    },
    "sites": {
      "ANY_ADDITIONAL_PROPERTY": {
        "expectedGeneration": 1,
        "irradianceHours": 1,
        "aggregatedTotals": {
          "ANY_ADDITIONAL_PROPERTY": {
            "expectedGeneration": 1
          }
        },
        "systems": {
          "ANY_ADDITIONAL_PROPERTY": {
            "expectedGeneration": 1,
            "irradianceHours": 1,
            "aggregatedTotals": {
              "ANY_ADDITIONAL_PROPERTY": {
                "expectedGeneration": 1
              }
            }
          }
        }
      }
    }
  },
  "range": {
    "localStartDate": "2025-09-16T12:39:10.486Z",
    "localEndDate": "2025-09-16T12:39:10.486Z"
  },
  "aggregation": "year"
}