Sites

List the daylight readings for a project

get

List the daylight readings for a specified date range and aggregate for a project

Authorizations
Path parameters
projectIdstringRequired

The ID of the project

siteIdstringRequired

The ID of the project

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 //weather/projects/{projectId}/sites/{siteId} HTTP/1.1
Host: api.ecosuite.io
Authorization: YOUR_API_KEY
Accept: */*
{
  "weather": [
    {
      "localDate": "2025-07-02T20:25:58.393Z",
      "conditions": {
        "sky": "text",
        "icon": "text"
      }
    }
  ],
  "range": {
    "localStartDate": "2025-07-02T20:25:58.393Z",
    "localEndDate": "2025-07-02T20:25:58.393Z"
  },
  "aggregation": "year"
}