Movie Hunt Documentation

Beta Movie Hunt is in active development. Behavior and APIs may change. Support is limited until official release. Only USENET is supported for now (SABnzbd, NZBGet); torrents are not yet supported.
What is Movie Hunt? Movie Hunt is a standalone movie discovery and download workflow inside Huntarr. It does not use Radarr. You browse and request movies (e.g. from TMDB), and Huntarr sends them to your own indexers and download clients. Only USENET is supported for now (SABnzbd or NZBGet); torrent clients are not yet supported. Huntarr then tracks and imports downloads into your configured root folders. It uses its own instances, indexers, clients, and profiles—no *arr app required.

Overview

Running in Docker – Endpoints and Paths

Movie Hunt runs inside the same Huntarr container. There is no separate container or port for Movie Hunt. Getting endpoints and paths right in Docker is the most common source of issues.

Docker paths: /config, /downloads, /media

Inside the Huntarr container, these paths are the ones you will use in Movie Hunt. Mount them from your host so the container can read and write files.

Path inside container Purpose
/config Huntarr config and database. Often mapped from host /path/to/appdata or similar. Required for Huntarr to persist settings.
/downloads Where your download client (e.g. SABnzbd, NZBGet) puts completed downloads. Movie Hunt imports from here. Mount the same location your download client uses (or a path that points to it).
/media Your final movie library. Movie Hunt will copy or move files from /downloads into a subfolder here (e.g. /media/Movies). Mount your host’s movie library here.

Example for new users: In your Docker run or Compose, map host folders so the container sees them like this:

Then in Movie Hunt Settings → Root Folders, add the path as the container sees it, e.g. /media or /media/Movies. Do not use your host path (e.g. /path/on/host/Movies)—that path does not exist inside the container.

Port and URL

Download clients (SABnzbd / NZBGet)

Movie Hunt talks to your download client over HTTP from inside the Huntarr container. You must use an address that the container can reach:

Root folders

Root folders in Movie Hunt are paths as seen inside the Huntarr container (see Docker paths: /config, /downloads, /media). They are where Movie Hunt will place imported movies—typically your library path, e.g. /media or /media/Movies.

Remote path mappings

When the download client reports a path that is different from how Huntarr sees the same location, you need a remote path mapping (Settings → Movie Hunt → Remote Mappings). This is very common in Docker:

Environment variables

Movie Hunt does not require any extra environment variables. It uses the same Huntarr config and database. The same TZ, BASE_URL, and config volume you use for Huntarr apply to Movie Hunt.

Requirements