Projects

List the publicly available projects

get

Provides access to a limited set of project information that is publicly available

Authorizations
Responses
200
successful operation
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"
            }
          ]
        }
      ]
    }
  ]
}

Get the publicly available project details

get

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
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"
          }
        ]
      }
    ]
  }
}