Returns aggregated energy metrics (charge / discharge / max power / avg power) over a specified time period, optionally grouped by site.
curl --request GET \
--url https://api.telluspower.example.com/v1/operator/aggregated/energy \
--header 'Authorization: Bearer <token>'{
"code": 123,
"message": "<string>",
"data": {
"granularity": "hour",
"start_time": "2023-11-07T05:31:56Z",
"end_time": "2023-11-07T05:31:56Z",
"series": [
{
"time": "<string>",
"charge_energy": 123,
"discharge_energy": 123,
"max_power": 123,
"avg_power": 123
}
],
"total": {
"charge_energy": 123,
"discharge_energy": 123,
"max_power": 123
}
}
}Documentation Index
Fetch the complete documentation index at: https://developers.telluspowergroup.com/llms.txt
Use this file to discover all available pages before exploring further.
OAuth2 client-credentials grant for operator-side integrations.
Obtain an access token by POSTing client_id and client_secret
to /v1/operator/oauth/token. Tokens are valid for 24 hours
(86,400 seconds).
hour, day, month site, operator Comma-separated site IDs to filter to.
Aggregated series returned.
Standard response envelope. code is 0 on success and a non-zero
application code on error (see Error Codes — §14).
curl --request GET \
--url https://api.telluspower.example.com/v1/operator/aggregated/energy \
--header 'Authorization: Bearer <token>'{
"code": 123,
"message": "<string>",
"data": {
"granularity": "hour",
"start_time": "2023-11-07T05:31:56Z",
"end_time": "2023-11-07T05:31:56Z",
"series": [
{
"time": "<string>",
"charge_energy": 123,
"discharge_energy": 123,
"max_power": 123,
"avg_power": 123
}
],
"total": {
"charge_energy": 123,
"discharge_energy": 123,
"max_power": 123
}
}
}