The documentation here is for an unreleased version of Recyclarr.
Visit the documentation site for the Current Version instead.recyclarr list quality-profiles
Usage
recyclarr list quality-profiles <service> [OPTIONS]
Description
For a specific service, this command prints a list of all available quality profiles from the TRaSH Guides in a formatted table. Each profile shows its name, trash ID, and the qualities enabled within it.
In terminals that support hyperlinks, profile names are clickable links that open the corresponding TRaSH Guides documentation page.
Use the trash ID with the trash_id property under quality_profiles in your configuration:
radarr:
main:
base_url: http://127.0.0.1:7878
api_key: 2424b3643507485ea2e06382d3f0b8a3
quality_profiles:
- trash_id: d1d67249d3890e49bc12e275d989a7e9 # HD Bluray + WEB
Examples
# List all quality profiles in the guide for Radarr
recyclarr list quality-profiles radarr
# List all quality profiles in the guide for Sonarr
recyclarr list quality-profiles sonarr
# Show qualities and custom formats for each profile
recyclarr list quality-profiles radarr --details
# Filter profiles by name (case-insensitive)
recyclarr list quality-profiles sonarr --filter bluray
# Output in TSV format for scripting
recyclarr list quality-profiles radarr --raw
Arguments
<service>
A required positional argument that indicates the specific service type to list quality profiles for. Valid values:
radarr: List Radarr quality profilessonarr: List Sonarr quality profiles
Options
Visit Common Options to read about options usable by all commands.
--details
Show additional information for each quality profile. Adds a "Qualities" section listing allowed
qualities and a "Custom Formats" section listing the custom formats included in the profile along
with the score set name. This option only affects table output and is ignored when --raw is used.
--filter
Filter profiles by name using a case-insensitive substring match. Only profiles whose name contains the filter string are shown.
--raw
Output in TSV format for scripting. Suppresses table formatting, colors, and instructional text.
Columns (tab-separated):
- Trash ID - The unique identifier to use in
trash_id - Name - The quality profile name
- URL - Link to the TRaSH Guides page (may be empty)
The --raw and --log options are mutually exclusive. Use --raw for machine-readable output
or --log for diagnostics.