Thanks, I've been over this one as well @AutomationDude, but I can't really figure out the numbers. I'm guessing here that `wifi0` is 2.4ghz band and `wifi1` is the 5ghz band. But I still don't think it returns the channels? Only the utilization of the respective bands. And I also don't get what the props `wifi` and `non_wifi` means in the context. The response from the API is a bit different as well than from the docs. Here's what it looks like in my end when querying the API: [ { "serial": "string", "model": "MR33", "tags": "", "wifi0": [ { "utilization": 46.1, "wifi": 38.1, "non_wifi": 8.0, "start_ts": "2021-07-13T07:00:00Z", "end_ts": "2021-07-13T07:10:00Z" }, ... ], wifi1": [ { "utilization": 18.93, "wifi": 18.61, "non_wifi": 0.32, "start_ts": "2021-07-13T07:00:00Z", "end_ts": "2021-07-13T07:10:00Z" }, ... ] }, ... }
... View more