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:
enabled: true
url: "http://radarr:7878"
api_key: "your_radarr_api_key"
quality_profile_id: 1
root_folder: "/movies"
search_on_add: true
monitored: true
minimum_availability: "released"
  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.