Automated missing-media search for your *arr stack.
Small batches. Polite intervals. Zero indexer abuse.
Documentation • Quick Start • Docker • Helm Chart • Report Bug
Radarr, Sonarr, Lidarr, Readarr, and Whisparr monitor RSS feeds for new releases, but they do not go back and actively search for content already in your library that is missing or below your quality cutoff. Their built-in "Search All Missing" button fires every item at once, which can overwhelm indexer API limits and get you temporarily banned.
Houndarr fixes this by searching slowly, politely, and automatically. It works through your backlog in small, configurable batches with sleep intervals between cycles, per-item cooldowns, and hourly API caps. It runs as a single Docker container alongside your existing *arr stack and stays out of the way.
Supported Apps
- Radarr, Sonarr, Lidarr, Readarr, and Whisparr
- Connect multiple instances of each
Search Modes
- Missing media (episodes, movies, albums, books)
- Cutoff-unmet items below your quality profile
- Library upgrades for items that already meet cutoff
- Configurable search context (episode vs. season, album vs. artist, book vs. author)
Rate Limiting and Safety
- Small, configurable batch sizes with sleep intervals between cycles
- Per-item cooldown prevents re-searching the same item too soon
- Per-instance hourly API cap keeps indexer usage in check
- Download-queue backpressure gate skips cycles when the queue is full
- Bounded multi-page scanning so deep backlog items are not starved
Web UI
- Live dashboard with instance status cards and run-now buttons
- Filterable, searchable log viewer with multi-format copy and export
- Dark-themed interface (FastAPI + HTMX + Tailwind CSS)
Create a docker-compose.yml:
services:
houndarr:
image: ghcr.io/av1155/houndarr:latest
container_name: houndarr
restart: unless-stopped
ports:
- "8877:8877"
volumes:
- ./data:/data
environment:
- TZ=America/New_York
- PUID=1000
- PGID=1000docker compose up -dOpen http://<your-host>:8877 and create your admin account on the setup screen.
Prefer docker run?
docker run -d \
--name houndarr \
--restart unless-stopped \
-p 8877:8877 \
-v /path/to/data:/data \
-e TZ=America/New_York \
-e PUID=1000 \
-e PGID=1000 \
ghcr.io/av1155/houndarr:latestReplace /path/to/data with an absolute path on your host where Houndarr should store its database and master key.
For environment variables, reverse proxy setup, Kubernetes, Helm, and building from source, see the full documentation.
What Houndarr Does NOT Do
- No download-client integration: it triggers searches in your *arr instances, which handle downloads
- No Prowlarr/indexer management: your *arr instances manage their own indexers
- No request workflows: no Overseerr/Ombi-style request handling
- No multi-user support: single admin username and password
- No media file manipulation: it never touches your library files
- No telemetry, analytics, or call-home. The only outbound connections go to your configured *arr instances.
- API keys are encrypted at rest with Fernet (AES-128-CBC + HMAC-SHA256) and never sent back to the browser.
- Authentication uses bcrypt password hashing, signed session tokens, CSRF protection, and login rate limiting.
- The container runs as a non-root user after PUID/PGID remapping.
- 63 integration tests validate immunity to every finding from the Huntarr.io security review; a live smoke test runs in CI on every PR.
For details on how Houndarr handles credentials, network behavior, and trust boundaries, see Trust and Security. To report a vulnerability, see SECURITY.md.
See CONTRIBUTING.md for development workflow, coding standards, and quality gates.


