Energy
Energy endpoints of the DynVolt Open API.
Production energy — day-by-hour matrices and per-logger hourly output.
GET /v1/sites/{site_id}/energy/hourly
Day-by-hour energy matrix (?start&end&logger_ids).
Scope: energy:read · Module: basic_scada
| Query parameter | Type | Required | Description |
|---|---|---|---|
start | string | no | Window start — RFC3339 UTC, e.g. 2026-08-01T00:00:00Z. Naive (offset-less) timestamps are rejected. |
end | string | no | Window end — RFC3339 UTC. Must be after start. |
logger_ids | string | no | Comma-separated logger IDs to include. Omit for all plants. |
curl "https://api.owner.dynvolt.com/v1/sites/pv-ljubas/energy/hourly" \
-H "Authorization: Bearer $DYNVOLT_API_KEY"GET /v1/sites/{site_id}/loggers/{logger_id}/hourly-energy
Hourly production for one logger (?since=UTC ISO).
Scope: energy:read · Module: basic_scada
| Query parameter | Type | Required | Description |
|---|---|---|---|
since | string | no | Return hours at or after this instant — RFC3339 UTC. |
curl "https://api.owner.dynvolt.com/v1/sites/pv-ljubas/loggers/4/hourly-energy" \
-H "Authorization: Bearer $DYNVOLT_API_KEY"