access_token to authenticate API requests. Replace ************** with your actual access token. This api will return readings for a maximum of 3 months window.data-stream-type are:data-stream-type depends on meter configuration, but all meters should store at least "TOTAL_ACTIVE_ENERGY" or "PROFILE_TOTAL_ACTIVE_ENERGY",curl --location -g --request GET 'https://meterapi.glowmarkt.com/api/v0-1/meter-data/logged-data/site/site1/data-stream-type/TOTAL_ACTIVE_ENERGY?from=YYYY-MM-DDTHH:MM:SS&to=YYYY-MM-DDTHH:MM:SS&mode=["actual", "displayed"]' \
--header 'Authorization: Bearer **************'{
"siteId": "site1",
"dataStreamType": "TOTAL_ACTIVE_ENERGY",
"query": {
"from": "2025-01-01T00:00:00",
"to": "2025-04-01T00:00:00",
"mode": "displayed"
},
"units": "kWh",
"data": [
[
1737307800,
0
]
]
}