Call a function dynamically: apply

The apply template function calls another function with a value as its first argument, plus any extra arguments you give it. It lets you hand a function to places that normally expect a filter or test, like map, select, or reject.

You reach for apply when you want to run a custom function (one you built with as_function) or a built-in function across every item of a list. Most templates don’t need it. It comes in handy when you have reusable logic you want to apply to many values without writing a full for loop.

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]
{{ apply(5, float) }}
Result (floatA number that can have decimal places, like 21.5 or 3.14. Used for temperatures, percentages, and other measurements that need precision.)
5.0

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.

apply(
    value: Any,
    fn: Callable,
    *args: Any,
    **kwargs: Any,
) -> Any

Function parameters

The following parameters can be provided to this function.

value any Required

The value to pass as the first argument to the function (for example, a number from a sensor, or an item from a list).

fn any Required

The function to call. Can be any built-in template function, filter, or a macro wrapped with as_function.

args any (Optional)

Additional positional arguments to pass to the function after the value. For example, apply(5, float, 0) calls float(5, 0).

kwargs any (Optional)

Additional keyword arguments to pass to the function, written as name=value pairs.

Using apply with map

apply is most useful when combined with map to transform lists of values. You pass any function to map("apply", fn) and it runs on each item in the list.

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]: Convert list items to floats
{{ [1, 2, 3] | map("apply", float) | list }}
Result (listAn ordered collection of values, like a list of entity IDs or a list of numbers. Written with square brackets in templates, for example [1, 2, 3].)
[1.0, 2.0, 3.0]

Using apply as a test with select

When used as a test, apply lets you filter items using any function as a predicate.

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]: Select values greater than 4
{{ [3, 7, 2, 9, 5] | select("apply", gt, 4) | list }}
Result (listAn ordered collection of values, like a list of entity IDs or a list of numbers. Written with square brackets in templates, for example [1, 2, 3].)
[7, 9, 5]

Good to know

  • Extra arguments are passed after the value, so apply(5, float, 0) calls float(5, 0) and uses 0 as the default.
  • Works with built-in template functions, filters, and macros wrapped with as_function, but not arbitrary Python callables.

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.

Apply a custom function across sensor values

Use apply with as_function to run a custom macro over a list of values.

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]
{% macro macro_celsius_to_f(value, returns) %}
  {{ returns(value * 9 / 5 + 32) }}
{% endmacro %}
{% set c_to_f = as_function(macro_celsius_to_f) %}
{{ [0, 20, 100] | map("apply", c_to_f) | list }}
Result (listAn ordered collection of values, like a list of entity IDs or a list of numbers. Written with square brackets in templates, for example [1, 2, 3].)
[32.0, 68.0, 212.0]

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: