Real Debrid Setup
Real Debrid is one of the supported Debrid providers.
Get API Key
Section titled “Get API Key”- Go to https://real-debrid.com/apitoken
- Copy your API key
Configuration
Section titled “Configuration”Via Setup Wizard
Section titled “Via Setup Wizard”During first run:
- Select Real Debrid as provider type
- Paste your API key
- Continue setup
Via config.json
Section titled “Via config.json”{ "debrids": [ { "provider": "realdebrid", "name": "Real Debrid", "api_key": "YOUR_API_KEY_HERE" } ]}Advanced Options
Section titled “Advanced Options”Multiple API Keys
Section titled “Multiple API Keys”Rotate between multiple keys for higher throughput:
{ "debrids": [ { "provider": "realdebrid", "download_api_keys": [ "KEY_1", "KEY_2", "KEY_3" ] } ]}Rate Limiting
Section titled “Rate Limiting”Respect Real Debrid’s rate limits:
{ "debrids": [ { "provider": "realdebrid", "rate_limit": "200/minute", "repair_rate_limit": "60/minute" } ]}Proxy Support
Section titled “Proxy Support”Route requests through a proxy:
{ "debrids": [ { "provider": "realdebrid", "proxy": "http://proxy.example.com:8080" } ]}Torrent Slot Management
Section titled “Torrent Slot Management”Set minimum free slots before using this provider:
{ "debrids": [ { "provider": "realdebrid", "minimum_free_slot": 5, "limit": 100 } ]}minimum_free_slot: Don’t use if fewer than N slots freelimit: Max torrents allowed on this account
Multiple Providers
Section titled “Multiple Providers”You can add multiple Real Debrid accounts:
{ "debrids": [ { "provider": "realdebrid", "name": "RD Primary", "api_key": "KEY_1" }, { "provider": "realdebrid", "name": "RD Secondary", "api_key": "KEY_2", "minimum_free_slot": 10 } ]}Decypharr will use the first provider with available slots.
Troubleshooting
Section titled “Troubleshooting”API Key Invalid
Section titled “API Key Invalid”- Verify key at https://real-debrid.com/apitoken
- Ensure no extra spaces when copying
Rate Limit Errors
Section titled “Rate Limit Errors”Reduce rate_limit or add more download_api_keys.
No Free Slots
Section titled “No Free Slots”- Remove old torrents from https://real-debrid.com/torrents
- Or configure
minimum_free_slotto use backup provider
See Configuration Reference for all Debrid options.