Get device attribute: device_attr

The device_attr template function returns the value of a specific attribute from a deviceA device is a model representing a physical or logical unit that contains entities. in the device registry. You can pass either a device ID or 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] ID along with the attribute name you want to retrieve. If the device or attribute doesn’t exist, it returns None.

This is useful when you need device-level information that isn’t available through entity states or attributes. For example, you might want to check the manufacturer, model, software version, or serial number of a device. You could use this to track which devices need firmware updates, build a hardware inventory, or include model information in a support request notification. Common attribute names include manufacturer, model, sw_version, hw_version, serial_number, and identifiers.

Usage

Here’s how to use this template function. Copy any example and adjust it to your setup.

TemplateA template is an automation definition that can include variables for the action or data from the trigger values. This allows automations to generate dynamic actions. [Learn more]
{{ device_attr("a1b2c3d4e5f6a1b2c3d4e5f6", "manufacturer") }}
Result (stringA piece of text, like a name, message, or entity ID. In templates, wrap strings in quotes, like "living_room" or "lights are on".)
Philips

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.

device_attr(
    device_or_entity_id: str,
    attr_name: str,
) -> Any

Function parameters

The following parameters can be provided to this function.

device_or_entity_id string Required

The device ID or entity ID to look up. When using an entity ID, the function first resolves the device the entity belongs to.

attr_name string Required

The name of the device attribute to retrieve. Common attributes include manufacturer, model, sw_version, hw_version, serial_number, and identifiers.

Tip

To see all available device attributes, go to Developer Tools > States and look at the device registry entries, or use the Devices page in Settings > Devices & services to inspect a specific device.

Good to know

  • Returns None when the device or attribute does not exist, so chain with | default(value) for display fallbacks.
  • This reads from the device registry, not the entity state. Attributes like manufacturer and sw_version live here, not in state_attr.
  • Accepts either a device ID or an entity ID. When given an entity ID, it resolves to the device first.

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.

Get the model of a device from an entity ID

You can pass an entity ID directly. The function automatically resolves the device behind the entity.

TemplateA template is an automation definition that can include variables for the action or data from the trigger values. This allows automations to generate dynamic actions. [Learn more]
{{ device_attr("light.living_room", "model") }}
Result (stringA piece of text, like a name, message, or entity ID. In templates, wrap strings in quotes, like "living_room" or "lights are on".)
LCA001

Check the firmware version of a device

Read the software version to see if a device is up to date.

TemplateA template is an automation definition that can include variables for the action or data from the trigger values. This allows automations to generate dynamic actions. [Learn more]
{{ device_attr("a1b2c3d4e5f6a1b2c3d4e5f6", "sw_version") }}
Result (stringA piece of text, like a name, message, or entity ID. In templates, wrap strings in quotes, like "living_room" or "lights are on".)
1.104.2

Include device info in a notification

Send a notificationYou can use notifications to send messages, pictures, and more, to devices. [Learn more] with the manufacturer and model when a device goes offline.

ActionActions are used in several places in Home Assistant. As part of a script or automation, actions define what is going to happen once a trigger is activated. In scripts, an action is called *sequence*. [Learn more]
action:
  - action: notify.mobile
    data:
      message: >
        {{ device_name("sensor.garage_door_battery") }} is offline.
        Device:
        {{ device_attr("sensor.garage_door_battery", "manufacturer") }}
        {{ device_attr("sensor.garage_door_battery", "model") }}

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.

Tip

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: