How to get correct min_co2?

The Netatmo API is a set of webservices allowing developers and third parties to access Netatmo device's data.
Post Reply
Fich
Posts: 1
Joined: 08 Nov 2022, 15:49

How to get correct min_co2?

Post by Fich »

Trying to get the min_co2 for the past week, but it doesn't quite return the correct value.

this is the request;

Code: Select all

https://api.netatmo.com/api/getmeasure?device_id=XXXXXXXXXXX&scale=1week&type=min_co2&date_begin=1667310000&optimize=false&real_time=false
Result:

Code: Select all

{
body:{
1668078000:[
447
]
But when checking for 1 day, one can see that it is not the lowest value that is returned:

Code: Select all

{
body:{
1667386800:[
352
]
1667473200:[
345
]
1667559600:[
425
]
1667646000:[
392
]
1667732400:[
377
]
1667818800:[
447
]
1667905200:[
600
]
What am I missing?
Post Reply

Return to “Netatmo API”