Loggers
Loggers endpoints of the DynVolt Open API.
SmartLogger (plant) inventory and per-logger telemetry history.
GET /v1/sites/{site_id}/loggers
List SmartLoggers (plants).
Scope: plant:read · Module: basic_scada
curl "https://api.owner.dynvolt.com/v1/sites/pv-ljubas/loggers" \
-H "Authorization: Bearer $DYNVOLT_API_KEY"GET /v1/sites/{site_id}/loggers/{logger_id}/history
Logger telemetry history (?start&end&limit).
Scope: plant: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. |
limit | integer | no | Maximum rows to return (capped at 10000). |
curl "https://api.owner.dynvolt.com/v1/sites/pv-ljubas/loggers/4/history" \
-H "Authorization: Bearer $DYNVOLT_API_KEY"
