SABnzbd

The SABnzbd integrationIntegrations connect and integrate Home Assistant with your devices, services, and more. [Learn more] allows you to monitor and control your downloads with SABnzbd from within Home Assistant and set up automations based on download status and activity.

SABnzbd is a popular newsgroup binary downloader that automates the downloading, verification, repairing, and extraction of files from Usenet. With this integration, you can create smart home automations that respond to your download activity, monitor disk space, and control your downloads remotely.

Use cases

Here are some practical ways you can use the SABnzbd integration:

  • Download completion notifications: Get notified on your phone or smart display when downloads finish.
  • Bandwidth management: Automatically pause downloads during peak internet usage hours or when streaming services are active.
  • Disk space monitoring: Set up alerts when your download drive is running low on space.
  • Smart scheduling: Automatically start downloads during off-peak hours when internet is faster or cheaper.
  • Home theater integration: Pause downloads when movie night starts to ensure smooth streaming.
  • Security monitoring: Get alerted if SABnzbd goes offline or becomes unreachable.

Prerequisites

You need to grab your API key from your SABnzbd instance in order to configure this integration:

  1. Navigate to your SABnzbd web interface.
  2. Select Config* , then General.
  3. Copy your API key under Security.

Configuration

To add the SABnzbd integration to your Home Assistant instance, use this My button:

Manual configuration steps

If the above My button doesn’t work, you can also perform the following steps manually:

URL

The full URL, including port, of your SABnzbd server. Example: http://localhost:8080 or http://a02368d7-sabnzbd:8080, if you are using the add-on.

API key

The API key of your SABnzbd server. You can find this in the SABnzbd web interface under Config (top right) > General > Security.

Supported functionality

Binary sensors

  • Warnings: Indicates if SABnzbd has any warnings (for example, disk space low, download errors)

Buttons

  • Pause: Pause all downloads
  • Resume: Resume paused downloads

Sensors

This integration creates the following sensors to monitor your SABnzbd instance:

  • Status: The current status of SABnzbd (Idle, Downloading, Paused, etc.)
  • Speed: The current download speed in MB/s
  • Queue: The total size of the download queue in GB
  • Left: The remaining size of the download queue in GB
  • Disk: The total disk size at SABnzbd’s download location in GB
  • Disk free: The available disk space at SABnzbd’s download location in GB
  • Queue count: The number of items in the download queue
  • Total: Total GB downloaded since SABnzbd was last restarted

Numbers

  • Speed limit: Set the download speed limit (as a percentage of your configured maximum speed).

Examples

Basic download monitoring automation

This automation sends a notification when a download completes:

- alias: "SABnzbd download complete"
  triggers:
    - trigger: state
      entity_id: sensor.sabnzbd_status
      to: "Idle"
      from: "Downloading"
  actions:
    - action: notify.mobile_app_your_phone
      data:
        title: "Download Complete"
        message: "SABnzbd has finished downloading and extracting files"

Disk space warning

Get notified when your download drive is running low on space:

- alias: "SABnzbd low disk space warning"
  triggers:
    - trigger: numeric_state
      entity_id: sensor.sabnzbd_disk_free
      below: 10
  actions:
    - action: notify.mobile_app_your_phone
      data:
        title: "Low Disk Space"
        message: "Download drive has less than {{ states('sensor.sabnzbd_disk_free') }} GB free"
        data:
          priority: high

Bandwidth management during streaming

Automatically pause downloads when your media players are active:

- alias: "Pause downloads during movie time"
  triggers:
    - trigger: state
      entity_id: media_player.living_room_tv
      to: "playing"
  conditions:
    - condition: state
      entity_id: sensor.sabnzbd_status
      state: "Downloading"
  actions:
    - action: button.press
      target:
        entity_id: button.sabnzbd_pause
    - action: notify.mobile_app_your_phone
      data:
        message: "Downloads paused for movie time"

- alias: "Resume downloads after movie time"
  triggers:
    - trigger: state
      entity_id: media_player.living_room_tv
      from: "playing"
      for: "00:05:00"
  conditions:
    - condition: state
      entity_id: sensor.sabnzbd_status
      state: "Paused"
  actions:
    - action: button.press
      target:
        entity_id: button.sabnzbd_resume

Smart scheduling with speed limits

Reduce download speed during peak hours and increase it during off-peak hours:

- alias: "SABnzbd peak hours speed limit"
  triggers:
    - trigger: time
      at: "18:00:00"
  actions:
    - action: number.set_value
      target:
        entity_id: number.sabnzbd_speed_limit
      data:
        value: 30

- alias: "SABnzbd off-peak full speed"
  triggers:
    - trigger: time
      at: "23:00:00"
  actions:
    - action: number.set_value
      target:
        entity_id: number.sabnzbd_speed_limit
      data:
        value: 100

Dashboard card example

Create a comprehensive SABnzbd monitoring card for your dashboard:

type: entities
title: SABnzbd Downloads
entities:
  - entity: sensor.sabnzbd_status
    name: Status
  - entity: sensor.sabnzbd_speed
    name: Download speed
  - entity: sensor.sabnzbd_queue_count
    name: Items in queue
  - entity: sensor.sabnzbd_left
    name: Remaining
  - type: divider
  - entity: button.sabnzbd_pause
    name: Pause downloads
  - entity: button.sabnzbd_resume
    name: Resume downloads
  - type: divider
  - entity: sensor.sabnzbd_disk_free
    name: Free space
  - entity: number.sabnzbd_speed_limit
    name: Speed limit

Data updates

The SABnzbd integration pollsData polling is the process of querying a device or service at regular intervals to check for updates or retrieve data. By defining a custom polling interval, you can control how frequently your system checks for new data, which can help optimize performance and reduce unnecessary network traffic. [Learn more] data from your SABnzbd server every 30 seconds by default. This provides near real-time updates of download progress, queue status, and system information without putting excessive load on your SABnzbd instance.

Troubleshooting

SABnzbd not found or unreachable

  1. Verify SABnzbd is running: Check that SABnzbd is running and accessible via its web interface.
  2. Check the URL: Ensure you’re using the correct URL format including the port (typically http://localhost:8080).
  3. Test API key: Verify your API key is correct by comparing it in the SABnzbd web interface.
  4. Network connectivity: If SABnzbd is on another device, ensure Home Assistant can reach it over the network
  5. Firewall settings: Check that your firewall allows connections to SABnzbd’s port.
  6. Enable debug logging: Temporarily enable debug logging for the SABnzbd integration to get more detailed error messages.

SABnzbd add-on specific issues

If you’re using the SABnzbd Home Assistant add-on:

  1. Use internal URL: Use http://a02368d7-sabnzbd:8080 instead of localhost.
  2. Check add-on logs: Review the SABnzbd add-on logs for any error messages.
  3. Add-on configuration: Ensure the add-on is properly configured and started.

Removing the integration

This integration follows standard integration removal. No extra steps are required.

To remove an integration instance from Home Assistant

  1. Go to Settings > Devices & services and select the integration card.
  2. From the list of devices, select the integration instance you want to remove.
  3. Next to the entry, select the three dots menu. Then, select Delete.