DynVoltDYNVOLT · developers

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 parameterTypeRequiredDescription
startstringnoWindow start — RFC3339 UTC, e.g. 2026-08-01T00:00:00Z. Naive (offset-less) timestamps are rejected.
endstringnoWindow end — RFC3339 UTC. Must be after start.
limitintegernoMaximum 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"