Get entity state: states
The states template function returns the current state of an entityAn entity represents a sensor, actor, or function in Home Assistant. Entities are used to monitor physical properties or to control other entities. An entity is usually part of a device or a service. [Learn more] as a text value. For example, a light might return on or off, a temperature sensorSensors return information about a thing, for instance the level of water in a tank. [Learn more] might return 21.5, and a person might return home or away.
This is the most fundamental template function in Home Assistant. Every time you want to read what a sensor is showing, check if a deviceA device is a model representing a physical or logical unit that contains entities. is on, or use a value in a notificationYou can use notifications to send messages, pictures, and more, to devices. [Learn more] or calculation, you’ll use states(). It’s also the safest way to read a state because it returns unknown if the entity doesn’t exist, instead of causing an error.
For dashboards, a Tile card shows an entity’s state without any template. Reach for states() when you need the value inside an automation, a notification message, or another template.
Usage
Here’s how to use this template function. Copy any example and adjust it to your setup.
{{ states("sensor.living_room_temperature") }}
21.5
Function signature
The signature is a technical summary of this template function. It shows the name of the function, the values (called parameters) it accepts, and what type of data each parameter expects (for example, a piece of text or a number).
Function parameters that have a = with a value after them are optional. If you leave them out, the default value shown is used automatically. Function parameters without a default are required.
states(
entity_id: str,
) -> str
Function parameters
The following parameters can be provided to this function.
Iterating over states
You can also use states without an argument to loop through all entities, or use states.domain to loop through entities of a specific domain.
{% for state in states.sensor %}
{{ state.entity_id }}: {{ state.state }}
{% endfor %}
Not sure what state an entity has? Go to Developer Tools > States to see the current state and all attributes of every entity in your system.
Important: states are always strings
The value returned by states() is always a text string, even for numeric sensors. If you need to do math with it, convert it using | float or | int first.
{{ states("sensor.temperature") | float + 1 }}
22.5
Good to know
- Returns the text
unknownwhen the entity does not exist, notNoneand not an error. - The result is always a string, even for numeric sensors. Convert with
floatorintbefore doing math. - Using
states.sensor.name(dotted notation) raises an error when the entity is missing, whilestates("sensor.name")does not.
Try it yourself
Ready to test this? Open Developer tools > Template, paste the example into the Template editor, and watch the result update on the right. Edit the values to see how the function adapts to your own entitiesAn entity represents a sensor, actor, or function in Home Assistant. Entities are used to monitor physical properties or to control other entities. An entity is usually part of a device or a service. [Learn more].
More examples
Real scenarios where this function comes up in automations and templates. Copy any example and adapt it to your setup.
Use a sensor value in a notification
Include the current temperature reading in a notification message.
action:
- action: notify.mobile
data:
message: >
The temperature is {{ states("sensor.outside_temperature") }}°C
Check a value before acting
Read a sensor value, convert it to a number, and use it in a conditionConditions are an optional part of an automation that will prevent an action from firing if they are not met. [Learn more].
{{ states("sensor.humidity") | float > 70 }}
true
Still stuck?
The Home Assistant community is quick to help: join Discord for real-time chat, post on the community forum with your template and expected result, or share on our subreddit /r/homeassistant.
AI assistants like ChatGPT or Claude can also explain or fix templates when you describe what you want in plain language.
Related template functions
These functions work well alongside this one:
-
Test entity state: is_state - Tests if an entity is in a specific state.
-
Get state attribute: state_attr - Returns the value of a specific attribute from an entity’s state.
-
Check if entity has a value: has_value - Tests if an entity exists and has a valid state (not unavailable or unknown).
-
Expand groups into entities: expand - Expands groups and zones into a sorted list of individual entity state objects.