Hi guys. Could somebody tell me how to find or know my Awair Air Monitor device UUID?
If you still need this, you can get it from the Awair API. Using your access token (which you’ll need anyways to set up the Home Assistant integration), you could run the following:
curl --location --request GET 'https://developer-apis.awair.is/v1/users/self/devices'
--header 'Authorization: Bearer YOUR_ACCESS_TOKEN_GOES_HERE'
And the response will have a bit that looks like: "deviceUUID": "this-is-your-UUID"
.
Hope that helps!