FYI you can't easily pull daily/hourly consumption data from the API. The summary data available are not much helpful. The only workaround would be periodically pulling the summary and collecting the hourly / daily data by yourself. The summary response sample: {'currentDay': {'type': 'number', 'unit': 'kilowattHour', 'value': 0}, 'currentMonth': {'type': 'number', 'unit': 'kilowattHour', 'value': 0.6}, 'currentYear': {'type': 'number', 'unit': 'kilowattHour', 'value': 6.3}, 'lastMonth': {'type': 'number', 'unit': 'kilowattHour', 'value': 0}, 'lastSevenDays': {'type': 'number', 'unit': 'kilowattHour', 'value': 0.9}, 'lastYear': {'type': 'number', 'unit': 'kilowattHour', 'value': 0}, 'unit': {'type': 'string', 'value': 'kilowattHour'}}
... Mehr anzeigen