Projects
Provides access to a limited set of project information that is publicly available
Authorizations
Responses
200
successful operation
application/json
400
Invalid status value
application/json
get
GET //public/projects HTTP/1.1
Host: api.ecosuite.io
Authorization: YOUR_API_KEY
Accept: */*
{
"projects": [
{
"code": "text",
"name": "text",
"address": "text",
"startDate": "2025-07-06",
"dcSize": 1,
"sites": [
{
"name": "text",
"address": "text",
"productionStartDate": "2025-07-06",
"dcSize": 1,
"systems": [
{
"name": "text",
"dcSize": 1,
"type": "text"
}
]
}
]
}
]
}
Provides access to a limited set of project information that is publicly available
Authorizations
Path parameters
projectIdstringRequired
The project ID
Responses
200
successful operation
application/json
400
Invalid status value
application/json
get
GET //public/projects/{projectId} HTTP/1.1
Host: api.ecosuite.io
Authorization: YOUR_API_KEY
Accept: */*
{
"project": {
"code": "text",
"name": "text",
"address": "text",
"startDate": "2025-07-06",
"dcSize": 1,
"sites": [
{
"name": "text",
"address": "text",
"productionStartDate": "2025-07-06",
"dcSize": 1,
"systems": [
{
"name": "text",
"dcSize": 1,
"type": "text"
}
]
}
]
}
}