Get config entry attribute: config_entry_attr

The config_entry_attr template function returns a specific attribute from a config entry, identified by its config entry ID. You can retrieve attributes like domain, title, state, source, disabled_by, and pref_disable_polling. It returns None if the config entry does not exist.

This is useful for inspecting the configuration behind your 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]. For example, you might want to check if a config entry is still loaded and working, find out which integrationIntegrations connect and integrate Home Assistant with your devices, services, and more. [Learn more] domain it belongs to, or display the title of the config entry in a notificationYou can use notifications to send messages, pictures, and more, to devices. [Learn more]. Combined with config_entry_id, you can trace any entity back to its config entry and read details about it.

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]
{{ config_entry_attr("01234567890abcdef01234567890abcd", "title") }}
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 Hue Bridge

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.

config_entry_attr(
    config_entry_id: str,
    attr_name: str,
) -> Any

Function parameters

The following parameters can be provided to this function.

config_entry_id string Required

The config entry ID to look up. You can get this from config_entry_id.

attr_name string Required

The attribute to retrieve. Must be one of: domain, title, state, source, disabled_by, or pref_disable_polling.

Available attributes

The following attributes can be retrieved from a config entry:

  • domain: The integration domain (for example, hue, zwave_js).
  • title: The user-defined title of the config entry.
  • state: The current state of the config entry (for example, loaded, setup_error, not_loaded).
  • source: How the config entry was created (for example, user, discovery).
  • disabled_by: Why the config entry is disabled, or None if it is not disabled.
  • pref_disable_polling: Whether polling has been disabled for this config entry.

Good to know

  • Returns None when the config entry does not exist or when the attribute name is not one of the supported ones.
  • Only the fixed attribute names listed above are allowed. Arbitrary field names are rejected.
  • The input is the config entry ID, not an entity ID. Resolve from an entity with config_entry_id 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.

Check the state of a config entry from an entity

Look up the config entry behind an entity and check its state to see if the integration is running.

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]
{% set entry_id = config_entry_id("light.living_room") %}
{{ config_entry_attr(entry_id, "state") }}
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".)
loaded

Get the integration domain for an entity

Find out which integration is responsible for a specific 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]
{% set entry_id = config_entry_id("sensor.power_meter") %}
{{ config_entry_attr(entry_id, "domain") }}
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".)
shelly

Check if a config entry was discovered automatically

Determine whether a config entry was set up manually or discovered automatically.

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]
{% set entry_id = config_entry_id("light.bedroom") %}
{{ config_entry_attr(entry_id, "source") }}
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".)
discovery

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: