Data
Lists the connectivity data for all projects for the requested date range
Authorizations
Query parameters
projectIrdstring · date-timeOptional
The project IDs to get the data for (limited to 50)
startstring · date-timeRequired
The inclusive start date
endstring · date-timeRequired
The exclusive end date
Responses
200
successful operation
application/json
400
Invalid status value
application/json
get
/connectivity/dataGET /connectivity/data?start=2025-10-31T16%3A43%3A06.319Z&end=2025-10-31T16%3A43%3A06.319Z HTTP/1.1
Host: api.ecosuite.io/
Authorization: YOUR_API_KEY
Accept: */*
{
  "projects": {
    "ANY_ADDITIONAL_PROPERTY": {
      "sites": {
        "ANY_ADDITIONAL_PROPERTY": {
          "total": 1,
          "data": [
            {
              "date": "text",
              "bytes": 1
            }
          ]
        }
      }
    }
  },
  "providers": [
    {
      "total": 1,
      "name": "text",
      "projectTotals": null
    }
  ],
  "range": {
    "localStartDate": "2025-10-31T16:43:06.319Z",
    "localEndDate": "2025-10-31T16:43:06.319Z"
  },
  "aggregation": "year"
}