Provides access to a limited set of project information that is publicly available
/public/projects
curl -L \ --url 'https://api.ecosuite.io//public/projects' \ --header 'Authorization: YOUR_API_KEY'
{ "projects": [ { "code": "text", "name": "text", "address": "text", "startDate": "2025-02-24", "dcSize": 1, "sites": [ { "name": "text", "address": "text", "productionStartDate": "2025-02-24", "dcSize": 1, "systems": [ { "name": "text", "dcSize": 1, "type": "text" } ] } ] } ] }
/public/projects/{projectId}
The project ID
curl -L \ --url 'https://api.ecosuite.io//public/projects/{projectId}' \ --header 'Authorization: YOUR_API_KEY'
{ "project": { "code": "text", "name": "text", "address": "text", "startDate": "2025-02-24", "dcSize": 1, "sites": [ { "name": "text", "address": "text", "productionStartDate": "2025-02-24", "dcSize": 1, "systems": [ { "name": "text", "dcSize": 1, "type": "text" } ] } ] } }