Projects

List the SolarNetwork datums for a project

get

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

Authorizations
Path parameters
projectIdstringRequired

The ID of the project to get the datums for

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:
nodeIdsstringOptional

Comma separated list of node IDs

sourceIdstringOptional

Specify a single source ID, can be a wildcard

sourceIdsstringOptional

Comma separated list of source IDs

Responses
200
successful operation
application/json
get
GET //energy/datums/nodes/projects/{projectId} HTTP/1.1
Host: api.ecosuite.io
Authorization: YOUR_API_KEY
Accept: */*
{
  "data": [
    {
      "created": "2025-07-01T22:17:11.931Z",
      "nodeId": 1,
      "sourceId": "text",
      "ANY_ADDITIONAL_PROPERTY": 1
    }
  ],
  "range": {
    "localStartDate": "2025-07-01T22:17:11.931Z",
    "localEndDate": "2025-07-01T22:17:11.931Z"
  },
  "aggregation": "year",
  "sourceIds": "text"
}