Sensors
Sensors endpoints of the DynVolt Open API.
Transformer-station sensor/fan nodes (temperatures, humidity, fan currents, door contacts).
GET /v1/sites/{site_id}/sensors
Transformer-station sensor/fan nodes.
Scope: plant:read · Module: basic_scada
curl "https://api.owner.dynvolt.com/v1/sites/pv-ljubas/sensors" \
-H "Authorization: Bearer $DYNVOLT_API_KEY"GET /v1/sites/{site_id}/sensors/{node_id}/current
Live sensor-node reading (temp/humidity/fan currents).
Scope: plant:read · Module: basic_scada
curl "https://api.owner.dynvolt.com/v1/sites/pv-ljubas/sensors/ts-1/current" \
-H "Authorization: Bearer $DYNVOLT_API_KEY"GET /v1/sites/{site_id}/sensors/{node_id}/history
Sensor-node 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/sensors/ts-1/history" \
-H "Authorization: Bearer $DYNVOLT_API_KEY"
