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
GET //connectivity/data 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-09-16T12:55:14.843Z",
"localEndDate": "2025-09-16T12:55:14.843Z"
},
"aggregation": "year"
}