Skip to content

Real Debrid Setup

Real Debrid is one of the supported Debrid providers.

  1. Go to https://real-debrid.com/apitoken
  2. Copy your API key

During first run:

  1. Select Real Debrid as provider type
  2. Paste your API key
  3. Continue setup
{
"debrids": [
{
"provider": "realdebrid",
"name": "Real Debrid",
"api_key": "YOUR_API_KEY_HERE"
}
]
}

Rotate between multiple keys for higher throughput:

{
"debrids": [
{
"provider": "realdebrid",
"download_api_keys": [
"KEY_1",
"KEY_2",
"KEY_3"
]
}
]
}

Respect Real Debrid’s rate limits:

{
"debrids": [
{
"provider": "realdebrid",
"rate_limit": "200/minute",
"repair_rate_limit": "60/minute"
}
]
}

Route requests through a proxy:

{
"debrids": [
{
"provider": "realdebrid",
"proxy": "http://proxy.example.com:8080"
}
]
}

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 free
  • limit: Max torrents allowed on this account

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.

Reduce rate_limit or add more download_api_keys.

See Configuration Reference for all Debrid options.