Projects
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 · enumOptionalPossible values:
The aggregation to group the datums by
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
400
Invalid status value
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"
}