Skip to content

Home Assistant (HASS.IO) Integration with Apprise

This guide explains how to integrate Apprise with Home Assistant using the built-in Apprise notification platform. This approach allows you to centralize all notification logic in a single configuration file (or Apprise API source) while letting Home Assistant focus purely on automation logic.

Using Apprise provides several benefits:

  • A single configuration file for all notification services
  • Support for dozens of providers (email, Telegram, ntfy, Kodi, and more)
  • Tag-based routing for flexible notification targeting
  • No vendor lock-in at the automation level

Home Assistant remains unaware of provider details. It simply sends messages to Apprise and lets Apprise do the rest.


Apprise is built into Home Assistant Core. You do not need to install a custom component or add-on. It is available immediately via the notify platform.

Choose the configuration method that best fits your needs.

This method works well for a quick setup or when you don’t need to target different services individually. The url parameter accepts a single URL or a list of URLs — all of them are notified together on every call.

Edit configuration.yaml

Add one or more URLs directly to your configuration file.

/config/configuration.yaml
notify:
- name: apprise_quick
platform: apprise
url: tgram://123456789:ABCDefghIJKLmnOPqrstUVwxyz

To notify multiple services, pass them as a list:

/config/configuration.yaml
notify:
- name: apprise_quick
platform: apprise
url:
- tgram://123456789:ABCDefghIJKLmnOPqrstUVwxyz
- mailtos://user:pass@smtp.gmail.com

Once configured and Home Assistant is restarted, you can send notifications using the notify service.

If you used Method 1, your service is likely named notify.apprise_quick. You do not need to provide a target because the destination is hardcoded in your configuration.

- alias: "[Interactive] - Sunset Notice"
trigger:
platform: sun
event: sunset
action:
# Matches the 'name' you gave in configuration.yaml
service: notify.apprise_quick
data:
title: "Good evening"
message: "The sun is setting."

Example: Using Methods 2 & 3 (Config Based)

Section titled “Example: Using Methods 2 & 3 (Config Based)”

If you used Method 2 or Method 3, you can control exactly who gets notified by using the target field to match the tags defined in your YAML file (or API configuration).

- alias: "[Interactive] - Sunset Notice"
trigger:
platform: sun
event: sunset
action:
service: notify.apprise
data:
# This 'target' matches the 'tag' in your config
target: email
title: "Good evening"
message: "The sun is setting."

You can combine tags in your target field to create powerful notification groups on the fly.

Target ValueLogicDescription
target: devopsSimpleNotifies everything tagged devops.
target: [devops, alarm]ORNotifies everything tagged devops OR alarm.
target: "devops alarm"ANDNotifies only services that have BOTH tags.

Before wiring Apprise into automations, verify it works from the command line:

Terminal window
apprise -vv -t "Test" -b "Hello from the CLI" \
tgram://YOUR_BOT_TOKEN/YOUR_CHAT_ID

Then confirm Home Assistant can reach the same service by triggering the notify.apprise service manually from Developer Tools → Services.

If you want Apprise to call back into Home Assistant itself (for example, to push to a mobile device registered in the HA companion app), you can use the hassio:// plugin in your Apprise URLs. To find the exact service name:

  1. In Home Assistant, open Developer Tools → Services.
  2. Filter by domain notify — you will see entries like notify.mobile_app_johns_phone.
  3. The portion after notify. is the service name to use in the Apprise URL:
Terminal window
apprise -vv -t "Alert" -b "Test push" \
'hassio://ha.local/YOUR_TOKEN/notify.mobile_app_johns_phone'

See the Home Assistant service plugin for the full hassio:// URL reference.

If your notifications aren’t sending, you can enable debug logging specifically for the Apprise component in Home Assistant. Add this to your configuration.yaml:

logger:
default: info
logs:
homeassistant.components.apprise: debug

After restarting, check your Home Assistant logs. You will see Apprise attempting to load your configuration and dispatch messages, which will help identify invalid URLs or network issues.

Questions or Feedback?

Documentation

Notice a typo or an error? Report it or contribute a fix .

Technical Issues

Having trouble with the code? Open an issue on GitHub:

Made with love from Canada