I've recently received my EV Charger and have been trying to my wits end to get the API to provide my home assistant with all the information I need for automated charging. Specifically, I'm dying to access the vehicles SOC, to no avail.
The problem I've been encountering with the API is that it only seems to be spitting out 4 of the 22 datapoints I'd be expecting. https://givenergy.cloud/docs/api/v1#ev-charger-meter-data
The only measurands I get are 1, 4, 13, 21.
Standard caveat applies that I'm not well versed in advanced coding (I'd consider polling API's in a terminal advanced), so if there's something crucial I'm missing with my queries, please let me know. Below is a copy of the query, with appropriate information redacted.
curl --request GET \
--get "https://api.givenergy.cloud/v1/ev-charger/{EV UUID}/meter-data?start_time=2024-06-02T15%3A00%3A00Z&end_time=2024-06-02T16%3A00%3A00Z" \
--header "Authorization: Bearer {GivEnergy API KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"