Skip to content

Radarr Integration

Radarr integration allows Blockbusterr to automatically add movies to your library.

  • Running Radarr instance (v3 or v4)
  • Radarr API key
  • Network access from Blockbusterr to Radarr
radarr:
url: "http://radarr:7878"
api_key: "your_radarr_api_key"
quality_profile: 1
root_folder: "/movies"
minimum_availability: "released"
monitor: "movieOnly"

The monitor setting controls how movies are monitored when added to Radarr.

ValueDescription
movieOnlyMonitor only the movie itself (default)
movieAndCollectionMonitor the movie and its entire collection (e.g., all MCU movies)
noneAdd the movie but don’t monitor it for downloads

The minimum_availability setting determines when Radarr considers a movie available for download.

ValueDescription
announcedAs soon as the movie is announced
inCinemasWhen the movie is released in theaters
releasedWhen the movie is released on physical/digital media (default, recommended)
  1. Open Radarr web interface
  2. Go to SettingsGeneral
  3. Scroll to Security section
  4. Copy the API Key

Via API:

Terminal window
curl "http://localhost:9090/v1/radarr/quality-profiles"

Via Radarr UI:

  1. Go to SettingsProfiles
  2. Note the profile name you want to use
  3. The ID corresponds to the order (1, 2, 3, etc.)

Via API:

Terminal window
curl "http://localhost:9090/v1/radarr/root-folders"

Via Radarr UI:

  1. Go to SettingsMedia Management
  2. Check Root Folders section
Terminal window
curl "http://localhost:9090/v1/radarr/validate"

If using Docker, use container names:

radarr:
url: "http://radarr:7878" # Container name, not localhost

Ensure both containers are on the same Docker network.