List the historical status logs for a specific home battery. Used to find out the state of the battery at each point it reported in to ev.energy.
- Mock serverhttps://developers.ev.energy/_mock/ev.energy-api-v2/home_batteries/{home_battery_id}/status_logs
- Live API for both production and sandbox requests.https://api.ev.energy/v2/home_batteries/{home_battery_id}/status_logs
- Staging server for internal testing only.https://api-staging.ev.energy/v2/home_batteries/{home_battery_id}/status_logs
curl -i -X GET \
'https://developers.ev.energy/_mock/ev.energy-api-v2/home_batteries/{home_battery_id}/status_logs?page_before=xmpl01HNFZM7Q8FXASZXYZ6XM3TQRR&page_after=xmpl01HNFZM7Q8FXASZXYZ6XM3TQRR&page_size=10&sampled_at__gte=2024-04-17T09%3A39%3A45.984584Z&sampled_at__lte=2024-04-17T09%3A39%3A45.984584Z&expand=home_battery' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'EvEnergy-Version: 2'List all status logs for a specific home battery, sorted newest first.
Provides links to the previous and next pages of data, if they exist.
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.
A resource that represents a single, physical home battery.
Remaining battery charge level as a whole percentage (0-100).
Current charge rate in W. A positive value indicates charging.
Minimum reserve charge level as a whole percentage (0-100).
Derived operating state of the battery.
[ { "url": "https://api.ev.energy/v2/home_batteries/hoba01J5DCXX8DMJDJYGVR1DW4J7AA/status_logs/2024-04-17T09:39:45.984584Z/", "sampled_at": "2019-08-24T14:15:22Z", "home_battery": { … }, "capacity_watt_hours": 13500, "state_of_charge_percentage": 82, "charge_rate_watts": 2200, "discharge_limit_percentage": 20, "status": "CHARGING", "operation_mode": "SELF_RELIANCE" } ]