Zestimate sensor: how to get it in dollar format?

I have the Zestimate sensor working, but it’s showing it as a number to the tenth decimal place. I’ve seen on others’ Lovelace configs that the Zestimate is showing as a dollar amount. How do I do that?

I’m using this:

- platform: template
  sensors:
    zestimate_usd:
      friendly_name: Zestimate USD
      value_template: >
        ${{"{:,}".format(states('sensor.zestimate')|int)}}

Unfortunately I can’t use with the mini-graph-card due to the dollar sign… but at least it looks nice now.

1 Like

This worked, thanks!