Returns live power data for the HEM system. Power values (in watts) are derived from the most recent energy statistics, including raw measurements and calculated power flows between sources (solar, battery, grid) and destinations (home, battery, grid).
- Mock serverhttps://developers.ev.energy/_mock/ev.energy-api-v2/hem_systems/{hem_system_id}/live_power
- Live API for both production and sandbox requests.https://api.ev.energy/v2/hem_systems/{hem_system_id}/live_power
- Staging server for internal testing only.https://api-staging.ev.energy/v2/hem_systems/{hem_system_id}/live_power
curl -i -X GET \
'https://developers.ev.energy/_mock/ev.energy-api-v2/hem_systems/{hem_system_id}/live_power' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'EvEnergy-Version: 2'Returns live power data for the HEM system.
Indicates the version of the API that generated this response. If EvEnergy-Version was not specified in the request, this will be your OAuth application's default version.
The maximum number of requests that can be made to this endpoint per hour. Defaults to 1000 but may vary per client.
The number of requests remaining until this client's rate limit is reached.
The timestamp of the energy statistics period.
Solar generation power in watts. Null if inverter stats unavailable.
Household consumption power in watts. Null if any required stats unavailable.
Power imported from the grid in watts. Null if any required stats unavailable.
Power exported to the grid in watts. Null if any required stats unavailable.
Battery charging power in watts. Null if any required stats unavailable.
Battery discharging power in watts. Null if any required stats unavailable.
Derived power flow from solar to home in watts. Null if any required stats unavailable.
Derived power flow from solar to battery in watts. Null if any required stats unavailable.
Derived power flow from solar to grid in watts. Null if any required stats unavailable.
Derived power flow from battery to home in watts. Null if any required stats unavailable.
Derived power flow from battery to grid in watts. Null if any required stats unavailable.
Derived power flow from grid to home in watts. Null if any required stats unavailable.
Derived power flow from grid to battery in watts. Null if any required stats unavailable.
{ "sampled_at": "2024-06-15T12:00:00Z", "generation_watts": 3000, "consumption_watts": 2400, "import_watts": 1200, "export_watts": 600, "charge_watts": 1800, "discharge_watts": 900, "solar_to_home_watts": 1500, "solar_to_battery_watts": 1000, "solar_to_grid_watts": 500, "battery_to_home_watts": 700, "battery_to_grid_watts": 200, "grid_to_home_watts": 200, "grid_to_battery_watts": 100, "battery_state_of_charge_percentage": 82 }