Help JSON format

Hi everyone,

I have this output from a web link:

{“FD:15:AA:B0:EB:81”: {“temperature”: 17.0, “humidity”: 76.0, “name”: “Quarto”, “pressure”: 1028.0}, “F9:9C:C5:C8:A3:DD”: {“temperature”: 19.0, “humidity”: 64.0, “name”: “Sala”, “pressure”: 1027.0}, “DE:77:93:F9:C8:AE”: {“temperature”: 18.0, “humidity”: 16.0, “name”: “Office”, “pressure”: 1027.0}}

what kind of sensor i use, maybe Restful sensor? but i have multiple values and sensors

thanks

I think you can do that with restful sensor. Then your value template will look like this:

{{value_json[“FD:15:AA:B0:EB:81”][‘temperature’] | float }}

That gets the temp of the first item - adjust to suit your needs.

Did you find a way to deal with multiple values?

Use multiple sensors?