Get a device name: device_name

The device_name template function returns the human-readable name of a deviceA device is a model representing a physical or logical unit that contains entities.. You can pass it 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. If a user-set name exists for the device, that name is returned; otherwise, the default device name is used. It returns None if no matching device is found.

This is useful whenever you want to display or include a device’s name in a notificationYou can use notifications to send messages, pictures, and more, to devices. [Learn more], dashboard card, or log message. For example, you could loop through all devices in an areaAn area in Home Assistant is a logical grouping of devices and entities that are meant to match areas (or rooms) in the physical world: your home. For example, the living room area groups devices and entities in your living room. [Learn more] and list their names, or include the device name in an alert so you know exactly which device reported a problem. Since it accepts both device IDs and entity IDs, you can use whichever you happen to have available.

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_name("a1b2c3d4e5f6a1b2c3d4e5f6") }}
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".)
Living Room Thermostat

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_name(
    device_id_or_entity_id: str,
) -> str | None

Function parameters

The following parameters can be provided to this function.

device_id_or_entity_id string Required

The device ID or entity ID to look up. When using an entity ID, the function finds the device the entity belongs to and returns that device’s name.

Good to know

  • Returns None when no device matches the lookup value.
  • Uses the custom name if you set one, otherwise returns the default name the integration provided.
  • Renaming a device updates the output immediately, so the result can change over time.

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 a device name from an entity ID

Pass an entity ID to find out the name of the device it belongs to.

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_name("sensor.living_room_temperature") }}
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".)
Living Room Thermostat

Include device name in a notification

Send a notificationYou can use notifications to send messages, pictures, and more, to devices. [Learn more] that includes the name of the device reporting low battery.

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("binary_sensor.front_door_battery") }}
        has a low battery!

List all device names in an area

Combine with area_devices to display the names of all devices in an area.

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]
{% for dev_id in area_devices("Kitchen") %}
  {{ device_name(dev_id) }}
{% endfor %}

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: