Today at a specific time: today_at

The today_at template function returns a datetimeA value representing a specific moment in time, including the date, time, and time zone. For example, 2026-04-05 14:30:00+00:00. Used for timestamps, scheduling, and time-based calculations. object for today’s date at a specific time you provide. Give it a time string like “08:00” or “14:30:00” and it returns a full datetime representing that time today, in your local time zone.

This is especially useful in automationsAutomations in Home Assistant allow you to automatically respond to things that happen in and around your home. [Learn more] when you need to check whether the current time is before or after a specific point in the day. For example, you might want to turn on lights only after 18:00, send a morning summary at 07:00, or check if it is still before bedtime. Instead of manually constructing a datetime from the current date and your target time, today_at handles it in a single call.

Usage

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

As a function
{{ today_at("08:00") }}
Result (datetimeA value representing a specific moment in time, including the date, time, and time zone. For example, 2026-04-05 14:30:00+00:00. Used for timestamps, scheduling, and time-based calculations.)
2024-03-15 08:00:00+01:00

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.

today_at(time_str: str = "00:00") -> datetime

Function parameters

The following parameters can be provided to this function.

time_str string (Optional, default: “00:00”)

A time string in “HH:MM” or “HH:MM:SS” format. If not provided, defaults to midnight (“00:00”).

Comparing with the current time

A common use is to check if the current time is before or after a specific point in the day, using now for comparison.

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]
{{ now() > today_at("18:00") }}
Result (booleanA value that is either true or false. Used for on/off states, yes/no conditions, and similar binary choices.)
false

Good to know

  • The returned datetime is in your Home Assistant time zone, making it safe to compare directly with now.
  • “Today” is determined when the template runs, so a template scheduled at 23:59 and compared at 00:01 will use two different dates.
  • Accepts strings in "HH:MM" or "HH:MM:SS" format. Other formats raise an error.

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.

Only run an automation in the evening

Use today_at in a conditionConditions are an optional part of an automation that will prevent an action from firing if they are not met. [Learn more] to limit an automationAutomations in Home Assistant allow you to automatically respond to things that happen in and around your home. [Learn more] to run only between 18:00 and 23:00.

AutomationAutomations in Home Assistant allow you to automatically respond to things that happen in and around your home. [Learn more]
condition:
  - condition: template
    value_template: >
      {{ today_at("18:00") <= now() < today_at("23:00") }}

Calculate minutes until a time

Find out how many minutes remain until a specific time today.

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]
{{ ((today_at("17:00") - now()).total_seconds() / 60) | int }}
Result (integerA whole number without decimal places, like 1, 42, or -5. Used for counts, indices, and whole values.)
150

Set a time-based brightness

Adjust light brightness based on how close it is to bedtime.

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 bedtime = today_at("22:00") %}
{% set hours_left = ((bedtime - now()).total_seconds() / 3600)
   | float | round(1) %}
{{ [((hours_left / 4) * 100) | int, 10] | max }}
Result (integerA whole number without decimal places, like 1, 42, or -5. Used for counts, indices, and whole values.)
75

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: