From 73943d33b6f2b8c8bca961675a4514826d5518d4 Mon Sep 17 00:00:00 2001 From: Djalim Simaila Date: Wed, 3 Jan 2024 23:29:26 +0100 Subject: [PATCH] first commit --- README.md | 111 + base.yml | 113 + install.sh | 350 + prowlarr_flaresolverr.json | 35 + prowlarr_indexers.json | 18341 +++++++++++++++++++++++++++++++++++ prowlarr_radarr_app.json | 63 + prowlarr_sonarr_app.json | 79 + transmission.json | 154 + 8 files changed, 19246 insertions(+) create mode 100644 README.md create mode 100644 base.yml create mode 100755 install.sh create mode 100644 prowlarr_flaresolverr.json create mode 100644 prowlarr_indexers.json create mode 100644 prowlarr_radarr_app.json create mode 100644 prowlarr_sonarr_app.json create mode 100644 transmission.json diff --git a/README.md b/README.md new file mode 100644 index 0000000..509e93a --- /dev/null +++ b/README.md @@ -0,0 +1,111 @@ +# Streaming services + +Automatise l'installation d'un setup jellyfin + sonarr/radarr + +## Dependences : +- curl +- jq +- sed + +## Installation : + +1. Changer les paramettres dans `install.sh` + +```sh +# Username for all paramettrable services +# You will use this username to connect to sonarr/radarr/etc + +GLOBAL_USER="A_user_name" + +# If you want a different username for each services +SONARR_USER=$GLOBAL_USER +RADARR_USER=$GLOBAL_USER +PROWLARR_USER=$GLOBAL_USER +TRANSMISSION_USER=$GLOBAL_USER + +# Passwords +SONARR_PASSWORD="a very secure password" +RADARR_PASSWORD="so secure any hacker would" +PROWLARR_PASSWORD="have to social engineer it" +TRANSMISSION_PASSWORD="in order to get it" + +# ! MAKE SURE THE USER RUNNING THIS SCRIPT CAN READ +# **AND** WRITE TO THE FOLDERS YOU WRITE + +# Main Folders +SERIES_PATH="path/to/series" +FILM_PATH="path/to/films" + +# Config Folder +DOWNLOAD_FOLDER="path/to/downloads" +SONARR_CONFIG="path/to/config/sonarr" +RADARR_CONFIG="path/to/config/radarr" +PROWLARR_CONFIG="path/to/config/prowlarr" +TRANSMISSION_CONFIG="path/to/config/transmission" +JELLYSEERR_CONFIG="path/to/config/jellyseerr" +JELLYFIN_CONFIG="path/to/config/jellyfin" + +``` + +2. lancer install.sh et laisser la magie operer .w. + +## Post install + +### Configurer Jellyfin + +Le premier service a check est jellyfin : + +- go a [http://localhost:8096](http://localhost:8096) +- Creer un compte +- Creer deux mediatheques : + - un pour les films avec le dossier : /movies + - un pour les series avec le dossier : /tvshows +- Change le reste comme ca te plait +- Enjoy + +### Configurer Jellyseerr + +- go a [http://localhost:5055](http:localhost:8096) +- Connecte toi avec Jellyfin + - ip de jellyfin `http://jellyfin:8096` + - addresse email : met ce que tu veux, ca a pas besoin d'exister genre a@b.fr + - username et password de jellyfin, ceux que t'as Creer +- Ajoute les mediatheques de jellyfin + - Clique sur sync et coche les deux mediatheques +- Ajoute Sonarr et Radarr + - Radarr + - Default server : True + - Name : Radarr + - hostname : http://radarr + - api key : Check dans post_install.md + - root folder : /movies + - Sonarr + - Default server : True + - Name : Sonarr + - hostname : http://sonarr + - api key : Check dans post_install.md + - root folder : /tv + - je te laisse utiliser ton cerveau pour le reste +- Enjoy + +## Commandes utiles + +- recup la cle api sans passer par la web ui de radarr/sonarr/prowlarr + +```sh +docker exec -it [radarr/sonarr/prowlarr] cat /config/config.xml | grep ApiKey | cut -d'>' -f2 +``` + +## Services + +Streaming des videos -> Jellyfin : http://localhost:8096 + +Rerchercher et Ajouter -> Jellyseerr : http://localhost:5055 + +Gerer les films -> Radarr http://localhost:7878 + +Gerer les series -> Sonarr : http://localhost:8989 + +Rerchercher sur les sites de torrents -> Prowlarr : http://localhost:9696 + +Telecharger -> Transmission : http://localhost:9091 diff --git a/base.yml b/base.yml new file mode 100644 index 0000000..3f48c91 --- /dev/null +++ b/base.yml @@ -0,0 +1,113 @@ +version: "3.0" +services: + prowlarr: + image: lscr.io/linuxserver/prowlarr:latest + container_name: prowlarr + environment: + - PUID=USER_ID + - PGID=GROUP_ID + - TZ=Etc/UTC + volumes: + - PROWLARR_CONFIG:/config + ports: + - 9696:9696 + restart: unless-stopped + + sonarr: + image: lscr.io/linuxserver/sonarr:latest + container_name: sonarr + environment: + - PUID=USER_ID + - PGID=GROUP_ID + - TZ=Etc/UTC + volumes: + - SONARR_CONFIG:/config + - SERIES_PATH:/tv + - DOWNLOAD_FOLDER:/downloads + ports: + - 8989:8989 + restart: unless-stopped + + radarr: + image: lscr.io/linuxserver/radarr:latest + container_name: radarr + environment: + - PUID=USER_ID + - PGID=GROUP_ID + - TZ=Etc/UTC + volumes: + - RADARR_CONFIG:/config + - FILM_PATH:/movies + - DOWNLOAD_FOLDER:/downloads + ports: + - 7878:7878 + restart: unless-stopped + + transmission: + image: lscr.io/linuxserver/transmission:latest + container_name: transmission + environment: + - PUID=USER_ID + - PGID=GROUP_ID + - TZ=Etc/UTC + - TRANSMISSION_WEB_HOME= #optional + - USER=TRANSMISSION_USER + - PASS=TRANSMISSION_PASSWORD + - WHITELIST= #optional + - PEERPORT= #optional + - HOST_WHITELIST= #optional + volumes: + - TRANSMISSION_CONFIG:/config + - DOWNLOAD_FOLDER:/downloads + ports: + - 9091:9091 + - 51413:51413 + - 51413:51413/udp + restart: unless-stopped + + jellyfin: + image: lscr.io/linuxserver/jellyfin:latest + container_name: jellyfin + environment: + - PUID=USER_ID + - PGID=GROUP_ID + - TZ=Europe/Paris + #- NVIDIA_VISIBLE_DEVICES=all + volumes: + - JELLYFIN_CONFIG:/config + - SERIES_PATH:/data/tvshows + - FILM_PATH:/data/movies + ports: + - 8096:8096 + - 8920:8920 #optional + - 7359:7359/udp #optional + - 1900:1900/udp #optional + restart: unless-stopped + #runtime: nvidia + #deploy: + #resources: + #reservations: + #devices: + #- capabilities: [gpu] + + jellyseerr: + image: fallenbagel/jellyseerr:latest + container_name: jellyseerr + environment: + - LOG_LEVEL=debug + - TZ=Europe/Paris + - PORT=5055 #optional + ports: + - 5055:5055 + volumes: + - JELLYSEERR_CONFIG:/app/config + restart: unless-stopped + + flaresolverr: + image: ghcr.io/flaresolverr/flaresolverr:latest + container_name: flaresolverr + environment: + - LOG_LEVEL=info + ports: + - 8191:8191 + restart: unless-stopped diff --git a/install.sh b/install.sh new file mode 100755 index 0000000..64f0c19 --- /dev/null +++ b/install.sh @@ -0,0 +1,350 @@ +#!/bin/bash + +## User config + +# Username for all paramettrable services +# You will use this username to connect to sonarr/radarr/etc +GLOBAL_USER="A_user_name" + +# If you want a different username for each services +SONARR_USER=$GLOBAL_USER +RADARR_USER=$GLOBAL_USER +PROWLARR_USER=$GLOBAL_USER +TRANSMISSION_USER=$GLOBAL_USER + +#Passwords +SONARR_PASSWORD="a very secure password" +RADARR_PASSWORD="so secure any hacker would" +PROWLARR_PASSWORD="have to social engineer it" +TRANSMISSION_PASSWORD="in order to get it" + +# ! MAKE SURE THE USER RUNNING THIS SCRIPT CAN READ +# **AND** WRITE TO THE FOLDERS YOU WRITE + +# Main Folder +SERIES_PATH="path/to/series" +FILM_PATH="path/to/films" + +# Config Folder +DOWNLOAD_FOLDER="path/to/downloads" +SONARR_CONFIG="path/to/config/sonarr" +RADARR_CONFIG="path/to/config/radarr" +PROWLARR_CONFIG="path/to/config/prowlarr" +TRANSMISSION_CONFIG="path/to/config/transmission" +JELLYSEERR_CONFIG="path/to/config/jellyseerr" +JELLYFIN_CONFIG="path/to/config/jellyfin" + + +###################### +# +# End of parameters +# +###################### + + +## Creations des dossiers + +echo "Creating folder : $SERIES_PATH" +mkdir -p "$SERIES_PATH" + +echo "Creating folder : $FILM_PATH" +mkdir -p "$FILM_PATH" + +echo "Creating folder : $DOWNLOAD_FOLDER" +mkdir -p "$DOWNLOAD_FOLDER" + +echo "Creating folder : $SONARR_CONFIG" +mkdir -p "$SONARR_CONFIG" + +echo "Creating folder : $RADARR_CONFIG" +mkdir -p "$RADARR_CONFIG" + +echo "Creating folder : $PROWLARR_CONFIG" +mkdir -p "$PROWLARR_CONFIG" + +echo "Creating folder : $TRANSMISSION_CONFIG" +mkdir -p "$TRANSMISSION_CONFIG" + +echo "Creating folder : $JELLYSEERR_CONFIG" +mkdir -p "$JELLYSEERR_CONFIG" + +echo "Creating folder : $JELLYFIN_CONFIG" +mkdir -p "$JELLYFIN_CONFIG" + +## patching docker-compose + +echo patching docker-compose + +cp base.yml compose.yml + +USER_ID=$(id -u) +GROUP_ID=$(id -g) + +sed -i "s#GLOBAL_USER#$GLOBAL_USER#g" compose.yml + +sed -i "s#USER_ID#$USER_ID#g" compose.yml +sed -i "s#GROUP_ID#$GROUP_ID#g" compose.yml + +sed -i "s#SERIES_PATH#$SERIES_PATH#g" compose.yml +sed -i "s#FILM_PATH#$FILM_PATH#g" compose.yml + +sed -i "s#DOWNLOAD_FOLDER#$DOWNLOAD_FOLDER#g" compose.yml +sed -i "s#SONARR_CONFIG#$SONARR_CONFIG#g" compose.yml +sed -i "s#RADARR_CONFIG#$RADARR_CONFIG#g" compose.yml +sed -i "s#PROWLARR_CONFIG#$PROWLARR_CONFIG#g" compose.yml +sed -i "s#JELLYSEERR_CONFIG#$JELLYSEERR_CONFIG#g" compose.yml +sed -i "s#JELLYFIN_CONFIG#$JELLYFIN_CONFIG#g" compose.yml +sed -i "s#TRANSMISSION_CONFIG#$TRANSMISSION_CONFIG#g" compose.yml +sed -i "s#TRANSMISSION_PASSWORD#$TRANSMISSION_PASSWORD#g" compose.yml +sed -i "s#TRANSMISSION_USER#$TRANSMISSION_USER#g" compose.yml + +## Installation de basiquement tout +echo docker-compose time .w. +docker-compose --file compose.yml up -d + +echo sleep 30 sec to wait for everyone to wake up +sleep 30 + +# Config de transmission +cp ./transmission.json ./temp_transmission.json + +sed -i "s#TRANSMISSION_USER#$TRANSMISSION_USER#g" temp_transmission.json +sed -i "s#TRANSMISSION_PASSWORD#$TRANSMISSION_PASSWORD#g" temp_transmission.json + +TEMP_TRANSMISSION_CONFIG=$(cat temp_transmission.json) + +## Config Sonarr + +SONARR_API_KEY=$(docker exec -it sonarr cat /config/config.xml | grep ApiKey | cut -d'>' -f2 | cut -d '<' -f1) + +TEMP_SONARR_CONFIG=$(curl "http://localhost:8989/api/v3/config/host/1?apikey=$SONARR_API_KEY") +TEMP_SONARR_CONFIG="$(echo "$TEMP_SONARR_CONFIG" | sed 's/"authenticationMethod.*"/"authenticationMethod": "forms"/g')" +TEMP_SONARR_CONFIG="$(echo "$TEMP_SONARR_CONFIG" | sed 's/"username.*"/"username": "'"$SONARR_USER"'"/g')" +TEMP_SONARR_CONFIG="$(echo "$TEMP_SONARR_CONFIG" | sed 's/"password":.*"/"password": "'"$SONARR_PASSWORD"'"/g')" +TEMP_SONARR_CONFIG="$(echo "$TEMP_SONARR_CONFIG" | sed 's/"passwordConfirmation.*"/"passwordConfirmation": "'"$SONARR_PASSWORD"'"/g')" + +curl --request PUT \ + --url "http://localhost:8989/api/v3/config/host/1?apikey=$SONARR_API_KEY" \ + --header 'Content-Type: application/json' \ + --data "$TEMP_SONARR_CONFIG" + +curl --request POST \ + --url "http://localhost:8989/api/v3/rootfolder?apikey=$SONARR_API_KEY" \ + --header 'Content-Type: application/json' \ + --data '{ + "id": 0, + "path": "/tv", + "accessible": true +}' + +curl --request POST \ + --url "http://localhost:8989/api/v3/downloadclient?apikey=$SONARR_API_KEY" \ + --header 'Content-Type: application/json' \ + --data "$TEMP_TRANSMISSION_CONFIG" + +## Config Radarr +TEMP_RADARR_CONFIG=$(docker exec -it radarr cat /config/config.xml) +RADARR_API_KEY=$(docker exec -it radarr cat /config/config.xml | grep ApiKey | cut -d'>' -f2 | cut -d '<' -f1) + +TEMP_RADARR_CONFIG=$(curl "http://localhost:7878/api/v3/config/host/1?apikey=$RADARR_API_KEY") +TEMP_RADARR_CONFIG="$(echo "$TEMP_RADARR_CONFIG" | sed 's/"authenticationMethod.*"/"authenticationMethod": "forms"/g')" +TEMP_RADARR_CONFIG="$(echo "$TEMP_RADARR_CONFIG" | sed 's/"username.*"/"username": "'"$RADARR_USER"'"/g')" +TEMP_RADARR_CONFIG="$(echo "$TEMP_RADARR_CONFIG" | sed 's/"password":.*"/"password": "'"$RADARR_PASSWORD"'"/g')" +TEMP_RADARR_CONFIG="$(echo "$TEMP_RADARR_CONFIG" | sed 's/"passwordConfirmation.*"/"passwordConfirmation": "'"$RADARR_PASSWORD"'"/g')" + +curl --request PUT \ + --url "http://localhost:7878/api/v3/config/host/1?apikey=$RADARR_API_KEY" \ + --header 'Content-Type: application/json' \ + --data "$TEMP_RADARR_CONFIG" + +curl --request POST \ + --url "http://localhost:7878/api/v3/rootfolder?apikey=$RADARR_API_KEY" \ + --header 'Content-Type: application/json' \ + --data '{ + "id": 0, + "path": "/movies", + "accessible": true +}' + +curl --request POST \ + --url "http://localhost:7878/api/v3/downloadclient?apikey=$RADARR_API_KEY" \ + --header 'Content-Type: application/json' \ + --data "$TEMP_TRANSMISSION_CONFIG" + +## Config Prowlarr +TEMP_PROWLARR_CONFIG=$(docker exec -it prowlarr cat /config/config.xml) +PROWLARR_API_KEY=$(docker exec -it prowlarr cat /config/config.xml | grep ApiKey | cut -d'>' -f2 | cut -d '<' -f1) + +TEMP_PROWLARR_CONFIG=$(curl "http://localhost:9696/api/v1/config/host/1?apikey=$PROWLARR_API_KEY") +TEMP_PROWLARR_CONFIG="$(echo "$TEMP_PROWLARR_CONFIG" | sed 's/"authenticationMethod.*"/"authenticationMethod": "forms"/g')" +TEMP_PROWLARR_CONFIG="$(echo "$TEMP_PROWLARR_CONFIG" | sed 's/"username.*"/"username": "'"$PROWLARR_USER"'"/g')" +TEMP_PROWLARR_CONFIG="$(echo "$TEMP_PROWLARR_CONFIG" | sed 's/"password":.*"/"password": "'"$PROWLARR_PASSWORD"'"/g')" +TEMP_PROWLARR_CONFIG="$(echo "$TEMP_PROWLARR_CONFIG" | sed 's/"passwordConfirmation.*"/"passwordConfirmation": "'"$PROWLARR_PASSWORD"'"/g')" + +curl --request PUT \ + --url "http://localhost:9696/api/v1/config/host/1?apikey=$PROWLARR_API_KEY" \ + --header 'Content-Type: application/json' \ + --data "$TEMP_PROWLARR_CONFIG" + +cp prowlarr_radarr_app.json temp_prowlarr_radarr_app.json +cp prowlarr_sonarr_app.json temp_prowlarr_sonarr_app.json + +sed -i "s/RADARR_API_KEY/$RADARR_API_KEY/g" temp_prowlarr_radarr_app.json +sed -i "s/SONARR_API_KEY/$SONARR_API_KEY/g" temp_prowlarr_sonarr_app.json + +RADARR_APP_CONFIG=$(cat temp_prowlarr_radarr_app.json) +SONARR_APP_CONFIG=$(cat temp_prowlarr_sonarr_app.json) + +curl --request POST \ + --url "http://localhost:9696/api/v1/applications?apikey=$PROWLARR_API_KEY" \ + --header 'Content-Type: application/json' \ + --data "$SONARR_APP_CONFIG" + +curl --request POST \ + --url "http://localhost:9696/api/v1/applications?apikey=$PROWLARR_API_KEY" \ + --header 'Content-Type: application/json' \ + --data "$RADARR_APP_CONFIG" + +## Ajouter flaresolverr + +FLARESOLVERR_PROXY_CONFIG=$(cat prowlarr_flaresolverr.json) + +curl --request POST \ + --url "http://localhost:9696/api/v1/tag?apikey=$PROWLARR_API_KEY" \ + --header 'Content-Type: application/json' \ + --data '{"id": 0,"label": "flaresolverr"}' + +curl --request POST \ + --url "http://localhost:9696/api/v1/indexerproxy?apikey=$PROWLARR_API_KEY" \ + --header 'Content-Type: application/json' \ + --data "$FLARESOLVERR_PROXY_CONFIG" + + +## Ajouter des indexers +INDEXER_LENGHT=$(cat prowlarr_indexers.json | jq length) +INDEXER_LENGHT=$(($INDEXER_LENGHT - 1)) +echo $INDEXER_LENGHT + +for index in $(eval echo "{0..$INDEXER_LENGHT}");do + echo "########################" + indexer=$(cat prowlarr_indexers.json | jq ".[$index]") + indexer=$(echo $indexer | jq 'del(.id)') + echo $indexer | jq '.name' + curl --request POST \ + -s -S \ + --url "http://localhost:9696/api/v1/indexer?apikey=$PROWLARR_API_KEY" \ + --header 'Content-Type: application/json' \ + --data "$indexer" +done + +# post install +clear +echo Done ! + +echo ' +# Jellyfin Config : + +head over to http://localhost:8096/ then +- Create an account +- Create two libraries + - One for movies : select type "movies", folder /data/movies + - One for tv show : select type "tv shows", folder /data/tvshows + +And there is your media center ! + +# Jellyseerr Config : + +head over to http://localhost:5055/ then +- Login with your previously created jellyfin account + - jellyfin url "http://jellyfin:8096" + - you must put a email address but it does not need to be valid + - enter Jellyfin username and password +- Sync the libraries with jellyfin and select the previously libraries +- Add Radarr and Sonarr :' + +echo " + +## Radarr + +Default server : True +name : Radarr +hostname : http://radarr +api key : $RADARR_API_KEY +root folder : /movies (click 'test' button below if not changeable ) + +## Sonarr + +Default server : True +name : Sonarr +hostname : http://sonarr +api key : $SONARR_API_KEY +root folder : /tv (click 'test' button below if not changeable ) +" + +echo "this has also been written to POST_INSTALL.md" +rm temp* +rm compose.yml + +############################### + +echo ' +# Jellyfin Config : + +head over to http://localhost:8096/ then +- Create an account +- Create two libraries + - One for movies : select type "movies", folder /data/movies + - One for tv show : select type "tv shows", folder /data/tvshows + +And there is your media center ! + +# Jellyseerr Config : + +head over to http://localhost:5055/ then +- Login with your previously created jellyfin account + - jellyfin url "http://jellyfin:8096" + - you must put a email address but it does not need to be valid + - enter Jellyfin username and password +- Sync the libraries with jellyfin and select the previously libraries +- Add Radarr and Sonarr :' >> POST_INSTALL.md + +echo " + +## Radarr + +Default server : True +name : Radarr +hostname : http://radarr +api key : $RADARR_API_KEY +root folder : /movies (click 'test' button below if not changeable ) + +## Sonarr + +Default server : True +name : Sonarr +hostname : http://sonarr +api key : $SONARR_API_KEY +root folder : /tv (click 'test' button below if not changeable ) +" >> POST_INSTALL.md + +echo " +# Services + +Streaming des videos +-> Jellyfin : http://localhost:8096 + +Rerchercher et Ajouter +-> Jellyseerr : http://localhost:5055 + +Gerer les films +-> Radarr http://localhost:7878 + +Gerer les series +-> Sonarr : http://localhost:8989 + +Rerchercher sur les sites de torrents +-> Prowlarr : http://localhost:9696 + +Telecharger +-> Transmission : http://localhost:9091 +" >> POST_INSTALL.md diff --git a/prowlarr_flaresolverr.json b/prowlarr_flaresolverr.json new file mode 100644 index 0000000..a240eae --- /dev/null +++ b/prowlarr_flaresolverr.json @@ -0,0 +1,35 @@ +{ + "enable": true, + "name": "flaresolverr", + "onHealthIssue": false, + "supportsOnHealthIssue": false, + "includeHealthWarnings": false, + "fields": [ + { + "order": 0, + "name": "host", + "label": "Host", + "value": "http://flaresolverr:8191/", + "type": "textbox", + "advanced": false, + "isFloat": false + }, + { + "order": 1, + "name": "requestTimeout", + "label": "Request Timeout", + "unit": "seconds", + "helpText": "FlareSolverr maxTimeout Request Parameter", + "value": 60, + "type": "textbox", + "advanced": true, + "isFloat": false + } + ], + "implementationName": "FlareSolverr", + "implementation": "FlareSolverr", + "configContract": "FlareSolverrSettings", + "infoLink": "https://wiki.servarr.com/prowlarr/supported#flaresolverr", + "tags": [1], + "presets": [] + } diff --git a/prowlarr_indexers.json b/prowlarr_indexers.json new file mode 100644 index 0000000..7e0eeb7 --- /dev/null +++ b/prowlarr_indexers.json @@ -0,0 +1,18341 @@ +[ + { + "indexerUrls": [ + "https://0magnet.co/", + "https://13mag.net/", + "https://16mag.net/" + ], + "legacyUrls": [ + "https://0magnet.com/", + "https://9mag.net/" + ], + "definitionName": "0magnet", + "description": "ØMagnet is a CHINESE Public tracker for Asian 3X (JAV)", + "language": "en-US", + "encoding": "Unicode (UTF-8)", + "enable": true, + "redirect": false, + "supportsRss": true, + "supportsSearch": true, + "supportsRedirect": false, + "supportsPagination": false, + "appProfileId": 1, + "protocol": "torrent", + "privacy": "public", + "capabilities": { + "limitsMax": 100, + "limitsDefault": 100, + "categories": [ + { + "id": 6000, + "name": "XXX", + "subCategories": [] + } + ], + "supportsRawSearch": false, + "searchParams": [ + "q", + "q" + ], + "tvSearchParams": [], + "movieSearchParams": [], + "musicSearchParams": [], + "bookSearchParams": [] + }, + "priority": 25, + "added": "2023-06-03T18:55:16Z", + "sortName": "0magnet", + "name": "0Magnet", + "fields": [ + { + "order": 0, + "name": "definitionFile", + "value": "0magnet", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 1, + "name": "baseUrl", + "label": "Base Url", + "helpText": "Select which baseurl Prowlarr will use for requests to the site", + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "getUrls" + }, + { + "order": 2, + "name": "baseSettings.queryLimit", + "label": "Query Limit", + "helpText": "The number of queries within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 3, + "name": "baseSettings.grabLimit", + "label": "Grab Limit", + "helpText": "The number of grabs within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 4, + "name": "torrentBaseSettings.appMinimumSeeders", + "label": "Apps Minimum Seeders", + "helpText": "Minimum seeders required by the Applications for the indexer to grab, empty is Sync profile's default", + "type": "number", + "advanced": true + }, + { + "order": 5, + "name": "torrentBaseSettings.seedRatio", + "label": "Seed Ratio", + "helpText": "The ratio a torrent should reach before stopping, empty is app's default", + "type": "textbox", + "advanced": true + }, + { + "order": 6, + "name": "torrentBaseSettings.seedTime", + "label": "Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 7, + "name": "torrentBaseSettings.packSeedTime", + "label": "Pack Seed Time", + "unit": "minutes", + "helpText": "The time a pack (season or discography) torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + } + ], + "implementationName": "Cardigann", + "implementation": "Cardigann", + "configContract": "CardigannSettings", + "infoLink": "https://wiki.servarr.com/prowlarr/supported-indexers#0magnet", + "tags": [], + "id": 4 + }, + { + "indexerUrls": [ + "https://1337x.to/", + "https://1337x.st/", + "https://x1337x.ws/", + "https://x1337x.eu/", + "https://x1337x.se/", + "https://1337x.so/", + "https://1337x.unblockit.ing/", + "https://1337x.ninjaproxy1.com/", + "https://1337x.mrunblock.bond/" + ], + "legacyUrls": [ + "https://1337x.is/", + "https://1337x.nocensor.work/", + "https://1337x.nocensor.biz/", + "https://1337x.gd/", + "https://1337x.nocensor.sbs/", + "https://1337x.unblockit.cat/", + "https://1337x.unblockit.nz/", + "https://1337x.nocensor.world/", + "https://1337x.unblockit.page/", + "https://1337x.unblockit.pet/", + "https://1337x.nocensor.lol/", + "https://1337x.unblockit.ink/", + "https://1337x.nocensor.art/", + "https://1337x.unblockit.bio/", + "https://1337x.unblockit.boo/", + "https://1337x.mrunblock.guru/", + "https://1337x.mrunblock.life/", + "https://1337x.unblockit.click/", + "https://1337x.unblockit.asia/", + "https://1337x.unblockit.mov/", + "https://1337x.unblockit.rsvp/", + "https://1337x.unblockninja.com/", + "https://1337x.unblockit.vegas/", + "https://1337x.unblockit.esq/", + "https://1337x.unblockit.zip/", + "https://1337x.unblockit.foo/" + ], + "definitionName": "1337x", + "description": "1337X is a Public torrent site that offers verified torrent downloads", + "language": "en-US", + "encoding": "Unicode (UTF-8)", + "enable": true, + "redirect": false, + "supportsRss": true, + "supportsSearch": true, + "supportsRedirect": false, + "supportsPagination": false, + "appProfileId": 1, + "protocol": "torrent", + "privacy": "public", + "capabilities": { + "limitsMax": 100, + "limitsDefault": 100, + "categories": [ + { + "id": 5000, + "name": "TV", + "subCategories": [ + { + "id": 5070, + "name": "TV/Anime", + "subCategories": [] + }, + { + "id": 5040, + "name": "TV/HD", + "subCategories": [] + }, + { + "id": 5030, + "name": "TV/SD", + "subCategories": [] + }, + { + "id": 5080, + "name": "TV/Documentary", + "subCategories": [] + } + ] + }, + { + "id": 100028, + "name": "Anime/Anime", + "subCategories": [] + }, + { + "id": 100078, + "name": "Anime/Dual Audio", + "subCategories": [] + }, + { + "id": 100079, + "name": "Anime/Dubbed", + "subCategories": [] + }, + { + "id": 100080, + "name": "Anime/Subbed", + "subCategories": [] + }, + { + "id": 100081, + "name": "Anime/Raw", + "subCategories": [] + }, + { + "id": 3000, + "name": "Audio", + "subCategories": [ + { + "id": 3010, + "name": "Audio/MP3", + "subCategories": [] + }, + { + "id": 3040, + "name": "Audio/Lossless", + "subCategories": [] + }, + { + "id": 3020, + "name": "Audio/Video", + "subCategories": [] + }, + { + "id": 3050, + "name": "Audio/Other", + "subCategories": [] + }, + { + "id": 3030, + "name": "Audio/Audiobook", + "subCategories": [] + } + ] + }, + { + "id": 100022, + "name": "Music/MP3", + "subCategories": [] + }, + { + "id": 100023, + "name": "Music/Lossless", + "subCategories": [] + }, + { + "id": 100024, + "name": "Music/DVD", + "subCategories": [] + }, + { + "id": 100025, + "name": "Music/Video", + "subCategories": [] + }, + { + "id": 100026, + "name": "Music/Radio", + "subCategories": [] + }, + { + "id": 100027, + "name": "Music/Other", + "subCategories": [] + }, + { + "id": 100053, + "name": "Music/Album", + "subCategories": [] + }, + { + "id": 100058, + "name": "Music/Box set", + "subCategories": [] + }, + { + "id": 100059, + "name": "Music/Discography", + "subCategories": [] + }, + { + "id": 100060, + "name": "Music/Single", + "subCategories": [] + }, + { + "id": 100068, + "name": "Music/Concerts", + "subCategories": [] + }, + { + "id": 100069, + "name": "Music/AAC", + "subCategories": [] + }, + { + "id": 2000, + "name": "Movies", + "subCategories": [ + { + "id": 2070, + "name": "Movies/DVD", + "subCategories": [] + }, + { + "id": 2030, + "name": "Movies/SD", + "subCategories": [] + }, + { + "id": 2010, + "name": "Movies/Foreign", + "subCategories": [] + }, + { + "id": 2040, + "name": "Movies/HD", + "subCategories": [] + }, + { + "id": 2060, + "name": "Movies/3D", + "subCategories": [] + }, + { + "id": 2045, + "name": "Movies/UHD", + "subCategories": [] + } + ] + }, + { + "id": 100001, + "name": "Movies/DVD", + "subCategories": [] + }, + { + "id": 100002, + "name": "Movies/Divx/Xvid", + "subCategories": [] + }, + { + "id": 100003, + "name": "Movies/SVCD/VCD", + "subCategories": [] + }, + { + "id": 100004, + "name": "Movies/Dubs/Dual Audio", + "subCategories": [] + }, + { + "id": 100042, + "name": "Movies/HD", + "subCategories": [] + }, + { + "id": 100054, + "name": "Movies/h.264/x264", + "subCategories": [] + }, + { + "id": 100055, + "name": "Movies/Mp4", + "subCategories": [] + }, + { + "id": 100066, + "name": "Movies/3D", + "subCategories": [] + }, + { + "id": 100070, + "name": "Movies/HEVC/x265", + "subCategories": [] + }, + { + "id": 100073, + "name": "Movies/Bollywood", + "subCategories": [] + }, + { + "id": 100076, + "name": "Movies/UHD", + "subCategories": [] + }, + { + "id": 100005, + "name": "TV/DVD", + "subCategories": [] + }, + { + "id": 100006, + "name": "TV/Divx/Xvid", + "subCategories": [] + }, + { + "id": 100007, + "name": "TV/SVCD/VCD", + "subCategories": [] + }, + { + "id": 100041, + "name": "TV/HD", + "subCategories": [] + }, + { + "id": 100071, + "name": "TV/HEVC/x265", + "subCategories": [] + }, + { + "id": 100074, + "name": "TV/Cartoons", + "subCategories": [] + }, + { + "id": 100075, + "name": "TV/SD", + "subCategories": [] + }, + { + "id": 100009, + "name": "TV/Documentary", + "subCategories": [] + }, + { + "id": 4000, + "name": "PC", + "subCategories": [ + { + "id": 4030, + "name": "PC/Mac", + "subCategories": [] + }, + { + "id": 4070, + "name": "PC/Mobile-Android", + "subCategories": [] + }, + { + "id": 4060, + "name": "PC/Mobile-iOS", + "subCategories": [] + }, + { + "id": 4050, + "name": "PC/Games", + "subCategories": [] + }, + { + "id": 4040, + "name": "PC/Mobile-Other", + "subCategories": [] + } + ] + }, + { + "id": 100018, + "name": "Apps/PC Software", + "subCategories": [] + }, + { + "id": 100019, + "name": "Apps/Mac", + "subCategories": [] + }, + { + "id": 100020, + "name": "Apps/Linux", + "subCategories": [] + }, + { + "id": 100021, + "name": "Apps/Other", + "subCategories": [] + }, + { + "id": 100056, + "name": "Apps/Android", + "subCategories": [] + }, + { + "id": 100057, + "name": "Apps/iOS", + "subCategories": [] + }, + { + "id": 100010, + "name": "Games/PC Game", + "subCategories": [] + }, + { + "id": 1000, + "name": "Console", + "subCategories": [ + { + "id": 1080, + "name": "Console/PS3", + "subCategories": [] + }, + { + "id": 1020, + "name": "Console/PSP", + "subCategories": [] + }, + { + "id": 1040, + "name": "Console/XBox", + "subCategories": [] + }, + { + "id": 1050, + "name": "Console/XBox 360", + "subCategories": [] + }, + { + "id": 1090, + "name": "Console/Other", + "subCategories": [] + }, + { + "id": 1030, + "name": "Console/Wii", + "subCategories": [] + }, + { + "id": 1010, + "name": "Console/NDS", + "subCategories": [] + }, + { + "id": 1110, + "name": "Console/3DS", + "subCategories": [] + }, + { + "id": 1180, + "name": "Console/PS4", + "subCategories": [] + } + ] + }, + { + "id": 100011, + "name": "Games/PS2", + "subCategories": [] + }, + { + "id": 100012, + "name": "Games/PSP", + "subCategories": [] + }, + { + "id": 100013, + "name": "Games/Xbox", + "subCategories": [] + }, + { + "id": 100014, + "name": "Games/Xbox360", + "subCategories": [] + }, + { + "id": 100015, + "name": "Games/PS1", + "subCategories": [] + }, + { + "id": 100016, + "name": "Games/Dreamcast", + "subCategories": [] + }, + { + "id": 100017, + "name": "Games/Other", + "subCategories": [] + }, + { + "id": 100043, + "name": "Games/PS3", + "subCategories": [] + }, + { + "id": 100044, + "name": "Games/Wii", + "subCategories": [] + }, + { + "id": 100045, + "name": "Games/DS", + "subCategories": [] + }, + { + "id": 100046, + "name": "Games/GameCube", + "subCategories": [] + }, + { + "id": 100072, + "name": "Games/3DS", + "subCategories": [] + }, + { + "id": 100077, + "name": "Games/PS4", + "subCategories": [] + }, + { + "id": 100082, + "name": "Games/Switch", + "subCategories": [] + }, + { + "id": 6000, + "name": "XXX", + "subCategories": [ + { + "id": 6010, + "name": "XXX/DVD", + "subCategories": [] + }, + { + "id": 6060, + "name": "XXX/ImageSet", + "subCategories": [] + } + ] + }, + { + "id": 100048, + "name": "XXX/Video", + "subCategories": [] + }, + { + "id": 100049, + "name": "XXX/Picture", + "subCategories": [] + }, + { + "id": 100050, + "name": "XXX/Magazine", + "subCategories": [] + }, + { + "id": 100051, + "name": "XXX/Hentai", + "subCategories": [] + }, + { + "id": 100067, + "name": "XXX/Games", + "subCategories": [] + }, + { + "id": 0, + "name": "Other", + "subCategories": [ + { + "id": 10, + "name": "Other/Misc", + "subCategories": [] + } + ] + }, + { + "id": 100033, + "name": "Other/Emulation", + "subCategories": [] + }, + { + "id": 7000, + "name": "Books", + "subCategories": [ + { + "id": 7020, + "name": "Books/EBook", + "subCategories": [] + }, + { + "id": 7030, + "name": "Books/Comics", + "subCategories": [] + } + ] + }, + { + "id": 100034, + "name": "Other/Tutorial", + "subCategories": [] + }, + { + "id": 100035, + "name": "Other/Sounds", + "subCategories": [] + }, + { + "id": 100036, + "name": "Other/E-books", + "subCategories": [] + }, + { + "id": 100037, + "name": "Other/Images", + "subCategories": [] + }, + { + "id": 100038, + "name": "Other/Mobile Phone", + "subCategories": [] + }, + { + "id": 100039, + "name": "Other/Comics", + "subCategories": [] + }, + { + "id": 100040, + "name": "Other/Other", + "subCategories": [] + }, + { + "id": 100047, + "name": "Other/Nulled Script", + "subCategories": [] + }, + { + "id": 100052, + "name": "Other/Audiobook", + "subCategories": [] + } + ], + "supportsRawSearch": true, + "searchParams": [ + "q", + "q" + ], + "tvSearchParams": [ + "q", + "season", + "ep" + ], + "movieSearchParams": [ + "q" + ], + "musicSearchParams": [ + "q", + "album", + "artist" + ], + "bookSearchParams": [ + "q" + ] + }, + "priority": 25, + "added": "2023-06-03T18:55:20Z", + "sortName": "1337x", + "name": "1337x", + "fields": [ + { + "order": 0, + "name": "definitionFile", + "value": "1337x", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 1, + "name": "baseUrl", + "label": "Base Url", + "helpText": "Select which baseurl Prowlarr will use for requests to the site", + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "getUrls" + }, + { + "order": 2, + "name": "baseSettings.queryLimit", + "label": "Query Limit", + "helpText": "The number of queries within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 3, + "name": "baseSettings.grabLimit", + "label": "Grab Limit", + "helpText": "The number of grabs within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 4, + "name": "torrentBaseSettings.appMinimumSeeders", + "label": "Apps Minimum Seeders", + "helpText": "Minimum seeders required by the Applications for the indexer to grab, empty is Sync profile's default", + "type": "number", + "advanced": true + }, + { + "order": 5, + "name": "torrentBaseSettings.seedRatio", + "label": "Seed Ratio", + "helpText": "The ratio a torrent should reach before stopping, empty is app's default", + "type": "textbox", + "advanced": true + }, + { + "order": 6, + "name": "torrentBaseSettings.seedTime", + "label": "Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 7, + "name": "torrentBaseSettings.packSeedTime", + "label": "Pack Seed Time", + "unit": "minutes", + "helpText": "The time a pack (season or discography) torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 0, + "name": "flaresolverr", + "label": "FlareSolverr", + "value": "This site may use Cloudflare DDoS Protection, therefore Prowlarr requires FlareSolverr to access it.", + "type": "info", + "advanced": false + }, + { + "order": 1, + "name": "downloadlink", + "label": "Download link", + "value": 0, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "iTorrents.org", + "order": 0 + }, + { + "value": 1, + "name": "magnet", + "order": 0 + } + ] + }, + { + "order": 2, + "name": "downloadlink2", + "label": "Download link (fallback)", + "value": 1, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "iTorrents.org", + "order": 0 + }, + { + "value": 1, + "name": "magnet", + "order": 0 + } + ] + }, + { + "order": 3, + "name": "info_download", + "label": "About the Download links", + "value": "As the iTorrents .torrent download link on this site is known to fail from time to time, we suggest using the magnet link as a fallback. The BTCache and Torrage services are not supported because they require additional user interaction (a captcha for BTCache and a download button on Torrage.)", + "type": "info", + "advanced": false + }, + { + "order": 4, + "name": "sort", + "label": "Sort requested from site", + "value": 2, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "seeders", + "order": 0 + }, + { + "value": 1, + "name": "size", + "order": 0 + }, + { + "value": 2, + "name": "created", + "order": 0 + } + ] + }, + { + "order": 5, + "name": "type", + "label": "Order requested from site", + "value": 1, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "asc", + "order": 0 + }, + { + "value": 1, + "name": "desc", + "order": 0 + } + ] + } + ], + "implementationName": "Cardigann", + "implementation": "Cardigann", + "configContract": "CardigannSettings", + "infoLink": "https://wiki.servarr.com/prowlarr/supported-indexers#1337x", + "tags": [1], + "id": 5 + }, + { + "indexerUrls": [ + "https://anidex.info/" + ], + "legacyUrls": [], + "definitionName": "Anidex", + "description": "Anidex is a Public torrent tracker and indexer, primarily for English fansub groups of anime", + "language": "en-US", + "encoding": "Unicode (UTF-8)", + "enable": true, + "redirect": false, + "supportsRss": true, + "supportsSearch": true, + "supportsRedirect": false, + "supportsPagination": false, + "appProfileId": 1, + "protocol": "torrent", + "privacy": "public", + "capabilities": { + "limitsMax": 100, + "limitsDefault": 100, + "categories": [ + { + "id": 5000, + "name": "TV", + "subCategories": [ + { + "id": 5070, + "name": "TV/Anime", + "subCategories": [] + } + ] + }, + { + "id": 100001, + "name": "Anime - Sub", + "subCategories": [] + }, + { + "id": 100002, + "name": "Anime - Raw", + "subCategories": [] + }, + { + "id": 100003, + "name": "Anime - Dub", + "subCategories": [] + }, + { + "id": 100004, + "name": "LA - Sub", + "subCategories": [] + }, + { + "id": 100005, + "name": "LA - Raw", + "subCategories": [] + }, + { + "id": 7000, + "name": "Books", + "subCategories": [ + { + "id": 7020, + "name": "Books/EBook", + "subCategories": [] + }, + { + "id": 7030, + "name": "Books/Comics", + "subCategories": [] + } + ] + }, + { + "id": 100006, + "name": "Light Novel", + "subCategories": [] + }, + { + "id": 100007, + "name": "Manga - TLed", + "subCategories": [] + }, + { + "id": 100008, + "name": "Manga - Raw", + "subCategories": [] + }, + { + "id": 3000, + "name": "Audio", + "subCategories": [ + { + "id": 3010, + "name": "Audio/MP3", + "subCategories": [] + }, + { + "id": 3040, + "name": "Audio/Lossless", + "subCategories": [] + }, + { + "id": 3020, + "name": "Audio/Video", + "subCategories": [] + } + ] + }, + { + "id": 100009, + "name": "♫ - Lossy", + "subCategories": [] + }, + { + "id": 100010, + "name": "♫ - Lossless", + "subCategories": [] + }, + { + "id": 100011, + "name": "♫ - Video", + "subCategories": [] + }, + { + "id": 4000, + "name": "PC", + "subCategories": [ + { + "id": 4050, + "name": "PC/Games", + "subCategories": [] + }, + { + "id": 4010, + "name": "PC/0day", + "subCategories": [] + } + ] + }, + { + "id": 100012, + "name": "Games", + "subCategories": [] + }, + { + "id": 100013, + "name": "Applications", + "subCategories": [] + }, + { + "id": 6000, + "name": "XXX", + "subCategories": [ + { + "id": 6060, + "name": "XXX/ImageSet", + "subCategories": [] + } + ] + }, + { + "id": 100014, + "name": "Pictures", + "subCategories": [] + }, + { + "id": 100015, + "name": "Adult Video", + "subCategories": [] + }, + { + "id": 8000, + "name": "Other", + "subCategories": [] + }, + { + "id": 100016, + "name": "Other", + "subCategories": [] + } + ], + "supportsRawSearch": false, + "searchParams": [ + "q" + ], + "tvSearchParams": [ + "q" + ], + "movieSearchParams": [], + "musicSearchParams": [ + "q" + ], + "bookSearchParams": [ + "q" + ] + }, + "priority": 25, + "added": "2023-06-03T18:59:05Z", + "sortName": "anidex", + "name": "Anidex", + "fields": [ + { + "order": 0, + "name": "baseUrl", + "label": "Base Url", + "helpText": "Select which baseurl Prowlarr will use for requests to the site", + "value": "https://anidex.info/", + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "getUrls" + }, + { + "order": 1, + "name": "authorisedOnly", + "label": "Authorised Only", + "helpText": "Search authorised torrents only", + "value": false, + "type": "checkbox", + "advanced": false + }, + { + "order": 2, + "name": "languagesOnly", + "label": "Languages Only", + "helpText": "Search selected languages only. None ticked = ALL.", + "value": [], + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 1, + "name": "GB", + "order": 272, + "hint": "English" + }, + { + "value": 2, + "name": "JP", + "order": 275, + "hint": "Japanese" + }, + { + "value": 3, + "name": "PL", + "order": 278, + "hint": "Polish" + }, + { + "value": 4, + "name": "RS", + "order": 281, + "hint": "Serbo-Croatian" + }, + { + "value": 5, + "name": "NL", + "order": 284, + "hint": "Dutch" + }, + { + "value": 6, + "name": "IT", + "order": 287, + "hint": "Italian" + }, + { + "value": 7, + "name": "RU", + "order": 290, + "hint": "Russian" + }, + { + "value": 8, + "name": "DE", + "order": 293, + "hint": "German" + }, + { + "value": 9, + "name": "HU", + "order": 296, + "hint": "Hungarian" + }, + { + "value": 10, + "name": "FR", + "order": 299, + "hint": "French" + }, + { + "value": 11, + "name": "FI", + "order": 302, + "hint": "Finnish" + }, + { + "value": 12, + "name": "VN", + "order": 305, + "hint": "Vietnamese" + }, + { + "value": 13, + "name": "GR", + "order": 308, + "hint": "Greek" + }, + { + "value": 14, + "name": "BG", + "order": 311, + "hint": "Bulgarian" + }, + { + "value": 15, + "name": "ES", + "order": 314, + "hint": "Spanish (Spain)" + }, + { + "value": 16, + "name": "BR", + "order": 317, + "hint": "Portuguese (Brazil)" + }, + { + "value": 17, + "name": "PT", + "order": 320, + "hint": "Portuguese (Portugal)" + }, + { + "value": 18, + "name": "SE", + "order": 323, + "hint": "Swedish" + }, + { + "value": 19, + "name": "SA", + "order": 326, + "hint": "Arabic" + }, + { + "value": 20, + "name": "DK", + "order": 329, + "hint": "Danish" + }, + { + "value": 21, + "name": "CN", + "order": 332, + "hint": "Chinese (Simplified)" + }, + { + "value": 22, + "name": "BD", + "order": 335, + "hint": "Bengali" + }, + { + "value": 23, + "name": "RO", + "order": 338, + "hint": "Romanian" + }, + { + "value": 24, + "name": "CZ", + "order": 341, + "hint": "Czech" + }, + { + "value": 25, + "name": "MN", + "order": 344, + "hint": "Mongolian" + }, + { + "value": 26, + "name": "TR", + "order": 347, + "hint": "Turkish" + }, + { + "value": 27, + "name": "ID", + "order": 350, + "hint": "Indonesian" + }, + { + "value": 28, + "name": "KR", + "order": 353, + "hint": "Korean" + }, + { + "value": 29, + "name": "MX", + "order": 356, + "hint": "Spanish (LATAM)" + }, + { + "value": 30, + "name": "IR", + "order": 359, + "hint": "Persian" + }, + { + "value": 31, + "name": "MY", + "order": 362, + "hint": "Malaysian" + } + ] + }, + { + "order": 3, + "name": "baseSettings.queryLimit", + "label": "Query Limit", + "helpText": "The number of queries within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 4, + "name": "baseSettings.grabLimit", + "label": "Grab Limit", + "helpText": "The number of grabs within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 5, + "name": "torrentBaseSettings.appMinimumSeeders", + "label": "Apps Minimum Seeders", + "helpText": "Minimum seeders required by the Applications for the indexer to grab, empty is Sync profile's default", + "type": "number", + "advanced": true + }, + { + "order": 6, + "name": "torrentBaseSettings.seedRatio", + "label": "Seed Ratio", + "helpText": "The ratio a torrent should reach before stopping, empty is app's default", + "type": "textbox", + "advanced": true + }, + { + "order": 7, + "name": "torrentBaseSettings.seedTime", + "label": "Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 8, + "name": "torrentBaseSettings.packSeedTime", + "label": "Pack Seed Time", + "unit": "minutes", + "helpText": "The time a pack (season or discography) torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + } + ], + "implementationName": "Anidex", + "implementation": "Anidex", + "configContract": "AnidexSettings", + "infoLink": "https://wiki.servarr.com/prowlarr/supported-indexers#anidex", + "tags": [1], + "id": 9 + }, + { + "indexerUrls": [ + "https://www.anirena.com/" + ], + "legacyUrls": [], + "definitionName": "anirena", + "description": "AniRena is a Public torrent tracker for the latest anime and Japanese related torrents", + "language": "en-US", + "encoding": "Unicode (UTF-8)", + "enable": true, + "redirect": false, + "supportsRss": true, + "supportsSearch": true, + "supportsRedirect": false, + "supportsPagination": false, + "appProfileId": 1, + "protocol": "torrent", + "privacy": "public", + "capabilities": { + "limitsMax": 100, + "limitsDefault": 100, + "categories": [ + { + "id": 5000, + "name": "TV", + "subCategories": [ + { + "id": 5070, + "name": "TV/Anime", + "subCategories": [] + } + ] + }, + { + "id": 100001, + "name": "Raw Animes", + "subCategories": [] + }, + { + "id": 100002, + "name": "Anime", + "subCategories": [] + }, + { + "id": 100003, + "name": "Hentai", + "subCategories": [] + }, + { + "id": 100004, + "name": "Drama", + "subCategories": [] + }, + { + "id": 100009, + "name": "Anime Music Videos", + "subCategories": [] + }, + { + "id": 100010, + "name": "Non-English", + "subCategories": [] + }, + { + "id": 4000, + "name": "PC", + "subCategories": [ + { + "id": 4020, + "name": "PC/ISO", + "subCategories": [] + } + ] + }, + { + "id": 100005, + "name": "DVD/ISO", + "subCategories": [] + }, + { + "id": 100006, + "name": "Hentai-Game", + "subCategories": [] + }, + { + "id": 7000, + "name": "Books", + "subCategories": [] + }, + { + "id": 100007, + "name": "Manga", + "subCategories": [] + }, + { + "id": 3000, + "name": "Audio", + "subCategories": [] + }, + { + "id": 100008, + "name": "Audio", + "subCategories": [] + }, + { + "id": 0, + "name": "Other", + "subCategories": [] + }, + { + "id": 100011, + "name": "Other", + "subCategories": [] + } + ], + "supportsRawSearch": false, + "searchParams": [ + "q", + "q" + ], + "tvSearchParams": [ + "q", + "season", + "ep" + ], + "movieSearchParams": [], + "musicSearchParams": [ + "q" + ], + "bookSearchParams": [ + "q" + ] + }, + "priority": 25, + "added": "2023-06-03T18:55:43Z", + "sortName": "anirena", + "name": "AniRena", + "fields": [ + { + "order": 0, + "name": "definitionFile", + "value": "anirena", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 1, + "name": "baseUrl", + "label": "Base Url", + "helpText": "Select which baseurl Prowlarr will use for requests to the site", + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "getUrls" + }, + { + "order": 2, + "name": "baseSettings.queryLimit", + "label": "Query Limit", + "helpText": "The number of queries within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 3, + "name": "baseSettings.grabLimit", + "label": "Grab Limit", + "helpText": "The number of grabs within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 4, + "name": "torrentBaseSettings.appMinimumSeeders", + "label": "Apps Minimum Seeders", + "helpText": "Minimum seeders required by the Applications for the indexer to grab, empty is Sync profile's default", + "type": "number", + "advanced": true + }, + { + "order": 5, + "name": "torrentBaseSettings.seedRatio", + "label": "Seed Ratio", + "helpText": "The ratio a torrent should reach before stopping, empty is app's default", + "type": "textbox", + "advanced": true + }, + { + "order": 6, + "name": "torrentBaseSettings.seedTime", + "label": "Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 7, + "name": "torrentBaseSettings.packSeedTime", + "label": "Pack Seed Time", + "unit": "minutes", + "helpText": "The time a pack (season or discography) torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 0, + "name": "flaresolverr", + "label": "FlareSolverr", + "value": "This site may use Cloudflare DDoS Protection, therefore Prowlarr requires FlareSolverr to access it.", + "type": "info", + "advanced": false + } + ], + "implementationName": "Cardigann", + "implementation": "Cardigann", + "configContract": "CardigannSettings", + "infoLink": "https://wiki.servarr.com/prowlarr/supported-indexers#anirena", + "tags": [1], + "id": 6 + }, + { + "indexerUrls": [ + "https://asnet.pw/" + ], + "legacyUrls": [], + "definitionName": "anisource", + "description": "AniSource is a Public site for HD Anime raws.", + "language": "en-US", + "encoding": "Unicode (UTF-8)", + "enable": true, + "redirect": false, + "supportsRss": true, + "supportsSearch": true, + "supportsRedirect": false, + "supportsPagination": false, + "appProfileId": 1, + "protocol": "torrent", + "privacy": "public", + "capabilities": { + "limitsMax": 100, + "limitsDefault": 100, + "categories": [ + { + "id": 5000, + "name": "TV", + "subCategories": [ + { + "id": 5070, + "name": "TV/Anime", + "subCategories": [] + } + ] + }, + { + "id": 100001, + "name": "Raw Animes", + "subCategories": [] + } + ], + "supportsRawSearch": false, + "searchParams": [ + "q", + "q" + ], + "tvSearchParams": [ + "q", + "season", + "ep" + ], + "movieSearchParams": [], + "musicSearchParams": [], + "bookSearchParams": [] + }, + "priority": 25, + "added": "2023-06-03T18:56:29Z", + "sortName": "anisource", + "name": "AniSource", + "fields": [ + { + "order": 0, + "name": "definitionFile", + "value": "anisource", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 1, + "name": "baseUrl", + "label": "Base Url", + "helpText": "Select which baseurl Prowlarr will use for requests to the site", + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "getUrls" + }, + { + "order": 2, + "name": "baseSettings.queryLimit", + "label": "Query Limit", + "helpText": "The number of queries within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 3, + "name": "baseSettings.grabLimit", + "label": "Grab Limit", + "helpText": "The number of grabs within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 4, + "name": "torrentBaseSettings.appMinimumSeeders", + "label": "Apps Minimum Seeders", + "helpText": "Minimum seeders required by the Applications for the indexer to grab, empty is Sync profile's default", + "type": "number", + "advanced": true + }, + { + "order": 5, + "name": "torrentBaseSettings.seedRatio", + "label": "Seed Ratio", + "helpText": "The ratio a torrent should reach before stopping, empty is app's default", + "type": "textbox", + "advanced": true + }, + { + "order": 6, + "name": "torrentBaseSettings.seedTime", + "label": "Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 7, + "name": "torrentBaseSettings.packSeedTime", + "label": "Pack Seed Time", + "unit": "minutes", + "helpText": "The time a pack (season or discography) torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + } + ], + "implementationName": "Cardigann", + "implementation": "Cardigann", + "configContract": "CardigannSettings", + "infoLink": "https://wiki.servarr.com/prowlarr/supported-indexers#anisource", + "tags": [], + "id": 7 + }, + { + "indexerUrls": [ + "https://badasstorrents.com/", + "https://badasstorrents.mrunblock.bond/", + "https://badasstorrents.nocensor.cloud/" + ], + "legacyUrls": [ + "https://badasstorrents.nocensor.work/", + "https://badasstorrents.nocensor.biz/", + "https://badasstorrents.nocensor.sbs/", + "https://badasstorrents.nocensor.world/", + "https://badasstorrents.nocensor.lol/", + "https://badasstorrents.nocensor.art/", + "https://badasstorrents.mrunblock.guru/", + "https://badasstorrents.mrunblock.life/", + "https://badasstorrents.nocensor.click/" + ], + "definitionName": "badasstorrents", + "description": "Badass Torrents is a Public torrent site for MOVIES / TV / GENERAL", + "language": "en-US", + "encoding": "Unicode (UTF-8)", + "enable": true, + "redirect": false, + "supportsRss": true, + "supportsSearch": true, + "supportsRedirect": false, + "supportsPagination": false, + "appProfileId": 1, + "protocol": "torrent", + "privacy": "public", + "capabilities": { + "limitsMax": 100, + "limitsDefault": 100, + "categories": [ + { + "id": 5000, + "name": "TV", + "subCategories": [ + { + "id": 5070, + "name": "TV/Anime", + "subCategories": [] + } + ] + }, + { + "id": 4000, + "name": "PC", + "subCategories": [ + { + "id": 4050, + "name": "PC/Games", + "subCategories": [] + } + ] + }, + { + "id": 7000, + "name": "Books", + "subCategories": [] + }, + { + "id": 2000, + "name": "Movies", + "subCategories": [] + }, + { + "id": 3000, + "name": "Audio", + "subCategories": [] + }, + { + "id": 0, + "name": "Other", + "subCategories": [] + }, + { + "id": 6000, + "name": "XXX", + "subCategories": [] + } + ], + "supportsRawSearch": false, + "searchParams": [ + "q", + "q" + ], + "tvSearchParams": [ + "q", + "season", + "ep" + ], + "movieSearchParams": [ + "q" + ], + "musicSearchParams": [ + "q", + "album", + "artist" + ], + "bookSearchParams": [ + "q" + ] + }, + "priority": 25, + "added": "2023-06-03T18:59:35Z", + "sortName": "badass torrents", + "name": "Badass Torrents", + "fields": [ + { + "order": 0, + "name": "definitionFile", + "value": "badasstorrents", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 1, + "name": "baseUrl", + "label": "Base Url", + "helpText": "Select which baseurl Prowlarr will use for requests to the site", + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "getUrls" + }, + { + "order": 2, + "name": "baseSettings.queryLimit", + "label": "Query Limit", + "helpText": "The number of queries within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 3, + "name": "baseSettings.grabLimit", + "label": "Grab Limit", + "helpText": "The number of grabs within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 4, + "name": "torrentBaseSettings.appMinimumSeeders", + "label": "Apps Minimum Seeders", + "helpText": "Minimum seeders required by the Applications for the indexer to grab, empty is Sync profile's default", + "type": "number", + "advanced": true + }, + { + "order": 5, + "name": "torrentBaseSettings.seedRatio", + "label": "Seed Ratio", + "helpText": "The ratio a torrent should reach before stopping, empty is app's default", + "type": "textbox", + "advanced": true + }, + { + "order": 6, + "name": "torrentBaseSettings.seedTime", + "label": "Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 7, + "name": "torrentBaseSettings.packSeedTime", + "label": "Pack Seed Time", + "unit": "minutes", + "helpText": "The time a pack (season or discography) torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 0, + "name": "downloadlink", + "label": "Download link", + "value": 1, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": ".torrent", + "order": 0 + }, + { + "value": 1, + "name": "magnet", + "order": 0 + } + ] + }, + { + "order": 1, + "name": "downloadlink2", + "label": "Download link (fallback)", + "value": 0, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": ".torrent", + "order": 0 + }, + { + "value": 1, + "name": "magnet", + "order": 0 + } + ] + }, + { + "order": 2, + "name": "info_download", + "label": "About the Download links", + "value": "You can optionally set as a fallback an automatic alternate link, so if the .torrent download link fails your download will still be successful.", + "type": "info", + "advanced": false + } + ], + "implementationName": "Cardigann", + "implementation": "Cardigann", + "configContract": "CardigannSettings", + "infoLink": "https://wiki.servarr.com/prowlarr/supported-indexers#badasstorrents", + "tags": [], + "id": 11 + }, + { + "indexerUrls": [ + "https://bangumi.moe/" + ], + "legacyUrls": [], + "definitionName": "bangumi-moe", + "description": "Bangumi Moe is a Public torrent site for ANIME", + "language": "en-US", + "encoding": "Unicode (UTF-8)", + "enable": true, + "redirect": false, + "supportsRss": true, + "supportsSearch": true, + "supportsRedirect": false, + "supportsPagination": false, + "appProfileId": 1, + "protocol": "torrent", + "privacy": "public", + "capabilities": { + "limitsMax": 100, + "limitsDefault": 100, + "categories": [ + { + "id": 5000, + "name": "TV", + "subCategories": [ + { + "id": 5070, + "name": "TV/Anime", + "subCategories": [] + } + ] + }, + { + "id": 121599, + "name": "Anime", + "subCategories": [] + }, + { + "id": 152717, + "name": "Anime Pack", + "subCategories": [] + }, + { + "id": 2000, + "name": "Movies", + "subCategories": [] + }, + { + "id": 129757, + "name": "Anime Movie", + "subCategories": [] + }, + { + "id": 3000, + "name": "Audio", + "subCategories": [] + }, + { + "id": 143311, + "name": "Music", + "subCategories": [] + }, + { + "id": 7000, + "name": "Books", + "subCategories": [ + { + "id": 7030, + "name": "Books/Comics", + "subCategories": [] + } + ] + }, + { + "id": 158045, + "name": "Comic", + "subCategories": [] + }, + { + "id": 1000, + "name": "Console", + "subCategories": [] + }, + { + "id": 157853, + "name": "Game", + "subCategories": [] + }, + { + "id": 0, + "name": "Other", + "subCategories": [] + }, + { + "id": 123135, + "name": "Other", + "subCategories": [] + }, + { + "id": 122298, + "name": "Dorama", + "subCategories": [] + } + ], + "supportsRawSearch": false, + "searchParams": [ + "q", + "q" + ], + "tvSearchParams": [ + "q", + "season", + "ep" + ], + "movieSearchParams": [ + "q" + ], + "musicSearchParams": [ + "q" + ], + "bookSearchParams": [ + "q" + ] + }, + "priority": 25, + "added": "2023-06-03T18:59:38Z", + "sortName": "bangumi moe", + "name": "Bangumi Moe", + "fields": [ + { + "order": 0, + "name": "definitionFile", + "value": "bangumi-moe", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 1, + "name": "baseUrl", + "label": "Base Url", + "helpText": "Select which baseurl Prowlarr will use for requests to the site", + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "getUrls" + }, + { + "order": 2, + "name": "baseSettings.queryLimit", + "label": "Query Limit", + "helpText": "The number of queries within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 3, + "name": "baseSettings.grabLimit", + "label": "Grab Limit", + "helpText": "The number of grabs within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 4, + "name": "torrentBaseSettings.appMinimumSeeders", + "label": "Apps Minimum Seeders", + "helpText": "Minimum seeders required by the Applications for the indexer to grab, empty is Sync profile's default", + "type": "number", + "advanced": true + }, + { + "order": 5, + "name": "torrentBaseSettings.seedRatio", + "label": "Seed Ratio", + "helpText": "The ratio a torrent should reach before stopping, empty is app's default", + "type": "textbox", + "advanced": true + }, + { + "order": 6, + "name": "torrentBaseSettings.seedTime", + "label": "Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 7, + "name": "torrentBaseSettings.packSeedTime", + "label": "Pack Seed Time", + "unit": "minutes", + "helpText": "The time a pack (season or discography) torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + } + ], + "implementationName": "Cardigann", + "implementation": "Cardigann", + "configContract": "CardigannSettings", + "infoLink": "https://wiki.servarr.com/prowlarr/supported-indexers#bangumi-moe", + "tags": [], + "id": 12 + }, + { + "indexerUrls": [ + "https://bitsearch.to/", + "https://bitsearch.nocensor.cloud/", + "https://bitsearch.mrunblock.bond/" + ], + "legacyUrls": [ + "https://bitsearch.nocensor.biz/", + "https://bitsearch.nocensor.sbs/", + "https://bitsearch.nocensor.world/", + "https://bitsearch.nocensor.lol/", + "https://bitsearch.mrunblock.guru/", + "https://bitsearch.mrunblock.life/", + "https://bitsearch.nocensor.click/" + ], + "definitionName": "bitsearch", + "description": "BitSearch is a Public torrent meta-search engine", + "language": "en-US", + "encoding": "Unicode (UTF-8)", + "enable": true, + "redirect": false, + "supportsRss": true, + "supportsSearch": true, + "supportsRedirect": false, + "supportsPagination": false, + "appProfileId": 1, + "protocol": "torrent", + "privacy": "public", + "capabilities": { + "limitsMax": 100, + "limitsDefault": 100, + "categories": [ + { + "id": 3000, + "name": "Audio", + "subCategories": [ + { + "id": 3030, + "name": "Audio/Audiobook", + "subCategories": [] + }, + { + "id": 3010, + "name": "Audio/MP3", + "subCategories": [] + }, + { + "id": 3040, + "name": "Audio/Lossless", + "subCategories": [] + }, + { + "id": 3020, + "name": "Audio/Video", + "subCategories": [] + } + ] + }, + { + "id": 7000, + "name": "Books", + "subCategories": [ + { + "id": 7020, + "name": "Books/EBook", + "subCategories": [] + }, + { + "id": 7030, + "name": "Books/Comics", + "subCategories": [] + } + ] + }, + { + "id": 4000, + "name": "PC", + "subCategories": [ + { + "id": 4050, + "name": "PC/Games", + "subCategories": [] + }, + { + "id": 4070, + "name": "PC/Mobile-Android", + "subCategories": [] + }, + { + "id": 4020, + "name": "PC/ISO", + "subCategories": [] + }, + { + "id": 4010, + "name": "PC/0day", + "subCategories": [] + } + ] + }, + { + "id": 2000, + "name": "Movies", + "subCategories": [] + }, + { + "id": 0, + "name": "Other", + "subCategories": [ + { + "id": 10, + "name": "Other/Misc", + "subCategories": [] + } + ] + }, + { + "id": 5000, + "name": "TV", + "subCategories": [] + }, + { + "id": 6000, + "name": "XXX", + "subCategories": [] + } + ], + "supportsRawSearch": false, + "searchParams": [ + "q", + "q" + ], + "tvSearchParams": [ + "q", + "season", + "ep" + ], + "movieSearchParams": [ + "q" + ], + "musicSearchParams": [ + "q" + ], + "bookSearchParams": [ + "q" + ] + }, + "priority": 25, + "added": "2023-06-03T18:59:40Z", + "sortName": "bitsearch", + "name": "BitSearch", + "fields": [ + { + "order": 0, + "name": "definitionFile", + "value": "bitsearch", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 1, + "name": "baseUrl", + "label": "Base Url", + "helpText": "Select which baseurl Prowlarr will use for requests to the site", + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "getUrls" + }, + { + "order": 2, + "name": "baseSettings.queryLimit", + "label": "Query Limit", + "helpText": "The number of queries within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 3, + "name": "baseSettings.grabLimit", + "label": "Grab Limit", + "helpText": "The number of grabs within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 4, + "name": "torrentBaseSettings.appMinimumSeeders", + "label": "Apps Minimum Seeders", + "helpText": "Minimum seeders required by the Applications for the indexer to grab, empty is Sync profile's default", + "type": "number", + "advanced": true + }, + { + "order": 5, + "name": "torrentBaseSettings.seedRatio", + "label": "Seed Ratio", + "helpText": "The ratio a torrent should reach before stopping, empty is app's default", + "type": "textbox", + "advanced": true + }, + { + "order": 6, + "name": "torrentBaseSettings.seedTime", + "label": "Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 7, + "name": "torrentBaseSettings.packSeedTime", + "label": "Pack Seed Time", + "unit": "minutes", + "helpText": "The time a pack (season or discography) torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 0, + "name": "sort", + "label": "Sort requested from site", + "value": 0, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "created", + "order": 0 + }, + { + "value": 1, + "name": "seeders", + "order": 0 + }, + { + "value": 2, + "name": "size", + "order": 0 + } + ] + }, + { + "order": 1, + "name": "type", + "label": "Order requested from site", + "value": 1, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "asc", + "order": 0 + }, + { + "value": 1, + "name": "desc", + "order": 0 + } + ] + } + ], + "implementationName": "Cardigann", + "implementation": "Cardigann", + "configContract": "CardigannSettings", + "infoLink": "https://wiki.servarr.com/prowlarr/supported-indexers#bitsearch", + "tags": [], + "id": 13 + }, + { + "indexerUrls": [ + "https://bt.etree.org/" + ], + "legacyUrls": [ + "http://bt.etree.org/" + ], + "definitionName": "btetree", + "description": "BT.etree is a Public Tracker dedicated to Bootleg FLAC MUSIC", + "language": "en-US", + "encoding": "Unicode (UTF-8)", + "enable": true, + "redirect": false, + "supportsRss": true, + "supportsSearch": true, + "supportsRedirect": false, + "supportsPagination": false, + "appProfileId": 1, + "protocol": "torrent", + "privacy": "public", + "capabilities": { + "limitsMax": 100, + "limitsDefault": 100, + "categories": [ + { + "id": 3000, + "name": "Audio", + "subCategories": [ + { + "id": 3040, + "name": "Audio/Lossless", + "subCategories": [] + } + ] + } + ], + "supportsRawSearch": false, + "searchParams": [ + "q", + "q" + ], + "tvSearchParams": [], + "movieSearchParams": [], + "musicSearchParams": [ + "q", + "artist" + ], + "bookSearchParams": [] + }, + "priority": 25, + "added": "2023-06-03T18:57:10Z", + "sortName": "bt etree", + "name": "BT.etree", + "fields": [ + { + "order": 0, + "name": "definitionFile", + "value": "btetree", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 1, + "name": "baseUrl", + "label": "Base Url", + "helpText": "Select which baseurl Prowlarr will use for requests to the site", + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "getUrls" + }, + { + "order": 2, + "name": "baseSettings.queryLimit", + "label": "Query Limit", + "helpText": "The number of queries within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 3, + "name": "baseSettings.grabLimit", + "label": "Grab Limit", + "helpText": "The number of grabs within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 4, + "name": "torrentBaseSettings.appMinimumSeeders", + "label": "Apps Minimum Seeders", + "helpText": "Minimum seeders required by the Applications for the indexer to grab, empty is Sync profile's default", + "type": "number", + "advanced": true + }, + { + "order": 5, + "name": "torrentBaseSettings.seedRatio", + "label": "Seed Ratio", + "helpText": "The ratio a torrent should reach before stopping, empty is app's default", + "type": "textbox", + "advanced": true + }, + { + "order": 6, + "name": "torrentBaseSettings.seedTime", + "label": "Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 7, + "name": "torrentBaseSettings.packSeedTime", + "label": "Pack Seed Time", + "unit": "minutes", + "helpText": "The time a pack (season or discography) torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 0, + "name": "sort", + "label": "Sort requested from site", + "value": 0, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "created", + "order": 0 + }, + { + "value": 1, + "name": "title", + "order": 0 + }, + { + "value": 2, + "name": "seeders", + "order": 0 + } + ] + } + ], + "implementationName": "Cardigann", + "implementation": "Cardigann", + "configContract": "CardigannSettings", + "infoLink": "https://wiki.servarr.com/prowlarr/supported-indexers#btetree", + "tags": [], + "id": 8 + }, + { + "indexerUrls": [ + "https://btsow.motorcycles/" + ], + "legacyUrls": [ + "https://btsow.rest/", + "https://btsow.bar/", + "https://btsow.click/", + "https://btsow.cfd/", + "https://btsow.sbs/", + "https://btsow.quest/", + "https://btsow.autos/", + "https://btsow.beauty/", + "https://btsow.mom/", + "https://btsow.boats/", + "https://btsow.hair/", + "https://btsow.bond/", + "https://btsow.skin/", + "https://btsow.makeup/", + "https://btsow.homes/" + ], + "definitionName": "btsow", + "description": "BTSOW is a Public torrent indexer", + "language": "en-US", + "encoding": "Unicode (UTF-8)", + "enable": true, + "redirect": false, + "supportsRss": true, + "supportsSearch": true, + "supportsRedirect": false, + "supportsPagination": false, + "appProfileId": 1, + "protocol": "torrent", + "privacy": "public", + "capabilities": { + "limitsMax": 100, + "limitsDefault": 100, + "categories": [ + { + "id": 0, + "name": "Other", + "subCategories": [] + } + ], + "supportsRawSearch": false, + "searchParams": [ + "q", + "q" + ], + "tvSearchParams": [ + "q", + "season", + "ep" + ], + "movieSearchParams": [ + "q" + ], + "musicSearchParams": [ + "q" + ], + "bookSearchParams": [ + "q" + ] + }, + "priority": 25, + "added": "2023-06-03T18:59:31Z", + "sortName": "btsow", + "name": "BTSOW", + "fields": [ + { + "order": 0, + "name": "definitionFile", + "value": "btsow", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 1, + "name": "baseUrl", + "label": "Base Url", + "helpText": "Select which baseurl Prowlarr will use for requests to the site", + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "getUrls" + }, + { + "order": 2, + "name": "baseSettings.queryLimit", + "label": "Query Limit", + "helpText": "The number of queries within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 3, + "name": "baseSettings.grabLimit", + "label": "Grab Limit", + "helpText": "The number of grabs within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 4, + "name": "torrentBaseSettings.appMinimumSeeders", + "label": "Apps Minimum Seeders", + "helpText": "Minimum seeders required by the Applications for the indexer to grab, empty is Sync profile's default", + "type": "number", + "advanced": true + }, + { + "order": 5, + "name": "torrentBaseSettings.seedRatio", + "label": "Seed Ratio", + "helpText": "The ratio a torrent should reach before stopping, empty is app's default", + "type": "textbox", + "advanced": true + }, + { + "order": 6, + "name": "torrentBaseSettings.seedTime", + "label": "Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 7, + "name": "torrentBaseSettings.packSeedTime", + "label": "Pack Seed Time", + "unit": "minutes", + "helpText": "The time a pack (season or discography) torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 0, + "name": "info_8000", + "label": "About BTSOW Categories", + "value": "BTSOW does not return categories in its search results.
To add to your Apps' Torznab indexer, replace all categories with 8000(Other).", + "type": "info", + "advanced": false + } + ], + "implementationName": "Cardigann", + "implementation": "Cardigann", + "configContract": "CardigannSettings", + "infoLink": "https://wiki.servarr.com/prowlarr/supported-indexers#btsow", + "tags": [], + "id": 10 + }, + { + "indexerUrls": [ + "https://www.bulltorrent.com/" + ], + "legacyUrls": [ + "https://toros.nocensor.space/", + "https://toros.nocensor.work/", + "https://www.toros.co/", + "https://toros.nocensor.biz/", + "https://toros.nocensor.lol/", + "https://toros.mrunblock.guru/", + "https://toros.mrunblock.life/" + ], + "definitionName": "bulltorrent", + "description": "BullTorrent (formerly TOROS) is a Public torrent index", + "language": "en-US", + "encoding": "Unicode (UTF-8)", + "enable": true, + "redirect": false, + "supportsRss": true, + "supportsSearch": true, + "supportsRedirect": false, + "supportsPagination": false, + "appProfileId": 1, + "protocol": "torrent", + "privacy": "public", + "capabilities": { + "limitsMax": 100, + "limitsDefault": 100, + "categories": [ + { + "id": 2000, + "name": "Movies", + "subCategories": [] + }, + { + "id": 100001, + "name": "Movies", + "subCategories": [] + }, + { + "id": 3000, + "name": "Audio", + "subCategories": [] + }, + { + "id": 100002, + "name": "Music", + "subCategories": [] + }, + { + "id": 5000, + "name": "TV", + "subCategories": [ + { + "id": 5070, + "name": "TV/Anime", + "subCategories": [] + } + ] + }, + { + "id": 100003, + "name": "Television", + "subCategories": [] + }, + { + "id": 4000, + "name": "PC", + "subCategories": [ + { + "id": 4050, + "name": "PC/Games", + "subCategories": [] + } + ] + }, + { + "id": 100004, + "name": "Games", + "subCategories": [] + }, + { + "id": 100005, + "name": "Software", + "subCategories": [] + }, + { + "id": 100006, + "name": "Anime", + "subCategories": [] + }, + { + "id": 6000, + "name": "XXX", + "subCategories": [] + }, + { + "id": 100007, + "name": "Adult", + "subCategories": [] + }, + { + "id": 7000, + "name": "Books", + "subCategories": [] + }, + { + "id": 100008, + "name": "Ebooks", + "subCategories": [] + }, + { + "id": 100009, + "name": "Animation", + "subCategories": [] + }, + { + "id": 0, + "name": "Other", + "subCategories": [] + }, + { + "id": 100010, + "name": "Other", + "subCategories": [] + }, + { + "id": 100000, + "name": "TBC", + "subCategories": [] + } + ], + "supportsRawSearch": false, + "searchParams": [ + "q", + "q" + ], + "tvSearchParams": [ + "q", + "season", + "ep" + ], + "movieSearchParams": [ + "q" + ], + "musicSearchParams": [ + "q" + ], + "bookSearchParams": [ + "q" + ] + }, + "priority": 25, + "added": "2023-06-03T18:59:53Z", + "sortName": "bulltorrent", + "name": "BullTorrent", + "fields": [ + { + "order": 0, + "name": "definitionFile", + "value": "bulltorrent", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 1, + "name": "baseUrl", + "label": "Base Url", + "helpText": "Select which baseurl Prowlarr will use for requests to the site", + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "getUrls" + }, + { + "order": 2, + "name": "baseSettings.queryLimit", + "label": "Query Limit", + "helpText": "The number of queries within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 3, + "name": "baseSettings.grabLimit", + "label": "Grab Limit", + "helpText": "The number of grabs within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 4, + "name": "torrentBaseSettings.appMinimumSeeders", + "label": "Apps Minimum Seeders", + "helpText": "Minimum seeders required by the Applications for the indexer to grab, empty is Sync profile's default", + "type": "number", + "advanced": true + }, + { + "order": 5, + "name": "torrentBaseSettings.seedRatio", + "label": "Seed Ratio", + "helpText": "The ratio a torrent should reach before stopping, empty is app's default", + "type": "textbox", + "advanced": true + }, + { + "order": 6, + "name": "torrentBaseSettings.seedTime", + "label": "Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 7, + "name": "torrentBaseSettings.packSeedTime", + "label": "Pack Seed Time", + "unit": "minutes", + "helpText": "The time a pack (season or discography) torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 0, + "name": "sort", + "label": "Sort requested from site", + "value": 0, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "created", + "order": 0 + }, + { + "value": 1, + "name": "title", + "order": 0 + }, + { + "value": 2, + "name": "seeders", + "order": 0 + }, + { + "value": 3, + "name": "size", + "order": 0 + } + ] + }, + { + "order": 1, + "name": "type", + "label": "Order requested from site", + "value": 1, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "asc", + "order": 0 + }, + { + "value": 1, + "name": "desc", + "order": 0 + } + ] + } + ], + "implementationName": "Cardigann", + "implementation": "Cardigann", + "configContract": "CardigannSettings", + "infoLink": "https://wiki.servarr.com/prowlarr/supported-indexers#bulltorrent", + "tags": [], + "id": 14 + }, + { + "indexerUrls": [ + "https://concen.org/" + ], + "legacyUrls": [], + "definitionName": "concen", + "description": "ConCen (Conspiracy Central) is a Public conspiracy related torrent index", + "language": "en-US", + "encoding": "Unicode (UTF-8)", + "enable": true, + "redirect": false, + "supportsRss": true, + "supportsSearch": true, + "supportsRedirect": false, + "supportsPagination": false, + "appProfileId": 1, + "protocol": "torrent", + "privacy": "public", + "capabilities": { + "limitsMax": 100, + "limitsDefault": 100, + "categories": [ + { + "id": 0, + "name": "Other", + "subCategories": [] + } + ], + "supportsRawSearch": false, + "searchParams": [ + "q", + "q" + ], + "tvSearchParams": [ + "q", + "season", + "ep" + ], + "movieSearchParams": [ + "q" + ], + "musicSearchParams": [], + "bookSearchParams": [ + "q" + ] + }, + "priority": 25, + "added": "2023-06-03T18:59:57Z", + "sortName": "concen", + "name": "ConCen", + "fields": [ + { + "order": 0, + "name": "definitionFile", + "value": "concen", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 1, + "name": "baseUrl", + "label": "Base Url", + "helpText": "Select which baseurl Prowlarr will use for requests to the site", + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "getUrls" + }, + { + "order": 2, + "name": "baseSettings.queryLimit", + "label": "Query Limit", + "helpText": "The number of queries within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 3, + "name": "baseSettings.grabLimit", + "label": "Grab Limit", + "helpText": "The number of grabs within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 4, + "name": "torrentBaseSettings.appMinimumSeeders", + "label": "Apps Minimum Seeders", + "helpText": "Minimum seeders required by the Applications for the indexer to grab, empty is Sync profile's default", + "type": "number", + "advanced": true + }, + { + "order": 5, + "name": "torrentBaseSettings.seedRatio", + "label": "Seed Ratio", + "helpText": "The ratio a torrent should reach before stopping, empty is app's default", + "type": "textbox", + "advanced": true + }, + { + "order": 6, + "name": "torrentBaseSettings.seedTime", + "label": "Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 7, + "name": "torrentBaseSettings.packSeedTime", + "label": "Pack Seed Time", + "unit": "minutes", + "helpText": "The time a pack (season or discography) torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 0, + "name": "sort", + "label": "Sort requested from site", + "value": 0, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "created", + "order": 0 + }, + { + "value": 1, + "name": "seeders", + "order": 0 + }, + { + "value": 2, + "name": "size", + "order": 0 + }, + { + "value": 3, + "name": "title", + "order": 0 + } + ] + }, + { + "order": 1, + "name": "type", + "label": "Order requested from site", + "value": 1, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "asc", + "order": 0 + }, + { + "value": 1, + "name": "desc", + "order": 0 + } + ] + } + ], + "implementationName": "Cardigann", + "implementation": "Cardigann", + "configContract": "CardigannSettings", + "infoLink": "https://wiki.servarr.com/prowlarr/supported-indexers#concen", + "tags": [], + "id": 15 + }, + { + "indexerUrls": [ + "https://www.cpasbien.tw/" + ], + "legacyUrls": [ + "https://www1.cpasbiens.ws/", + "https://www2.cpasbiens.ws/", + "https://cpasbiens.cm/", + "https://www1.cpasbiens.cm/", + "https://wwv.cpasbien.to/", + "https://cpasbiens.black-mirror.xyz/", + "https://cpasbiens.unblocked.casa/", + "https://cpasbiens.proxyportal.fun/", + "https://cpasbiens.uk-unblock.xyz/", + "https://cpasbiens.ind-unblock.xyz/", + "https://www.cpasbien.gg/", + "https://www.cpasbien.vip/", + "https://cpasbien.to/" + ], + "definitionName": "cpasbienclone", + "description": "cpasbien clone is a FRENCH Public site for TV / MOVIES / GENERAL", + "language": "fr-FR", + "encoding": "Unicode (UTF-8)", + "enable": true, + "redirect": false, + "supportsRss": true, + "supportsSearch": true, + "supportsRedirect": false, + "supportsPagination": false, + "appProfileId": 1, + "protocol": "torrent", + "privacy": "public", + "capabilities": { + "limitsMax": 100, + "limitsDefault": 100, + "categories": [ + { + "id": 0, + "name": "Other", + "subCategories": [] + } + ], + "supportsRawSearch": true, + "searchParams": [ + "q", + "q" + ], + "tvSearchParams": [ + "q", + "season", + "ep" + ], + "movieSearchParams": [ + "q" + ], + "musicSearchParams": [], + "bookSearchParams": [] + }, + "priority": 25, + "added": "2023-06-03T19:06:17Z", + "sortName": "cpasbien clone", + "name": "cpasbien clone", + "fields": [ + { + "order": 0, + "name": "definitionFile", + "value": "cpasbienclone", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 1, + "name": "baseUrl", + "label": "Base Url", + "helpText": "Select which baseurl Prowlarr will use for requests to the site", + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "getUrls" + }, + { + "order": 2, + "name": "baseSettings.queryLimit", + "label": "Query Limit", + "helpText": "The number of queries within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 3, + "name": "baseSettings.grabLimit", + "label": "Grab Limit", + "helpText": "The number of grabs within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 4, + "name": "torrentBaseSettings.appMinimumSeeders", + "label": "Apps Minimum Seeders", + "helpText": "Minimum seeders required by the Applications for the indexer to grab, empty is Sync profile's default", + "type": "number", + "advanced": true + }, + { + "order": 5, + "name": "torrentBaseSettings.seedRatio", + "label": "Seed Ratio", + "helpText": "The ratio a torrent should reach before stopping, empty is app's default", + "type": "textbox", + "advanced": true + }, + { + "order": 6, + "name": "torrentBaseSettings.seedTime", + "label": "Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 7, + "name": "torrentBaseSettings.packSeedTime", + "label": "Pack Seed Time", + "unit": "minutes", + "helpText": "The time a pack (season or discography) torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 0, + "name": "info_8000", + "label": "About cpasbienclone Categories", + "value": "cpasbienclone does not return categories in its search results. To sync to your apps, include 8000(Other) in your Apps' Sync Categories.", + "type": "info", + "advanced": false + }, + { + "order": 1, + "name": "multilang", + "label": "Replace MULTi by another language in release name", + "value": false, + "type": "checkbox", + "advanced": false + }, + { + "order": 2, + "name": "multilanguage", + "label": "Replace MULTi by this language", + "value": 1, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "ENGLISH", + "order": 0 + }, + { + "value": 1, + "name": "FRENCH", + "order": 0 + }, + { + "value": 2, + "name": "MULTi ENGLISH", + "order": 0 + }, + { + "value": 3, + "name": "MULTi FRENCH", + "order": 0 + }, + { + "value": 4, + "name": "MULTi VOSTFR", + "order": 0 + }, + { + "value": 5, + "name": "VOSTFR", + "order": 0 + } + ] + }, + { + "order": 3, + "name": "vostfr", + "label": "Replace VOSTFR and SUBFRENCH with ENGLISH", + "value": false, + "type": "checkbox", + "advanced": false + }, + { + "order": 4, + "name": "sort", + "label": "Sort requested from site (Works only for searches with Keywords)", + "value": 1, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "created asc", + "order": 0 + }, + { + "value": 1, + "name": "created desc", + "order": 0 + }, + { + "value": 2, + "name": "title asc", + "order": 0 + }, + { + "value": 3, + "name": "title desc", + "order": 0 + }, + { + "value": 4, + "name": "size asc", + "order": 0 + }, + { + "value": 5, + "name": "size desc", + "order": 0 + }, + { + "value": 6, + "name": "seeders asc", + "order": 0 + }, + { + "value": 7, + "name": "seeders desc", + "order": 0 + } + ] + } + ], + "implementationName": "Cardigann", + "implementation": "Cardigann", + "configContract": "CardigannSettings", + "infoLink": "https://wiki.servarr.com/prowlarr/supported-indexers#cpasbienclone", + "tags": [], + "id": 61 + }, + { + "indexerUrls": [ + "https://crackingpatching.com/" + ], + "legacyUrls": [], + "definitionName": "crackingpatching", + "description": "CrackingPatching is a Public tracker for Software and Apps", + "language": "en-US", + "encoding": "Unicode (UTF-8)", + "enable": true, + "redirect": false, + "supportsRss": true, + "supportsSearch": true, + "supportsRedirect": false, + "supportsPagination": false, + "appProfileId": 1, + "protocol": "torrent", + "privacy": "public", + "capabilities": { + "limitsMax": 100, + "limitsDefault": 100, + "categories": [ + { + "id": 4000, + "name": "PC", + "subCategories": [ + { + "id": 4070, + "name": "PC/Mobile-Android", + "subCategories": [] + }, + { + "id": 4050, + "name": "PC/Games", + "subCategories": [] + }, + { + "id": 4030, + "name": "PC/Mac", + "subCategories": [] + } + ] + }, + { + "id": 123433, + "name": "Adobe Software", + "subCategories": [] + }, + { + "id": 132287, + "name": "Adobe Tools", + "subCategories": [] + }, + { + "id": 148100, + "name": "Android", + "subCategories": [] + }, + { + "id": 133515, + "name": "Animations/ 3D Graphics", + "subCategories": [] + }, + { + "id": 122961, + "name": "Antivirus", + "subCategories": [] + }, + { + "id": 150843, + "name": "CD/ DVD Burners", + "subCategories": [] + }, + { + "id": 138732, + "name": "Compression Tools", + "subCategories": [] + }, + { + "id": 139593, + "name": "Converters", + "subCategories": [] + }, + { + "id": 129333, + "name": "Crack & Serials", + "subCategories": [] + }, + { + "id": 140834, + "name": "Downloader", + "subCategories": [] + }, + { + "id": 156448, + "name": "Drivers Update", + "subCategories": [] + }, + { + "id": 110205, + "name": "Games", + "subCategories": [] + }, + { + "id": 113032, + "name": "Home", + "subCategories": [] + }, + { + "id": 106065, + "name": "IDM", + "subCategories": [] + }, + { + "id": 125206, + "name": "IDM Crack/ Patch", + "subCategories": [] + }, + { + "id": 149033, + "name": "iOS/ MAC OS X", + "subCategories": [] + }, + { + "id": 119996, + "name": "Keygen / Loader", + "subCategories": [] + }, + { + "id": 106000, + "name": "KeyGen / Serial", + "subCategories": [] + }, + { + "id": 146972, + "name": "Microsoft Office", + "subCategories": [] + }, + { + "id": 128992, + "name": "Multimedia", + "subCategories": [] + }, + { + "id": 0, + "name": "Other", + "subCategories": [] + }, + { + "id": 138096, + "name": "Other", + "subCategories": [] + }, + { + "id": 133925, + "name": "PDF Tools", + "subCategories": [] + }, + { + "id": 163085, + "name": "Photo Editing Tools", + "subCategories": [] + }, + { + "id": 118514, + "name": "Recovery Software", + "subCategories": [] + }, + { + "id": 163796, + "name": "Request Crack/ Patch", + "subCategories": [] + }, + { + "id": 157419, + "name": "Screen Recorders", + "subCategories": [] + }, + { + "id": 160558, + "name": "Security", + "subCategories": [] + }, + { + "id": 106057, + "name": "System Optimizers", + "subCategories": [] + }, + { + "id": 134700, + "name": "Uncategorized", + "subCategories": [] + }, + { + "id": 157663, + "name": "VPN", + "subCategories": [] + }, + { + "id": 114251, + "name": "Windows", + "subCategories": [] + }, + { + "id": 163084, + "name": "Windows App", + "subCategories": [] + } + ], + "supportsRawSearch": false, + "searchParams": [ + "q", + "q" + ], + "tvSearchParams": [], + "movieSearchParams": [], + "musicSearchParams": [], + "bookSearchParams": [] + }, + "priority": 25, + "added": "2023-06-03T18:59:59Z", + "sortName": "crackingpatching", + "name": "CrackingPatching", + "fields": [ + { + "order": 0, + "name": "definitionFile", + "value": "crackingpatching", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 1, + "name": "baseUrl", + "label": "Base Url", + "helpText": "Select which baseurl Prowlarr will use for requests to the site", + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "getUrls" + }, + { + "order": 2, + "name": "baseSettings.queryLimit", + "label": "Query Limit", + "helpText": "The number of queries within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 3, + "name": "baseSettings.grabLimit", + "label": "Grab Limit", + "helpText": "The number of grabs within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 4, + "name": "torrentBaseSettings.appMinimumSeeders", + "label": "Apps Minimum Seeders", + "helpText": "Minimum seeders required by the Applications for the indexer to grab, empty is Sync profile's default", + "type": "number", + "advanced": true + }, + { + "order": 5, + "name": "torrentBaseSettings.seedRatio", + "label": "Seed Ratio", + "helpText": "The ratio a torrent should reach before stopping, empty is app's default", + "type": "textbox", + "advanced": true + }, + { + "order": 6, + "name": "torrentBaseSettings.seedTime", + "label": "Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 7, + "name": "torrentBaseSettings.packSeedTime", + "label": "Pack Seed Time", + "unit": "minutes", + "helpText": "The time a pack (season or discography) torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + } + ], + "implementationName": "Cardigann", + "implementation": "Cardigann", + "configContract": "CardigannSettings", + "infoLink": "https://wiki.servarr.com/prowlarr/supported-indexers#crackingpatching", + "tags": [], + "id": 16 + }, + { + "indexerUrls": [ + "https://e-hentai.org/" + ], + "legacyUrls": [], + "definitionName": "ehentai", + "description": "E-Hentai is a Public site for Hentai doujinshi, manga.", + "language": "en-US", + "encoding": "Unicode (UTF-8)", + "enable": true, + "redirect": false, + "supportsRss": true, + "supportsSearch": true, + "supportsRedirect": false, + "supportsPagination": false, + "appProfileId": 1, + "protocol": "torrent", + "privacy": "public", + "capabilities": { + "limitsMax": 100, + "limitsDefault": 100, + "categories": [ + { + "id": 5000, + "name": "TV", + "subCategories": [ + { + "id": 5070, + "name": "TV/Anime", + "subCategories": [] + } + ] + }, + { + "id": 100001, + "name": "Anime", + "subCategories": [] + } + ], + "supportsRawSearch": false, + "searchParams": [ + "q", + "q" + ], + "tvSearchParams": [ + "q", + "season", + "ep" + ], + "movieSearchParams": [], + "musicSearchParams": [], + "bookSearchParams": [] + }, + "priority": 25, + "added": "2023-06-03T19:00:01Z", + "sortName": "e hentai", + "name": "E-Hentai", + "fields": [ + { + "order": 0, + "name": "definitionFile", + "value": "ehentai", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 1, + "name": "baseUrl", + "label": "Base Url", + "helpText": "Select which baseurl Prowlarr will use for requests to the site", + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "getUrls" + }, + { + "order": 2, + "name": "baseSettings.queryLimit", + "label": "Query Limit", + "helpText": "The number of queries within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 3, + "name": "baseSettings.grabLimit", + "label": "Grab Limit", + "helpText": "The number of grabs within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 4, + "name": "torrentBaseSettings.appMinimumSeeders", + "label": "Apps Minimum Seeders", + "helpText": "Minimum seeders required by the Applications for the indexer to grab, empty is Sync profile's default", + "type": "number", + "advanced": true + }, + { + "order": 5, + "name": "torrentBaseSettings.seedRatio", + "label": "Seed Ratio", + "helpText": "The ratio a torrent should reach before stopping, empty is app's default", + "type": "textbox", + "advanced": true + }, + { + "order": 6, + "name": "torrentBaseSettings.seedTime", + "label": "Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 7, + "name": "torrentBaseSettings.packSeedTime", + "label": "Pack Seed Time", + "unit": "minutes", + "helpText": "The time a pack (season or discography) torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + } + ], + "implementationName": "Cardigann", + "implementation": "Cardigann", + "configContract": "CardigannSettings", + "infoLink": "https://wiki.servarr.com/prowlarr/supported-indexers#ehentai", + "tags": [], + "id": 17 + }, + { + "indexerUrls": [ + "https://ext.to/", + "https://search.extto.com/", + "https://extranet.torrentbay.net/" + ], + "legacyUrls": [ + "https://ext.unblockninja.com/", + "https://t.extto.com/", + "https://torrent.extto.com/", + "https://site.extto.com/", + "https://ext.torrentbay.to/", + "https://extranet.torrentbay.to/" + ], + "definitionName": "exttorrents", + "description": "EXT Torrents is a Public torrent site for MOVIES / TV / GENERAL", + "language": "en-US", + "encoding": "Unicode (UTF-8)", + "enable": true, + "redirect": false, + "supportsRss": true, + "supportsSearch": true, + "supportsRedirect": false, + "supportsPagination": false, + "appProfileId": 1, + "protocol": "torrent", + "privacy": "public", + "capabilities": { + "limitsMax": 100, + "limitsDefault": 100, + "categories": [ + { + "id": 5000, + "name": "TV", + "subCategories": [ + { + "id": 5070, + "name": "TV/Anime", + "subCategories": [] + } + ] + }, + { + "id": 142158, + "name": "Anime", + "subCategories": [] + }, + { + "id": 122266, + "name": "Anime English Translated", + "subCategories": [] + }, + { + "id": 4000, + "name": "PC", + "subCategories": [ + { + "id": 4070, + "name": "PC/Mobile-Android", + "subCategories": [] + }, + { + "id": 4060, + "name": "PC/Mobile-iOS", + "subCategories": [] + }, + { + "id": 4030, + "name": "PC/Mac", + "subCategories": [] + }, + { + "id": 4040, + "name": "PC/Mobile-Other", + "subCategories": [] + }, + { + "id": 4010, + "name": "PC/0day", + "subCategories": [] + }, + { + "id": 4050, + "name": "PC/Games", + "subCategories": [] + } + ] + }, + { + "id": 141465, + "name": "Apps", + "subCategories": [] + }, + { + "id": 127281, + "name": "Apps Android", + "subCategories": [] + }, + { + "id": 133473, + "name": "Apps iOS", + "subCategories": [] + }, + { + "id": 103187, + "name": "Apps Linux", + "subCategories": [] + }, + { + "id": 116212, + "name": "Apps Mac", + "subCategories": [] + }, + { + "id": 165224, + "name": "Apps Other", + "subCategories": [] + }, + { + "id": 101628, + "name": "Apps Windows", + "subCategories": [] + }, + { + "id": 7000, + "name": "Books", + "subCategories": [ + { + "id": 7030, + "name": "Books/Comics", + "subCategories": [] + }, + { + "id": 7020, + "name": "Books/EBook", + "subCategories": [] + } + ] + }, + { + "id": 117852, + "name": "Books", + "subCategories": [] + }, + { + "id": 3000, + "name": "Audio", + "subCategories": [ + { + "id": 3030, + "name": "Audio/Audiobook", + "subCategories": [] + }, + { + "id": 3020, + "name": "Audio/Video", + "subCategories": [] + }, + { + "id": 3040, + "name": "Audio/Lossless", + "subCategories": [] + }, + { + "id": 3010, + "name": "Audio/MP3", + "subCategories": [] + }, + { + "id": 3050, + "name": "Audio/Other", + "subCategories": [] + } + ] + }, + { + "id": 100162, + "name": "Books Audiobooks", + "subCategories": [] + }, + { + "id": 113586, + "name": "Books Comics", + "subCategories": [] + }, + { + "id": 148812, + "name": "Books Ebooks", + "subCategories": [] + }, + { + "id": 111179, + "name": "Games", + "subCategories": [] + }, + { + "id": 1000, + "name": "Console", + "subCategories": [ + { + "id": 1010, + "name": "Console/NDS", + "subCategories": [] + }, + { + "id": 1090, + "name": "Console/Other", + "subCategories": [] + }, + { + "id": 1080, + "name": "Console/PS3", + "subCategories": [] + }, + { + "id": 1180, + "name": "Console/PS4", + "subCategories": [] + }, + { + "id": 1020, + "name": "Console/PSP", + "subCategories": [] + }, + { + "id": 1030, + "name": "Console/Wii", + "subCategories": [] + }, + { + "id": 1050, + "name": "Console/XBox 360", + "subCategories": [] + } + ] + }, + { + "id": 101961, + "name": "Games NDS", + "subCategories": [] + }, + { + "id": 141974, + "name": "Games Other", + "subCategories": [] + }, + { + "id": 137541, + "name": "Games PC", + "subCategories": [] + }, + { + "id": 100963, + "name": "Games PS3", + "subCategories": [] + }, + { + "id": 148320, + "name": "Games PS4", + "subCategories": [] + }, + { + "id": 130506, + "name": "Games PSP", + "subCategories": [] + }, + { + "id": 146546, + "name": "Games Switch", + "subCategories": [] + }, + { + "id": 150459, + "name": "Games Wii", + "subCategories": [] + }, + { + "id": 162206, + "name": "Games Xbox360", + "subCategories": [] + }, + { + "id": 162481, + "name": "Games Mac", + "subCategories": [] + }, + { + "id": 2000, + "name": "Movies", + "subCategories": [ + { + "id": 2060, + "name": "Movies/3D", + "subCategories": [] + }, + { + "id": 2070, + "name": "Movies/DVD", + "subCategories": [] + }, + { + "id": 2040, + "name": "Movies/HD", + "subCategories": [] + }, + { + "id": 2045, + "name": "Movies/UHD", + "subCategories": [] + }, + { + "id": 2020, + "name": "Movies/Other", + "subCategories": [] + } + ] + }, + { + "id": 156204, + "name": "Movies", + "subCategories": [] + }, + { + "id": 152890, + "name": "Movies 3D", + "subCategories": [] + }, + { + "id": 122689, + "name": "Movies Bollywood", + "subCategories": [] + }, + { + "id": 145142, + "name": "Movies Documentary", + "subCategories": [] + }, + { + "id": 122957, + "name": "Movies Dubbed", + "subCategories": [] + }, + { + "id": 141757, + "name": "Movies DVD", + "subCategories": [] + }, + { + "id": 160296, + "name": "Movies Highres", + "subCategories": [] + }, + { + "id": 159513, + "name": "Movies MP4", + "subCategories": [] + }, + { + "id": 144794, + "name": "Movies Other Movies", + "subCategories": [] + }, + { + "id": 160107, + "name": "Movies UltraHD", + "subCategories": [] + }, + { + "id": 130455, + "name": "Movies Music videos", + "subCategories": [] + }, + { + "id": 107396, + "name": "Movies Movie clips", + "subCategories": [] + }, + { + "id": 150037, + "name": "Music", + "subCategories": [] + }, + { + "id": 106587, + "name": "Music AAC", + "subCategories": [] + }, + { + "id": 151589, + "name": "Music Lossless", + "subCategories": [] + }, + { + "id": 142081, + "name": "Music MP3", + "subCategories": [] + }, + { + "id": 129114, + "name": "Music Other", + "subCategories": [] + }, + { + "id": 161845, + "name": "Music Radio Shows", + "subCategories": [] + }, + { + "id": 0, + "name": "Other", + "subCategories": [] + }, + { + "id": 121774, + "name": "Other", + "subCategories": [] + }, + { + "id": 108346, + "name": "TV", + "subCategories": [] + }, + { + "id": 6000, + "name": "XXX", + "subCategories": [ + { + "id": 6070, + "name": "XXX/Other", + "subCategories": [] + }, + { + "id": 6060, + "name": "XXX/ImageSet", + "subCategories": [] + } + ] + }, + { + "id": 115855, + "name": "XXX", + "subCategories": [] + }, + { + "id": 117682, + "name": "XXX Games", + "subCategories": [] + }, + { + "id": 147611, + "name": "XXX Hentai", + "subCategories": [] + }, + { + "id": 127439, + "name": "XXX Magazines", + "subCategories": [] + }, + { + "id": 115493, + "name": "XXX Pictures", + "subCategories": [] + }, + { + "id": 107366, + "name": "XXX Video", + "subCategories": [] + }, + { + "id": 153227, + "name": "XXX Video", + "subCategories": [] + } + ], + "supportsRawSearch": false, + "searchParams": [ + "q", + "q" + ], + "tvSearchParams": [ + "q", + "season", + "ep" + ], + "movieSearchParams": [ + "q" + ], + "musicSearchParams": [ + "q" + ], + "bookSearchParams": [ + "q" + ] + }, + "priority": 25, + "added": "2023-06-03T19:00:09Z", + "sortName": "ext torrents", + "name": "EXT Torrents", + "fields": [ + { + "order": 0, + "name": "definitionFile", + "value": "exttorrents", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 1, + "name": "baseUrl", + "label": "Base Url", + "helpText": "Select which baseurl Prowlarr will use for requests to the site", + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "getUrls" + }, + { + "order": 2, + "name": "baseSettings.queryLimit", + "label": "Query Limit", + "helpText": "The number of queries within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 3, + "name": "baseSettings.grabLimit", + "label": "Grab Limit", + "helpText": "The number of grabs within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 4, + "name": "torrentBaseSettings.appMinimumSeeders", + "label": "Apps Minimum Seeders", + "helpText": "Minimum seeders required by the Applications for the indexer to grab, empty is Sync profile's default", + "type": "number", + "advanced": true + }, + { + "order": 5, + "name": "torrentBaseSettings.seedRatio", + "label": "Seed Ratio", + "helpText": "The ratio a torrent should reach before stopping, empty is app's default", + "type": "textbox", + "advanced": true + }, + { + "order": 6, + "name": "torrentBaseSettings.seedTime", + "label": "Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 7, + "name": "torrentBaseSettings.packSeedTime", + "label": "Pack Seed Time", + "unit": "minutes", + "helpText": "The time a pack (season or discography) torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 0, + "name": "sort", + "label": "Sort requested from site", + "value": 0, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "created", + "order": 0 + }, + { + "value": 1, + "name": "seeders", + "order": 0 + }, + { + "value": 2, + "name": "size", + "order": 0 + } + ] + }, + { + "order": 1, + "name": "type", + "label": "Order requested from site", + "value": 1, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "asc", + "order": 0 + }, + { + "value": 1, + "name": "desc", + "order": 0 + } + ] + }, + { + "order": 2, + "name": "flaresolverr", + "label": "FlareSolverr", + "value": "This site may use Cloudflare DDoS Protection, therefore Prowlarr requires FlareSolverr to access it.", + "type": "info", + "advanced": false + } + ], + "implementationName": "Cardigann", + "implementation": "Cardigann", + "configContract": "CardigannSettings", + "infoLink": "https://wiki.servarr.com/prowlarr/supported-indexers#exttorrents", + "tags": [1], + "id": 18 + }, + { + "indexerUrls": [ + "https://extratorrent.st/", + "https://extratorrent.unblockit.ing/", + "https://extratorrent.mrunblock.bond/", + "https://extratorrent.nocensor.cloud/" + ], + "legacyUrls": [ + "https://extratorrent.nocensor.work/", + "https://extratorrent.nocensor.biz/", + "https://extratorrent.nocensor.sbs/", + "https://extratorrent.unblockit.cat/", + "https://extratorrent.unblockit.nz/", + "https://extratorrent.nocensor.world/", + "https://extratorrent.unblockit.page/", + "https://extratorrent.unblockit.pet/", + "https://extratorrent.nocensor.lol/", + "https://extratorrent.unblockit.ink/", + "https://extratorrent.nocensor.art/", + "https://extratorrent.unblockit.bio/", + "https://extratorrent.unblockit.boo/", + "https://extratorrent.mrunblock.guru/", + "https://extratorrent.unblockit.click/", + "https://extratorrent.unblockit.asia/", + "https://extratorrent.unblockit.mov/", + "https://extratorrent.mrunblock.life/", + "https://extratorrent.unblockit.rsvp/", + "https://extratorrent.nocensor.click/", + "https://extratorrent.unblockit.vegas/", + "https://extratorrent.unblockit.esq/", + "https://extratorrent.unblockit.zip/", + "https://extratorrent.unblockit.foo/" + ], + "definitionName": "extratorrent-st", + "description": "ExtraTorrent.st is a Public tracker for MOVIE / TV / GENERAL magnets", + "language": "en-US", + "encoding": "Unicode (UTF-8)", + "enable": true, + "redirect": false, + "supportsRss": true, + "supportsSearch": true, + "supportsRedirect": false, + "supportsPagination": false, + "appProfileId": 1, + "protocol": "torrent", + "privacy": "public", + "capabilities": { + "limitsMax": 100, + "limitsDefault": 100, + "categories": [ + { + "id": 2000, + "name": "Movies", + "subCategories": [ + { + "id": 2040, + "name": "Movies/HD", + "subCategories": [] + }, + { + "id": 2045, + "name": "Movies/UHD", + "subCategories": [] + }, + { + "id": 2060, + "name": "Movies/3D", + "subCategories": [] + }, + { + "id": 2070, + "name": "Movies/DVD", + "subCategories": [] + }, + { + "id": 2010, + "name": "Movies/Foreign", + "subCategories": [] + }, + { + "id": 2020, + "name": "Movies/Other", + "subCategories": [] + } + ] + }, + { + "id": 100467, + "name": "Movies", + "subCategories": [] + }, + { + "id": 118094, + "name": "Movies HD", + "subCategories": [] + }, + { + "id": 153196, + "name": "Movies UHD", + "subCategories": [] + }, + { + "id": 132150, + "name": "Movies 3D", + "subCategories": [] + }, + { + "id": 126854, + "name": "Bollywood", + "subCategories": [] + }, + { + "id": 105543, + "name": "Movies clips", + "subCategories": [] + }, + { + "id": 110477, + "name": "Movies DVD", + "subCategories": [] + }, + { + "id": 110210, + "name": "Movies MP4", + "subCategories": [] + }, + { + "id": 118779, + "name": "Movies Dubbed", + "subCategories": [] + }, + { + "id": 132413, + "name": "Movies Other", + "subCategories": [] + }, + { + "id": 5000, + "name": "TV", + "subCategories": [ + { + "id": 5080, + "name": "TV/Documentary", + "subCategories": [] + }, + { + "id": 5070, + "name": "TV/Anime", + "subCategories": [] + } + ] + }, + { + "id": 136609, + "name": "Documentary", + "subCategories": [] + }, + { + "id": 143862, + "name": "TV", + "subCategories": [] + }, + { + "id": 3000, + "name": "Audio", + "subCategories": [ + { + "id": 3010, + "name": "Audio/MP3", + "subCategories": [] + }, + { + "id": 3040, + "name": "Audio/Lossless", + "subCategories": [] + }, + { + "id": 3020, + "name": "Audio/Video", + "subCategories": [] + }, + { + "id": 3050, + "name": "Audio/Other", + "subCategories": [] + }, + { + "id": 3030, + "name": "Audio/Audiobook", + "subCategories": [] + } + ] + }, + { + "id": 130841, + "name": "Music MP3", + "subCategories": [] + }, + { + "id": 154493, + "name": "Music AAC", + "subCategories": [] + }, + { + "id": 146067, + "name": "Music Lossless", + "subCategories": [] + }, + { + "id": 100082, + "name": "Music Videos", + "subCategories": [] + }, + { + "id": 118123, + "name": "Music Other", + "subCategories": [] + }, + { + "id": 153326, + "name": "Music Radio", + "subCategories": [] + }, + { + "id": 6000, + "name": "XXX", + "subCategories": [ + { + "id": 6060, + "name": "XXX/ImageSet", + "subCategories": [] + }, + { + "id": 6070, + "name": "XXX/Other", + "subCategories": [] + } + ] + }, + { + "id": 106076, + "name": "Adult / Porn", + "subCategories": [] + }, + { + "id": 102715, + "name": "Adult / Porn", + "subCategories": [] + }, + { + "id": 124211, + "name": "Adult Pictures", + "subCategories": [] + }, + { + "id": 110357, + "name": "Adult Magazines", + "subCategories": [] + }, + { + "id": 136409, + "name": "Adult Games", + "subCategories": [] + }, + { + "id": 125747, + "name": "Adult Hentai", + "subCategories": [] + }, + { + "id": 4000, + "name": "PC", + "subCategories": [ + { + "id": 4070, + "name": "PC/Mobile-Android", + "subCategories": [] + }, + { + "id": 4030, + "name": "PC/Mac", + "subCategories": [] + }, + { + "id": 4050, + "name": "PC/Games", + "subCategories": [] + } + ] + }, + { + "id": 155590, + "name": "Software Windows", + "subCategories": [] + }, + { + "id": 110265, + "name": "Software Android", + "subCategories": [] + }, + { + "id": 148136, + "name": "Software Mac", + "subCategories": [] + }, + { + "id": 144419, + "name": "Software Linux", + "subCategories": [] + }, + { + "id": 119659, + "name": "PC Games", + "subCategories": [] + }, + { + "id": 1000, + "name": "Console", + "subCategories": [ + { + "id": 1010, + "name": "Console/NDS", + "subCategories": [] + }, + { + "id": 1080, + "name": "Console/PS3", + "subCategories": [] + }, + { + "id": 1180, + "name": "Console/PS4", + "subCategories": [] + }, + { + "id": 1020, + "name": "Console/PSP", + "subCategories": [] + }, + { + "id": 1030, + "name": "Console/Wii", + "subCategories": [] + }, + { + "id": 1050, + "name": "Console/XBox 360", + "subCategories": [] + }, + { + "id": 1090, + "name": "Console/Other", + "subCategories": [] + } + ] + }, + { + "id": 102386, + "name": "Games NDS", + "subCategories": [] + }, + { + "id": 144394, + "name": "Games PS3", + "subCategories": [] + }, + { + "id": 147897, + "name": "Games PS4", + "subCategories": [] + }, + { + "id": 130864, + "name": "Games PSP", + "subCategories": [] + }, + { + "id": 122059, + "name": "Games Wii", + "subCategories": [] + }, + { + "id": 126053, + "name": "Games Xbox360", + "subCategories": [] + }, + { + "id": 117470, + "name": "Games Switch", + "subCategories": [] + }, + { + "id": 108669, + "name": "Games Other", + "subCategories": [] + }, + { + "id": 151474, + "name": "Anime English-translated", + "subCategories": [] + }, + { + "id": 146065, + "name": "Anime", + "subCategories": [] + }, + { + "id": 106203, + "name": "Books Audiobook", + "subCategories": [] + }, + { + "id": 7000, + "name": "Books", + "subCategories": [ + { + "id": 7030, + "name": "Books/Comics", + "subCategories": [] + }, + { + "id": 7020, + "name": "Books/EBook", + "subCategories": [] + } + ] + }, + { + "id": 155311, + "name": "Books Comics", + "subCategories": [] + }, + { + "id": 122878, + "name": "Books Ebook", + "subCategories": [] + }, + { + "id": 0, + "name": "Other", + "subCategories": [ + { + "id": 10, + "name": "Other/Misc", + "subCategories": [] + } + ] + }, + { + "id": 127246, + "name": "Other", + "subCategories": [] + }, + { + "id": 123369, + "name": "Other Applications", + "subCategories": [] + } + ], + "supportsRawSearch": false, + "searchParams": [ + "q", + "q" + ], + "tvSearchParams": [ + "q", + "season", + "ep" + ], + "movieSearchParams": [ + "q" + ], + "musicSearchParams": [ + "q" + ], + "bookSearchParams": [ + "q" + ] + }, + "priority": 25, + "added": "2023-06-03T19:00:15Z", + "sortName": "extratorrent st", + "name": "ExtraTorrent.st", + "fields": [ + { + "order": 0, + "name": "definitionFile", + "value": "extratorrent-st", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 1, + "name": "baseUrl", + "label": "Base Url", + "helpText": "Select which baseurl Prowlarr will use for requests to the site", + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "getUrls" + }, + { + "order": 2, + "name": "baseSettings.queryLimit", + "label": "Query Limit", + "helpText": "The number of queries within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 3, + "name": "baseSettings.grabLimit", + "label": "Grab Limit", + "helpText": "The number of grabs within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 4, + "name": "torrentBaseSettings.appMinimumSeeders", + "label": "Apps Minimum Seeders", + "helpText": "Minimum seeders required by the Applications for the indexer to grab, empty is Sync profile's default", + "type": "number", + "advanced": true + }, + { + "order": 5, + "name": "torrentBaseSettings.seedRatio", + "label": "Seed Ratio", + "helpText": "The ratio a torrent should reach before stopping, empty is app's default", + "type": "textbox", + "advanced": true + }, + { + "order": 6, + "name": "torrentBaseSettings.seedTime", + "label": "Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 7, + "name": "torrentBaseSettings.packSeedTime", + "label": "Pack Seed Time", + "unit": "minutes", + "helpText": "The time a pack (season or discography) torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + } + ], + "implementationName": "Cardigann", + "implementation": "Cardigann", + "configContract": "CardigannSettings", + "infoLink": "https://wiki.servarr.com/prowlarr/supported-indexers#extratorrent-st", + "tags": [], + "id": 20 + }, + { + "indexerUrls": [ + "https://eztvx.to/", + "https://eztv.wf/", + "https://eztv.tf/", + "https://eztv.yt/", + "https://eztv1.xyz/", + "https://eztv.unblockit.ing/", + "https://eztv.unblockninja.com/", + "https://eztv.mrunblock.bond/", + "https://eztv.nocensor.cloud/" + ], + "legacyUrls": [ + "https://eztv.ag/", + "https://eztv.it/", + "https://eztv.ch/", + "https://eztv.io/", + "https://eztv.nocensor.biz/", + "https://eztv.nocensor.sbs/", + "https://eztv.unblockit.cat/", + "https://eztv.unblockit.nz/", + "https://eztv.nocensor.world/", + "https://eztv.unblockit.page/", + "https://eztv.unblockit.pet/", + "https://eztv.nocensor.lol/", + "https://eztv.unblockit.ink/", + "https://eztv.nocensor.art/", + "https://eztv.unblockit.bio/", + "https://eztv.unblockit.boo/", + "https://eztv.mrunblock.guru/", + "https://eztv.unblockit.click/", + "https://eztv.unblockit.asia/", + "https://eztv.unblockit.mov/", + "https://eztv.mrunblock.life/", + "https://eztv.unblockit.rsvp/", + "https://eztv.nocensor.click/", + "https://eztv.unblockit.vegas/", + "https://eztv.unblockit.esq/", + "https://eztv.unblockit.zip/", + "https://eztv.re/", + "https://eztv.li/", + "https://eztv.unblockit.foo/" + ], + "definitionName": "eztv", + "description": "EZTV is a Public torrent site for TV shows", + "language": "en-US", + "encoding": "Unicode (UTF-8)", + "enable": true, + "redirect": false, + "supportsRss": true, + "supportsSearch": true, + "supportsRedirect": false, + "supportsPagination": false, + "appProfileId": 1, + "protocol": "torrent", + "privacy": "public", + "capabilities": { + "limitsMax": 100, + "limitsDefault": 100, + "categories": [ + { + "id": 5000, + "name": "TV", + "subCategories": [] + } + ], + "supportsRawSearch": false, + "searchParams": [ + "q", + "q" + ], + "tvSearchParams": [ + "q", + "season", + "ep" + ], + "movieSearchParams": [], + "musicSearchParams": [], + "bookSearchParams": [] + }, + "priority": 25, + "added": "2023-06-03T19:00:12Z", + "sortName": "eztv", + "name": "EZTV", + "fields": [ + { + "order": 0, + "name": "definitionFile", + "value": "eztv", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 1, + "name": "baseUrl", + "label": "Base Url", + "helpText": "Select which baseurl Prowlarr will use for requests to the site", + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "getUrls" + }, + { + "order": 2, + "name": "baseSettings.queryLimit", + "label": "Query Limit", + "helpText": "The number of queries within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 3, + "name": "baseSettings.grabLimit", + "label": "Grab Limit", + "helpText": "The number of grabs within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 4, + "name": "torrentBaseSettings.appMinimumSeeders", + "label": "Apps Minimum Seeders", + "helpText": "Minimum seeders required by the Applications for the indexer to grab, empty is Sync profile's default", + "type": "number", + "advanced": true + }, + { + "order": 5, + "name": "torrentBaseSettings.seedRatio", + "label": "Seed Ratio", + "helpText": "The ratio a torrent should reach before stopping, empty is app's default", + "type": "textbox", + "advanced": true + }, + { + "order": 6, + "name": "torrentBaseSettings.seedTime", + "label": "Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 7, + "name": "torrentBaseSettings.packSeedTime", + "label": "Pack Seed Time", + "unit": "minutes", + "helpText": "The time a pack (season or discography) torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + } + ], + "implementationName": "Cardigann", + "implementation": "Cardigann", + "configContract": "CardigannSettings", + "infoLink": "https://wiki.servarr.com/prowlarr/supported-indexers#eztv", + "tags": [], + "id": 19 + }, + { + "indexerUrls": [ + "https://filelisting.com/", + "https://filelisting.mrunblock.bond/", + "https://filelisting.nocensor.cloud/" + ], + "legacyUrls": [ + "https://filelisting.nocensor.biz/", + "https://filelisting.nocensor.sbs/", + "https://filelisting.nocensor.world/", + "https://filelisting.nocensor.lol/", + "https://filelisting.nocensor.art/", + "https://filelisting.mrunblock.guru/", + "https://filelisting.mrunblock.life/", + "https://filelisting.nocensor.click/" + ], + "definitionName": "filelisting", + "description": "FileListing is a Public Torrent Search Engine", + "language": "en-US", + "encoding": "Unicode (UTF-8)", + "enable": true, + "redirect": false, + "supportsRss": true, + "supportsSearch": true, + "supportsRedirect": false, + "supportsPagination": false, + "appProfileId": 1, + "protocol": "torrent", + "privacy": "public", + "capabilities": { + "limitsMax": 100, + "limitsDefault": 100, + "categories": [ + { + "id": 0, + "name": "Other", + "subCategories": [] + }, + { + "id": 100001, + "name": "TV", + "subCategories": [] + }, + { + "id": 100002, + "name": "Movies", + "subCategories": [] + }, + { + "id": 100003, + "name": "Other", + "subCategories": [] + } + ], + "supportsRawSearch": false, + "searchParams": [ + "q", + "q" + ], + "tvSearchParams": [ + "q", + "season", + "ep" + ], + "movieSearchParams": [ + "q" + ], + "musicSearchParams": [ + "q" + ], + "bookSearchParams": [ + "q" + ] + }, + "priority": 25, + "added": "2023-06-03T19:00:18Z", + "sortName": "filelisting", + "name": "FileListing", + "fields": [ + { + "order": 0, + "name": "definitionFile", + "value": "filelisting", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 1, + "name": "baseUrl", + "label": "Base Url", + "helpText": "Select which baseurl Prowlarr will use for requests to the site", + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "getUrls" + }, + { + "order": 2, + "name": "baseSettings.queryLimit", + "label": "Query Limit", + "helpText": "The number of queries within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 3, + "name": "baseSettings.grabLimit", + "label": "Grab Limit", + "helpText": "The number of grabs within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 4, + "name": "torrentBaseSettings.appMinimumSeeders", + "label": "Apps Minimum Seeders", + "helpText": "Minimum seeders required by the Applications for the indexer to grab, empty is Sync profile's default", + "type": "number", + "advanced": true + }, + { + "order": 5, + "name": "torrentBaseSettings.seedRatio", + "label": "Seed Ratio", + "helpText": "The ratio a torrent should reach before stopping, empty is app's default", + "type": "textbox", + "advanced": true + }, + { + "order": 6, + "name": "torrentBaseSettings.seedTime", + "label": "Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 7, + "name": "torrentBaseSettings.packSeedTime", + "label": "Pack Seed Time", + "unit": "minutes", + "helpText": "The time a pack (season or discography) torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 0, + "name": "info", + "label": "A note about FileListing", + "value": "FileListing does not display categories in its search results page. This definition is probably only suitable for Prowlarr Dashboard Manual searches.", + "type": "info", + "advanced": false + } + ], + "implementationName": "Cardigann", + "implementation": "Cardigann", + "configContract": "CardigannSettings", + "infoLink": "https://wiki.servarr.com/prowlarr/supported-indexers#filelisting", + "tags": [], + "id": 21 + }, + { + "indexerUrls": [ + "https://www.gktorrent.fi/", + "https://gktorrent.nocensor.cloud/", + "https://gktorrent.mrunblock.bond/" + ], + "legacyUrls": [ + "https://www.rantop.org/", + "https://www.gktorrent.tv/", + "https://www.gktorrent.net/", + "https://www.gktorrent.biz/", + "https://www.gktorrent.io/", + "https://www.gktorrent.pw/", + "https://wvw.gktorrent.pw/", + "https://vww.gktorrent.pw/", + "https://www.gktorrent.cc/", + "https://gktorrent.nocensor.space/", + "https://www.gktorrents.com/", + "https://gktorrent.nocensor.work/", + "https://www.gktorrents.net/", + "https://gktorrent.nocensor.biz/", + "https://www.gktorrents.org/", + "https://gktorrent.nocensor.sbs/", + "https://gktorrent.nocensor.world/", + "https://gktorrent.nocensor.lol/", + "https://gktorrent.mrunblock.guru/", + "https://gktorrent.mrunblock.life/", + "https://gktorrent.nocensor.click/", + "https://www.gktorrents.cc/", + "https://www.gktorrent.ac/", + "https://www.gktorrent.ph/", + "https://www.gktorrent.vc/" + ], + "definitionName": "gktorrent", + "description": "GkTorrent is a French Public site for TV / MOVIES / GENERAL", + "language": "fr-FR", + "encoding": "Unicode (UTF-8)", + "enable": true, + "redirect": false, + "supportsRss": true, + "supportsSearch": true, + "supportsRedirect": false, + "supportsPagination": false, + "appProfileId": 1, + "protocol": "torrent", + "privacy": "public", + "capabilities": { + "limitsMax": 100, + "limitsDefault": 100, + "categories": [ + { + "id": 2000, + "name": "Movies", + "subCategories": [] + }, + { + "id": 145469, + "name": "Movies", + "subCategories": [] + }, + { + "id": 5000, + "name": "TV", + "subCategories": [ + { + "id": 5070, + "name": "TV/Anime", + "subCategories": [] + } + ] + }, + { + "id": 158485, + "name": "Anime", + "subCategories": [] + }, + { + "id": 108670, + "name": "TV", + "subCategories": [] + }, + { + "id": 3000, + "name": "Audio", + "subCategories": [] + }, + { + "id": 139807, + "name": "Music", + "subCategories": [] + }, + { + "id": 7000, + "name": "Books", + "subCategories": [] + }, + { + "id": 122878, + "name": "Books", + "subCategories": [] + }, + { + "id": 4000, + "name": "PC", + "subCategories": [ + { + "id": 4050, + "name": "PC/Games", + "subCategories": [] + } + ] + }, + { + "id": 156868, + "name": "Software", + "subCategories": [] + }, + { + "id": 132101, + "name": "PC Games", + "subCategories": [] + }, + { + "id": 1000, + "name": "Console", + "subCategories": [ + { + "id": 1050, + "name": "Console/XBox 360", + "subCategories": [] + } + ] + }, + { + "id": 139292, + "name": "Console Games", + "subCategories": [] + }, + { + "id": 6000, + "name": "XXX", + "subCategories": [] + }, + { + "id": 123615, + "name": "XXX", + "subCategories": [] + } + ], + "supportsRawSearch": true, + "searchParams": [ + "q", + "q" + ], + "tvSearchParams": [ + "q", + "season", + "ep" + ], + "movieSearchParams": [ + "q" + ], + "musicSearchParams": [ + "q" + ], + "bookSearchParams": [ + "q" + ] + }, + "priority": 25, + "added": "2023-06-03T19:00:21Z", + "sortName": "gktorrent", + "name": "GkTorrent", + "fields": [ + { + "order": 0, + "name": "definitionFile", + "value": "gktorrent", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 1, + "name": "baseUrl", + "label": "Base Url", + "helpText": "Select which baseurl Prowlarr will use for requests to the site", + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "getUrls" + }, + { + "order": 2, + "name": "baseSettings.queryLimit", + "label": "Query Limit", + "helpText": "The number of queries within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 3, + "name": "baseSettings.grabLimit", + "label": "Grab Limit", + "helpText": "The number of grabs within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 4, + "name": "torrentBaseSettings.appMinimumSeeders", + "label": "Apps Minimum Seeders", + "helpText": "Minimum seeders required by the Applications for the indexer to grab, empty is Sync profile's default", + "type": "number", + "advanced": true + }, + { + "order": 5, + "name": "torrentBaseSettings.seedRatio", + "label": "Seed Ratio", + "helpText": "The ratio a torrent should reach before stopping, empty is app's default", + "type": "textbox", + "advanced": true + }, + { + "order": 6, + "name": "torrentBaseSettings.seedTime", + "label": "Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 7, + "name": "torrentBaseSettings.packSeedTime", + "label": "Pack Seed Time", + "unit": "minutes", + "helpText": "The time a pack (season or discography) torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 0, + "name": "multilang", + "label": "Replace MULTi by another language in release name", + "value": false, + "type": "checkbox", + "advanced": false + }, + { + "order": 1, + "name": "multilanguage", + "label": "Replace MULTi by this language", + "value": 1, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "ENGLISH", + "order": 0 + }, + { + "value": 1, + "name": "FRENCH", + "order": 0 + }, + { + "value": 2, + "name": "MULTi ENGLISH", + "order": 0 + }, + { + "value": 3, + "name": "MULTi FRENCH", + "order": 0 + }, + { + "value": 4, + "name": "MULTi VOSTFR", + "order": 0 + }, + { + "value": 5, + "name": "VOSTFR", + "order": 0 + } + ] + }, + { + "order": 2, + "name": "vostfr", + "label": "Replace VOSTFR and SUBFRENCH with ENGLISH", + "value": false, + "type": "checkbox", + "advanced": false + } + ], + "implementationName": "Cardigann", + "implementation": "Cardigann", + "configContract": "CardigannSettings", + "infoLink": "https://wiki.servarr.com/prowlarr/supported-indexers#gktorrent", + "tags": [], + "id": 22 + }, + { + "indexerUrls": [ + "https://glodls.to/", + "https://www.gtdb.to/", + "https://glotorrents.unblockit.ing/", + "https://glotorrents.mrunblock.bond/", + "https://glodls.unblockninja.com/", + "https://glotorrents.nocensor.cloud/" + ], + "legacyUrls": [ + "https://glodls.rocks/", + "https://gtdb.to/", + "https://glotorrents.nocensor.biz/", + "https://glotorrents.nocensor.sbs/", + "https://glotorrents.unblockit.cat/", + "https://glotorrents.unblockit.nz/", + "https://glotorrents.nocensor.world/", + "https://glotorrents.unblockit.page/", + "https://glotorrents.unblockit.pet/", + "https://glotorrents.nocensor.lol/", + "https://glotorrents.unblockit.ink/", + "https://glotorrents.nocensor.art/", + "https://glotorrents.unblockit.bio/", + "https://glotorrents.unblockit.boo/", + "https://glotorrents.mrunblock.guru/", + "https://glotorrents.unblockit.click/", + "https://glotorrents.unblockit.asia/", + "https://glotorrents.unblockit.mov/", + "https://glotorrents.mrunblock.life/", + "https://glotorrents.unblockit.rsvp/", + "https://glotorrents.nocensor.click/", + "https://gtdb.cc/", + "https://glotorrents.unblockit.vegas/", + "https://glotorrents.unblockit.esq/", + "https://glotorrents.unblockit.zip/", + "https://glotorrents.unblockit.foo/" + ], + "definitionName": "glodls", + "description": "GloDLS is a Public Torrent Tracker for MOVIES / TV / GENERAL", + "language": "en-US", + "encoding": "Unicode (UTF-8)", + "enable": true, + "redirect": false, + "supportsRss": true, + "supportsSearch": true, + "supportsRedirect": false, + "supportsPagination": false, + "appProfileId": 1, + "protocol": "torrent", + "privacy": "public", + "capabilities": { + "limitsMax": 100, + "limitsDefault": 100, + "categories": [ + { + "id": 6000, + "name": "XXX", + "subCategories": [] + }, + { + "id": 100050, + "name": "XXX", + "subCategories": [] + }, + { + "id": 4000, + "name": "PC", + "subCategories": [ + { + "id": 4070, + "name": "PC/Mobile-Android", + "subCategories": [] + }, + { + "id": 4050, + "name": "PC/Games", + "subCategories": [] + }, + { + "id": 4030, + "name": "PC/Mac", + "subCategories": [] + }, + { + "id": 4040, + "name": "PC/Mobile-Other", + "subCategories": [] + }, + { + "id": 4010, + "name": "PC/0day", + "subCategories": [] + } + ] + }, + { + "id": 100005, + "name": "Android", + "subCategories": [] + }, + { + "id": 5000, + "name": "TV", + "subCategories": [ + { + "id": 5070, + "name": "TV/Anime", + "subCategories": [] + }, + { + "id": 5060, + "name": "TV/Sport", + "subCategories": [] + } + ] + }, + { + "id": 100028, + "name": "Anime", + "subCategories": [] + }, + { + "id": 100018, + "name": "Apps", + "subCategories": [] + }, + { + "id": 7000, + "name": "Books", + "subCategories": [ + { + "id": 7020, + "name": "Books/EBook", + "subCategories": [] + } + ] + }, + { + "id": 100051, + "name": "Books", + "subCategories": [] + }, + { + "id": 100073, + "name": "Desi Porn", + "subCategories": [] + }, + { + "id": 3000, + "name": "Audio", + "subCategories": [ + { + "id": 3040, + "name": "Audio/Lossless", + "subCategories": [] + }, + { + "id": 3020, + "name": "Audio/Video", + "subCategories": [] + } + ] + }, + { + "id": 100075, + "name": "FLAC", + "subCategories": [] + }, + { + "id": 100010, + "name": "Games", + "subCategories": [] + }, + { + "id": 100055, + "name": "Macintosh", + "subCategories": [] + }, + { + "id": 100052, + "name": "Mobile", + "subCategories": [] + }, + { + "id": 2000, + "name": "Movies", + "subCategories": [] + }, + { + "id": 100001, + "name": "Movies", + "subCategories": [] + }, + { + "id": 100022, + "name": "Music", + "subCategories": [] + }, + { + "id": 0, + "name": "Other", + "subCategories": [] + }, + { + "id": 100033, + "name": "Other", + "subCategories": [] + }, + { + "id": 100072, + "name": "Packs", + "subCategories": [] + }, + { + "id": 100070, + "name": "Pictures", + "subCategories": [] + }, + { + "id": 100076, + "name": "Sports", + "subCategories": [] + }, + { + "id": 100074, + "name": "Tutorials", + "subCategories": [] + }, + { + "id": 100041, + "name": "TV", + "subCategories": [] + }, + { + "id": 100071, + "name": "Videos", + "subCategories": [] + }, + { + "id": 100054, + "name": "Windows", + "subCategories": [] + } + ], + "supportsRawSearch": false, + "searchParams": [ + "q", + "q" + ], + "tvSearchParams": [ + "q", + "season", + "ep" + ], + "movieSearchParams": [ + "q" + ], + "musicSearchParams": [ + "q" + ], + "bookSearchParams": [ + "q" + ] + }, + "priority": 25, + "added": "2023-06-03T19:00:26Z", + "sortName": "glodls", + "name": "GloDLS", + "fields": [ + { + "order": 0, + "name": "definitionFile", + "value": "glodls", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 1, + "name": "baseUrl", + "label": "Base Url", + "helpText": "Select which baseurl Prowlarr will use for requests to the site", + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "getUrls" + }, + { + "order": 2, + "name": "baseSettings.queryLimit", + "label": "Query Limit", + "helpText": "The number of queries within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 3, + "name": "baseSettings.grabLimit", + "label": "Grab Limit", + "helpText": "The number of grabs within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 4, + "name": "torrentBaseSettings.appMinimumSeeders", + "label": "Apps Minimum Seeders", + "helpText": "Minimum seeders required by the Applications for the indexer to grab, empty is Sync profile's default", + "type": "number", + "advanced": true + }, + { + "order": 5, + "name": "torrentBaseSettings.seedRatio", + "label": "Seed Ratio", + "helpText": "The ratio a torrent should reach before stopping, empty is app's default", + "type": "textbox", + "advanced": true + }, + { + "order": 6, + "name": "torrentBaseSettings.seedTime", + "label": "Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 7, + "name": "torrentBaseSettings.packSeedTime", + "label": "Pack Seed Time", + "unit": "minutes", + "helpText": "The time a pack (season or discography) torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 0, + "name": "sort", + "label": "Sort requested from site", + "value": 0, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "created", + "order": 0 + }, + { + "value": 1, + "name": "title", + "order": 0 + }, + { + "value": 2, + "name": "seeders", + "order": 0 + }, + { + "value": 3, + "name": "size", + "order": 0 + } + ] + }, + { + "order": 1, + "name": "type", + "label": "Order requested from site", + "value": 1, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "asc", + "order": 0 + }, + { + "value": 1, + "name": "desc", + "order": 0 + } + ] + } + ], + "implementationName": "Cardigann", + "implementation": "Cardigann", + "configContract": "CardigannSettings", + "infoLink": "https://wiki.servarr.com/prowlarr/supported-indexers#glodls", + "tags": [], + "id": 23 + }, + { + "indexerUrls": [ + "https://idope.se/" + ], + "legacyUrls": [ + "https://idope.black-mirror.xyz/", + "https://idope.unblocked.casa/", + "https://idope.proxyportal.fun/", + "https://idope.uk-unblock.xyz/", + "https://idope.ind-unblock.xyz/", + "https://idope.unblocked.bar/", + "https://idope.proxyportal.pw/", + "https://idope.uk-unblock.pro/", + "https://idope.unblocked.rest/", + "https://idope.unblocked.monster/" + ], + "definitionName": "idope", + "description": "iDope is a Public torrent search engine presenting direct magnet links", + "language": "en-US", + "encoding": "Unicode (UTF-8)", + "enable": true, + "redirect": false, + "supportsRss": true, + "supportsSearch": true, + "supportsRedirect": false, + "supportsPagination": false, + "appProfileId": 1, + "protocol": "torrent", + "privacy": "public", + "capabilities": { + "limitsMax": 100, + "limitsDefault": 100, + "categories": [ + { + "id": 0, + "name": "Other", + "subCategories": [] + }, + { + "id": 100000, + "name": "Others", + "subCategories": [] + }, + { + "id": 2000, + "name": "Movies", + "subCategories": [] + }, + { + "id": 100001, + "name": "Movies", + "subCategories": [] + }, + { + "id": 100002, + "name": "Video", + "subCategories": [] + }, + { + "id": 5000, + "name": "TV", + "subCategories": [ + { + "id": 5070, + "name": "TV/Anime", + "subCategories": [] + } + ] + }, + { + "id": 100003, + "name": "TV", + "subCategories": [] + }, + { + "id": 100004, + "name": "Anime", + "subCategories": [] + }, + { + "id": 6000, + "name": "XXX", + "subCategories": [] + }, + { + "id": 100005, + "name": "XXX", + "subCategories": [] + }, + { + "id": 3000, + "name": "Audio", + "subCategories": [] + }, + { + "id": 100006, + "name": "Music", + "subCategories": [] + }, + { + "id": 4000, + "name": "PC", + "subCategories": [ + { + "id": 4050, + "name": "PC/Games", + "subCategories": [] + } + ] + }, + { + "id": 100007, + "name": "Games", + "subCategories": [] + }, + { + "id": 100008, + "name": "Apps", + "subCategories": [] + }, + { + "id": 7000, + "name": "Books", + "subCategories": [] + }, + { + "id": 100009, + "name": "Books", + "subCategories": [] + } + ], + "supportsRawSearch": false, + "searchParams": [ + "q", + "q" + ], + "tvSearchParams": [ + "q", + "season", + "ep" + ], + "movieSearchParams": [ + "q" + ], + "musicSearchParams": [ + "q" + ], + "bookSearchParams": [ + "q" + ] + }, + "priority": 25, + "added": "2023-06-03T19:00:55Z", + "sortName": "idope", + "name": "Idope", + "fields": [ + { + "order": 0, + "name": "definitionFile", + "value": "idope", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 1, + "name": "baseUrl", + "label": "Base Url", + "helpText": "Select which baseurl Prowlarr will use for requests to the site", + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "getUrls" + }, + { + "order": 2, + "name": "baseSettings.queryLimit", + "label": "Query Limit", + "helpText": "The number of queries within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 3, + "name": "baseSettings.grabLimit", + "label": "Grab Limit", + "helpText": "The number of grabs within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 4, + "name": "torrentBaseSettings.appMinimumSeeders", + "label": "Apps Minimum Seeders", + "helpText": "Minimum seeders required by the Applications for the indexer to grab, empty is Sync profile's default", + "type": "number", + "advanced": true + }, + { + "order": 5, + "name": "torrentBaseSettings.seedRatio", + "label": "Seed Ratio", + "helpText": "The ratio a torrent should reach before stopping, empty is app's default", + "type": "textbox", + "advanced": true + }, + { + "order": 6, + "name": "torrentBaseSettings.seedTime", + "label": "Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 7, + "name": "torrentBaseSettings.packSeedTime", + "label": "Pack Seed Time", + "unit": "minutes", + "helpText": "The time a pack (season or discography) torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 0, + "name": "itorrents-links", + "label": "Add download links via itorrents.org", + "value": false, + "type": "checkbox", + "advanced": false + }, + { + "order": 1, + "name": "info", + "label": "ITorrents Note", + "value": "Without the itorrents option only magnet links will be provided.", + "type": "info", + "advanced": false + }, + { + "order": 2, + "name": "sort", + "label": "Sort requested from site (Applies only to search with Keywords)", + "value": 2, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "seeders desc", + "order": 0 + }, + { + "value": 1, + "name": "size desc", + "order": 0 + }, + { + "value": 2, + "name": "created desc", + "order": 0 + }, + { + "value": 3, + "name": "seeders asc", + "order": 0 + }, + { + "value": 4, + "name": "size asc", + "order": 0 + }, + { + "value": 5, + "name": "created asc", + "order": 0 + } + ] + }, + { + "order": 3, + "name": "flaresolverr", + "label": "FlareSolverr", + "value": "This site may use Cloudflare DDoS Protection, therefore Prowlarr requires FlareSolverr to access it.", + "type": "info", + "advanced": false + } + ], + "implementationName": "Cardigann", + "implementation": "Cardigann", + "configContract": "CardigannSettings", + "infoLink": "https://wiki.servarr.com/prowlarr/supported-indexers#idope", + "tags": [1], + "id": 24 + }, + { + "indexerUrls": [ + "https://archive.org/" + ], + "legacyUrls": [], + "definitionName": "internetarchive", + "description": "Internet Archive is a non-profit digital library offering free universal access to books, movies & music, as well as 406 billion archived web pages", + "language": "en-US", + "encoding": "Unicode (UTF-8)", + "enable": true, + "redirect": false, + "supportsRss": true, + "supportsSearch": true, + "supportsRedirect": false, + "supportsPagination": false, + "appProfileId": 1, + "protocol": "torrent", + "privacy": "public", + "capabilities": { + "limitsMax": 100, + "limitsDefault": 100, + "categories": [ + { + "id": 3000, + "name": "Audio", + "subCategories": [] + }, + { + "id": 127296, + "name": "audio", + "subCategories": [] + }, + { + "id": 154563, + "name": "etree", + "subCategories": [] + }, + { + "id": 2000, + "name": "Movies", + "subCategories": [] + }, + { + "id": 112696, + "name": "movies", + "subCategories": [] + }, + { + "id": 5000, + "name": "TV", + "subCategories": [] + }, + { + "id": 112696, + "name": "movies", + "subCategories": [] + }, + { + "id": 0, + "name": "Other", + "subCategories": [ + { + "id": 10, + "name": "Other/Misc", + "subCategories": [] + } + ] + }, + { + "id": 130222, + "name": "image", + "subCategories": [] + }, + { + "id": 7000, + "name": "Books", + "subCategories": [] + }, + { + "id": 130440, + "name": "texts", + "subCategories": [] + }, + { + "id": 4000, + "name": "PC", + "subCategories": [] + }, + { + "id": 133225, + "name": "software", + "subCategories": [] + }, + { + "id": 133994, + "name": "web", + "subCategories": [] + }, + { + "id": 114112, + "name": "collection", + "subCategories": [] + }, + { + "id": 108394, + "name": "account", + "subCategories": [] + }, + { + "id": 131905, + "name": "data", + "subCategories": [] + }, + { + "id": 138096, + "name": "other", + "subCategories": [] + } + ], + "supportsRawSearch": false, + "searchParams": [ + "q", + "q" + ], + "tvSearchParams": [ + "q", + "season", + "ep" + ], + "movieSearchParams": [ + "q" + ], + "musicSearchParams": [ + "q" + ], + "bookSearchParams": [ + "q" + ] + }, + "priority": 25, + "added": "2023-06-03T19:01:07Z", + "sortName": "internet archive", + "name": "Internet Archive", + "fields": [ + { + "order": 0, + "name": "definitionFile", + "value": "internetarchive", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 1, + "name": "baseUrl", + "label": "Base Url", + "helpText": "Select which baseurl Prowlarr will use for requests to the site", + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "getUrls" + }, + { + "order": 2, + "name": "baseSettings.queryLimit", + "label": "Query Limit", + "helpText": "The number of queries within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 3, + "name": "baseSettings.grabLimit", + "label": "Grab Limit", + "helpText": "The number of grabs within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 4, + "name": "torrentBaseSettings.appMinimumSeeders", + "label": "Apps Minimum Seeders", + "helpText": "Minimum seeders required by the Applications for the indexer to grab, empty is Sync profile's default", + "type": "number", + "advanced": true + }, + { + "order": 5, + "name": "torrentBaseSettings.seedRatio", + "label": "Seed Ratio", + "helpText": "The ratio a torrent should reach before stopping, empty is app's default", + "type": "textbox", + "advanced": true + }, + { + "order": 6, + "name": "torrentBaseSettings.seedTime", + "label": "Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 7, + "name": "torrentBaseSettings.packSeedTime", + "label": "Pack Seed Time", + "unit": "minutes", + "helpText": "The time a pack (season or discography) torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 0, + "name": "titleOnly", + "label": "Search only in title", + "value": true, + "type": "checkbox", + "advanced": false + }, + { + "order": 1, + "name": "noMagnet", + "label": "Download using .torrent only. No Magnets.", + "value": false, + "type": "checkbox", + "advanced": false + }, + { + "order": 2, + "name": "sort", + "label": "Sort requested from site", + "value": 2, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "downloads", + "order": 0 + }, + { + "value": 1, + "name": "size", + "order": 0 + }, + { + "value": 2, + "name": "created", + "order": 0 + } + ] + }, + { + "order": 3, + "name": "type", + "label": "Order requested from site", + "value": 1, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "asc", + "order": 0 + }, + { + "value": 1, + "name": "desc", + "order": 0 + } + ] + } + ], + "implementationName": "Cardigann", + "implementation": "Cardigann", + "configContract": "CardigannSettings", + "infoLink": "https://wiki.servarr.com/prowlarr/supported-indexers#internetarchive", + "tags": [], + "id": 25 + }, + { + "indexerUrls": [ + "https://jav-torrent.org/" + ], + "legacyUrls": [], + "definitionName": "jav-torrent", + "description": "JAV-Torrent is a Public tracker for Asian 3X (JAV)", + "language": "en-US", + "encoding": "Unicode (UTF-8)", + "enable": true, + "redirect": false, + "supportsRss": true, + "supportsSearch": true, + "supportsRedirect": false, + "supportsPagination": false, + "appProfileId": 1, + "protocol": "torrent", + "privacy": "public", + "capabilities": { + "limitsMax": 100, + "limitsDefault": 100, + "categories": [ + { + "id": 6000, + "name": "XXX", + "subCategories": [] + } + ], + "supportsRawSearch": false, + "searchParams": [ + "q", + "q" + ], + "tvSearchParams": [], + "movieSearchParams": [], + "musicSearchParams": [], + "bookSearchParams": [] + }, + "priority": 25, + "added": "2023-06-03T19:01:17Z", + "sortName": "jav torrent", + "name": "JAV-Torrent", + "fields": [ + { + "order": 0, + "name": "definitionFile", + "value": "jav-torrent", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 1, + "name": "baseUrl", + "label": "Base Url", + "helpText": "Select which baseurl Prowlarr will use for requests to the site", + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "getUrls" + }, + { + "order": 2, + "name": "baseSettings.queryLimit", + "label": "Query Limit", + "helpText": "The number of queries within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 3, + "name": "baseSettings.grabLimit", + "label": "Grab Limit", + "helpText": "The number of grabs within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 4, + "name": "torrentBaseSettings.appMinimumSeeders", + "label": "Apps Minimum Seeders", + "helpText": "Minimum seeders required by the Applications for the indexer to grab, empty is Sync profile's default", + "type": "number", + "advanced": true + }, + { + "order": 5, + "name": "torrentBaseSettings.seedRatio", + "label": "Seed Ratio", + "helpText": "The ratio a torrent should reach before stopping, empty is app's default", + "type": "textbox", + "advanced": true + }, + { + "order": 6, + "name": "torrentBaseSettings.seedTime", + "label": "Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 7, + "name": "torrentBaseSettings.packSeedTime", + "label": "Pack Seed Time", + "unit": "minutes", + "helpText": "The time a pack (season or discography) torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + } + ], + "implementationName": "Cardigann", + "implementation": "Cardigann", + "configContract": "CardigannSettings", + "infoLink": "https://wiki.servarr.com/prowlarr/supported-indexers#jav-torrent", + "tags": [], + "id": 26 + }, + { + "indexerUrls": [ + "https://kickasstorrents.to/", + "https://kickasstorrent.cr/", + "https://katcr.to/", + "https://kickasstorrents.unblockninja.com/" + ], + "legacyUrls": [ + "https://kat.root.yt/" + ], + "definitionName": "kickasstorrents-to", + "description": "kickasstorrents.to is a Public KickAssTorrent clone for TV / MOVIES / GENERAL", + "language": "en-US", + "encoding": "Unicode (UTF-8)", + "enable": true, + "redirect": false, + "supportsRss": true, + "supportsSearch": true, + "supportsRedirect": false, + "supportsPagination": false, + "appProfileId": 1, + "protocol": "torrent", + "privacy": "public", + "capabilities": { + "limitsMax": 100, + "limitsDefault": 100, + "categories": [ + { + "id": 5000, + "name": "TV", + "subCategories": [ + { + "id": 5070, + "name": "TV/Anime", + "subCategories": [] + }, + { + "id": 5080, + "name": "TV/Documentary", + "subCategories": [] + } + ] + }, + { + "id": 141745, + "name": "Anime", + "subCategories": [] + }, + { + "id": 4000, + "name": "PC", + "subCategories": [] + }, + { + "id": 109600, + "name": "Apps", + "subCategories": [] + }, + { + "id": 7000, + "name": "Books", + "subCategories": [] + }, + { + "id": 160714, + "name": "Books", + "subCategories": [] + }, + { + "id": 105134, + "name": "Documentaries", + "subCategories": [] + }, + { + "id": 1000, + "name": "Console", + "subCategories": [] + }, + { + "id": 110205, + "name": "Games", + "subCategories": [] + }, + { + "id": 2000, + "name": "Movies", + "subCategories": [] + }, + { + "id": 112696, + "name": "Movies", + "subCategories": [] + }, + { + "id": 3000, + "name": "Audio", + "subCategories": [] + }, + { + "id": 100314, + "name": "Music", + "subCategories": [] + }, + { + "id": 0, + "name": "Other", + "subCategories": [] + }, + { + "id": 138096, + "name": "Other", + "subCategories": [] + }, + { + "id": 103583, + "name": "TV", + "subCategories": [] + }, + { + "id": 6000, + "name": "XXX", + "subCategories": [] + }, + { + "id": 103510, + "name": "XXX", + "subCategories": [] + } + ], + "supportsRawSearch": false, + "searchParams": [ + "q", + "q" + ], + "tvSearchParams": [ + "q", + "season", + "ep" + ], + "movieSearchParams": [ + "q" + ], + "musicSearchParams": [ + "q" + ], + "bookSearchParams": [ + "q" + ] + }, + "priority": 25, + "added": "2023-06-03T19:06:30Z", + "sortName": "kickasstorrents to", + "name": "kickasstorrents.to", + "fields": [ + { + "order": 0, + "name": "definitionFile", + "value": "kickasstorrents-to", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 1, + "name": "baseUrl", + "label": "Base Url", + "helpText": "Select which baseurl Prowlarr will use for requests to the site", + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "getUrls" + }, + { + "order": 2, + "name": "baseSettings.queryLimit", + "label": "Query Limit", + "helpText": "The number of queries within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 3, + "name": "baseSettings.grabLimit", + "label": "Grab Limit", + "helpText": "The number of grabs within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 4, + "name": "torrentBaseSettings.appMinimumSeeders", + "label": "Apps Minimum Seeders", + "helpText": "Minimum seeders required by the Applications for the indexer to grab, empty is Sync profile's default", + "type": "number", + "advanced": true + }, + { + "order": 5, + "name": "torrentBaseSettings.seedRatio", + "label": "Seed Ratio", + "helpText": "The ratio a torrent should reach before stopping, empty is app's default", + "type": "textbox", + "advanced": true + }, + { + "order": 6, + "name": "torrentBaseSettings.seedTime", + "label": "Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 7, + "name": "torrentBaseSettings.packSeedTime", + "label": "Pack Seed Time", + "unit": "minutes", + "helpText": "The time a pack (season or discography) torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 0, + "name": "sort", + "label": "Sort requested from site", + "value": 2, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "seeders", + "order": 0 + }, + { + "value": 1, + "name": "size", + "order": 0 + }, + { + "value": 2, + "name": "created", + "order": 0 + } + ] + }, + { + "order": 1, + "name": "type", + "label": "Order requested from site", + "value": 1, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "asc", + "order": 0 + }, + { + "value": 1, + "name": "desc", + "order": 0 + } + ] + } + ], + "implementationName": "Cardigann", + "implementation": "Cardigann", + "configContract": "CardigannSettings", + "infoLink": "https://wiki.servarr.com/prowlarr/supported-indexers#kickasstorrents-to", + "tags": [], + "id": 62 + }, + { + "indexerUrls": [ + "https://knaben.eu/" + ], + "legacyUrls": [], + "definitionName": "knaben", + "description": "Knaben is a Public torrent meta-search engine", + "language": "en-US", + "encoding": "Unicode (UTF-8)", + "enable": true, + "redirect": false, + "supportsRss": true, + "supportsSearch": true, + "supportsRedirect": false, + "supportsPagination": false, + "appProfileId": 1, + "protocol": "torrent", + "privacy": "public", + "capabilities": { + "limitsMax": 100, + "limitsDefault": 100, + "categories": [ + { + "id": 3000, + "name": "Audio", + "subCategories": [ + { + "id": 3010, + "name": "Audio/MP3", + "subCategories": [] + }, + { + "id": 3040, + "name": "Audio/Lossless", + "subCategories": [] + }, + { + "id": 3030, + "name": "Audio/Audiobook", + "subCategories": [] + }, + { + "id": 3020, + "name": "Audio/Video", + "subCategories": [] + }, + { + "id": 3050, + "name": "Audio/Other", + "subCategories": [] + } + ] + }, + { + "id": 1100000, + "name": "Audio", + "subCategories": [] + }, + { + "id": 1101000, + "name": "MP3", + "subCategories": [] + }, + { + "id": 1102000, + "name": "Lossless", + "subCategories": [] + }, + { + "id": 1103000, + "name": "Audiobook", + "subCategories": [] + }, + { + "id": 1104000, + "name": "Audio Video", + "subCategories": [] + }, + { + "id": 1105000, + "name": "Radio", + "subCategories": [] + }, + { + "id": 1106000, + "name": "Audio Other", + "subCategories": [] + }, + { + "id": 5000, + "name": "TV", + "subCategories": [ + { + "id": 5040, + "name": "TV/HD", + "subCategories": [] + }, + { + "id": 5030, + "name": "TV/SD", + "subCategories": [] + }, + { + "id": 5045, + "name": "TV/UHD", + "subCategories": [] + }, + { + "id": 5080, + "name": "TV/Documentary", + "subCategories": [] + }, + { + "id": 5020, + "name": "TV/Foreign", + "subCategories": [] + }, + { + "id": 5060, + "name": "TV/Sport", + "subCategories": [] + }, + { + "id": 5050, + "name": "TV/Other", + "subCategories": [] + }, + { + "id": 5070, + "name": "TV/Anime", + "subCategories": [] + } + ] + }, + { + "id": 2100000, + "name": "TV", + "subCategories": [] + }, + { + "id": 2101000, + "name": "TV HD", + "subCategories": [] + }, + { + "id": 2102000, + "name": "TV SD", + "subCategories": [] + }, + { + "id": 2103000, + "name": "TV UHD", + "subCategories": [] + }, + { + "id": 2104000, + "name": "Documentary", + "subCategories": [] + }, + { + "id": 2105000, + "name": "TV Foreign", + "subCategories": [] + }, + { + "id": 2106000, + "name": "Sport", + "subCategories": [] + }, + { + "id": 2107000, + "name": "Cartoon", + "subCategories": [] + }, + { + "id": 2108000, + "name": "TV Other", + "subCategories": [] + }, + { + "id": 2000, + "name": "Movies", + "subCategories": [ + { + "id": 2040, + "name": "Movies/HD", + "subCategories": [] + }, + { + "id": 2030, + "name": "Movies/SD", + "subCategories": [] + }, + { + "id": 2045, + "name": "Movies/UHD", + "subCategories": [] + }, + { + "id": 2070, + "name": "Movies/DVD", + "subCategories": [] + }, + { + "id": 2010, + "name": "Movies/Foreign", + "subCategories": [] + }, + { + "id": 2060, + "name": "Movies/3D", + "subCategories": [] + }, + { + "id": 2020, + "name": "Movies/Other", + "subCategories": [] + } + ] + }, + { + "id": 3100000, + "name": "Movies", + "subCategories": [] + }, + { + "id": 3101000, + "name": "Movies HD", + "subCategories": [] + }, + { + "id": 3102000, + "name": "Movies SD", + "subCategories": [] + }, + { + "id": 3103000, + "name": "Movies UHD", + "subCategories": [] + }, + { + "id": 3104000, + "name": "Movies DVD", + "subCategories": [] + }, + { + "id": 3105000, + "name": "Movies Foreign", + "subCategories": [] + }, + { + "id": 3106000, + "name": "Movies Bollywood", + "subCategories": [] + }, + { + "id": 3107000, + "name": "Movies 3D", + "subCategories": [] + }, + { + "id": 3108000, + "name": "Movies Other", + "subCategories": [] + }, + { + "id": 4000, + "name": "PC", + "subCategories": [ + { + "id": 4050, + "name": "PC/Games", + "subCategories": [] + }, + { + "id": 4010, + "name": "PC/0day", + "subCategories": [] + }, + { + "id": 4030, + "name": "PC/Mac", + "subCategories": [] + }, + { + "id": 4020, + "name": "PC/ISO", + "subCategories": [] + }, + { + "id": 4040, + "name": "PC/Mobile-Other", + "subCategories": [] + }, + { + "id": 4070, + "name": "PC/Mobile-Android", + "subCategories": [] + }, + { + "id": 4060, + "name": "PC/Mobile-iOS", + "subCategories": [] + } + ] + }, + { + "id": 4100000, + "name": "PC", + "subCategories": [] + }, + { + "id": 4101000, + "name": "Games", + "subCategories": [] + }, + { + "id": 4102000, + "name": "Software", + "subCategories": [] + }, + { + "id": 4103000, + "name": "Mac", + "subCategories": [] + }, + { + "id": 4104000, + "name": "Unix", + "subCategories": [] + }, + { + "id": 6000, + "name": "XXX", + "subCategories": [ + { + "id": 6040, + "name": "XXX/x264", + "subCategories": [] + }, + { + "id": 6060, + "name": "XXX/ImageSet", + "subCategories": [] + }, + { + "id": 6070, + "name": "XXX/Other", + "subCategories": [] + } + ] + }, + { + "id": 5100000, + "name": "XXX", + "subCategories": [] + }, + { + "id": 5101000, + "name": "XXX Video", + "subCategories": [] + }, + { + "id": 5102000, + "name": "XXX ImageSet", + "subCategories": [] + }, + { + "id": 5103000, + "name": "XXX Games", + "subCategories": [] + }, + { + "id": 5104000, + "name": "XXX Hentai", + "subCategories": [] + }, + { + "id": 5105000, + "name": "XXX Other", + "subCategories": [] + }, + { + "id": 6100000, + "name": "Anime", + "subCategories": [] + }, + { + "id": 6101000, + "name": "Anime Subbed", + "subCategories": [] + }, + { + "id": 6102000, + "name": "Anime Dubbed", + "subCategories": [] + }, + { + "id": 6103000, + "name": "Anime Dual audio", + "subCategories": [] + }, + { + "id": 6104000, + "name": "Anime Raw", + "subCategories": [] + }, + { + "id": 6105000, + "name": "Music Video", + "subCategories": [] + }, + { + "id": 7000, + "name": "Books", + "subCategories": [ + { + "id": 7050, + "name": "Books/Other", + "subCategories": [] + }, + { + "id": 7020, + "name": "Books/EBook", + "subCategories": [] + }, + { + "id": 7030, + "name": "Books/Comics", + "subCategories": [] + }, + { + "id": 7010, + "name": "Books/Mags", + "subCategories": [] + }, + { + "id": 7040, + "name": "Books/Technical", + "subCategories": [] + } + ] + }, + { + "id": 6106000, + "name": "Literature", + "subCategories": [] + }, + { + "id": 6107000, + "name": "Music", + "subCategories": [] + }, + { + "id": 6108000, + "name": "Anime non-english translated", + "subCategories": [] + }, + { + "id": 1000, + "name": "Console", + "subCategories": [ + { + "id": 1180, + "name": "Console/PS4", + "subCategories": [] + }, + { + "id": 1080, + "name": "Console/PS3", + "subCategories": [] + }, + { + "id": 1120, + "name": "Console/PS Vita", + "subCategories": [] + }, + { + "id": 1020, + "name": "Console/PSP", + "subCategories": [] + }, + { + "id": 1050, + "name": "Console/XBox 360", + "subCategories": [] + }, + { + "id": 1040, + "name": "Console/XBox", + "subCategories": [] + }, + { + "id": 1010, + "name": "Console/NDS", + "subCategories": [] + }, + { + "id": 1030, + "name": "Console/Wii", + "subCategories": [] + }, + { + "id": 1130, + "name": "Console/WiiU", + "subCategories": [] + }, + { + "id": 1110, + "name": "Console/3DS", + "subCategories": [] + }, + { + "id": 1090, + "name": "Console/Other", + "subCategories": [] + } + ] + }, + { + "id": 7100000, + "name": "Console", + "subCategories": [] + }, + { + "id": 7101000, + "name": "PS4", + "subCategories": [] + }, + { + "id": 7102000, + "name": "PS3", + "subCategories": [] + }, + { + "id": 7103000, + "name": "PS2", + "subCategories": [] + }, + { + "id": 7104000, + "name": "PS1", + "subCategories": [] + }, + { + "id": 7105000, + "name": "PS Vita", + "subCategories": [] + }, + { + "id": 7106000, + "name": "PSP", + "subCategories": [] + }, + { + "id": 7107000, + "name": "Xbox 360", + "subCategories": [] + }, + { + "id": 7108000, + "name": "Xbox", + "subCategories": [] + }, + { + "id": 7109000, + "name": "Switch", + "subCategories": [] + }, + { + "id": 7110000, + "name": "NDS", + "subCategories": [] + }, + { + "id": 7111000, + "name": "Wii", + "subCategories": [] + }, + { + "id": 7112000, + "name": "WiiU", + "subCategories": [] + }, + { + "id": 7113000, + "name": "3DS", + "subCategories": [] + }, + { + "id": 7114000, + "name": "GameCube", + "subCategories": [] + }, + { + "id": 7115000, + "name": "Other", + "subCategories": [] + }, + { + "id": 8100000, + "name": "Mobile", + "subCategories": [] + }, + { + "id": 8101000, + "name": "Android", + "subCategories": [] + }, + { + "id": 8102000, + "name": "IOS", + "subCategories": [] + }, + { + "id": 8103000, + "name": "PC Other", + "subCategories": [] + }, + { + "id": 9100000, + "name": "Books", + "subCategories": [] + }, + { + "id": 9101000, + "name": "EBooks", + "subCategories": [] + }, + { + "id": 9102000, + "name": "Comics", + "subCategories": [] + }, + { + "id": 9103000, + "name": "Magazines", + "subCategories": [] + }, + { + "id": 9104000, + "name": "Technical", + "subCategories": [] + }, + { + "id": 9105000, + "name": "Books Other", + "subCategories": [] + }, + { + "id": 0, + "name": "Other", + "subCategories": [ + { + "id": 10, + "name": "Other/Misc", + "subCategories": [] + } + ] + }, + { + "id": 10100000, + "name": "Other", + "subCategories": [] + }, + { + "id": 10101000, + "name": "Other Misc", + "subCategories": [] + } + ], + "supportsRawSearch": false, + "searchParams": [ + "q", + "q" + ], + "tvSearchParams": [ + "q", + "season", + "ep" + ], + "movieSearchParams": [ + "q" + ], + "musicSearchParams": [ + "q" + ], + "bookSearchParams": [ + "q" + ] + }, + "priority": 25, + "added": "2023-06-03T19:01:21Z", + "sortName": "knaben", + "name": "Knaben", + "fields": [ + { + "order": 0, + "name": "definitionFile", + "value": "knaben", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 1, + "name": "baseUrl", + "label": "Base Url", + "helpText": "Select which baseurl Prowlarr will use for requests to the site", + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "getUrls" + }, + { + "order": 2, + "name": "baseSettings.queryLimit", + "label": "Query Limit", + "helpText": "The number of queries within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 3, + "name": "baseSettings.grabLimit", + "label": "Grab Limit", + "helpText": "The number of grabs within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 4, + "name": "torrentBaseSettings.appMinimumSeeders", + "label": "Apps Minimum Seeders", + "helpText": "Minimum seeders required by the Applications for the indexer to grab, empty is Sync profile's default", + "type": "number", + "advanced": true + }, + { + "order": 5, + "name": "torrentBaseSettings.seedRatio", + "label": "Seed Ratio", + "helpText": "The ratio a torrent should reach before stopping, empty is app's default", + "type": "textbox", + "advanced": true + }, + { + "order": 6, + "name": "torrentBaseSettings.seedTime", + "label": "Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 7, + "name": "torrentBaseSettings.packSeedTime", + "label": "Pack Seed Time", + "unit": "minutes", + "helpText": "The time a pack (season or discography) torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 0, + "name": "sort", + "label": "Sort requested from site", + "value": 1, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "size", + "order": 0 + }, + { + "value": 1, + "name": "created", + "order": 0 + }, + { + "value": 2, + "name": "seeders", + "order": 0 + }, + { + "value": 3, + "name": "title", + "order": 0 + } + ] + }, + { + "order": 1, + "name": "type", + "label": "Order requested from site", + "value": 1, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "asc", + "order": 0 + }, + { + "value": 1, + "name": "desc", + "order": 0 + } + ] + } + ], + "implementationName": "Cardigann", + "implementation": "Cardigann", + "configContract": "CardigannSettings", + "infoLink": "https://wiki.servarr.com/prowlarr/supported-indexers#knaben", + "tags": [], + "id": 27 + }, + { + "indexerUrls": [ + "https://leporno.info/" + ], + "legacyUrls": [], + "definitionName": "lepornoinfo", + "description": "LePorno.info is a Public Tracker for 3X", + "language": "en-US", + "encoding": "Unicode (UTF-8)", + "enable": true, + "redirect": false, + "supportsRss": true, + "supportsSearch": true, + "supportsRedirect": false, + "supportsPagination": false, + "appProfileId": 1, + "protocol": "torrent", + "privacy": "public", + "capabilities": { + "limitsMax": 100, + "limitsDefault": 100, + "categories": [ + { + "id": 6000, + "name": "XXX", + "subCategories": [ + { + "id": 6030, + "name": "XXX/XviD", + "subCategories": [] + }, + { + "id": 6040, + "name": "XXX/x264", + "subCategories": [] + }, + { + "id": 6020, + "name": "XXX/WMV", + "subCategories": [] + }, + { + "id": 6060, + "name": "XXX/ImageSet", + "subCategories": [] + }, + { + "id": 6070, + "name": "XXX/Other", + "subCategories": [] + } + ] + }, + { + "id": 100001, + "name": "Videos SD", + "subCategories": [] + }, + { + "id": 100002, + "name": "Videos HD", + "subCategories": [] + }, + { + "id": 100003, + "name": "Movies", + "subCategories": [] + }, + { + "id": 100017, + "name": "SiteRip's Picture Packs", + "subCategories": [] + }, + { + "id": 100006, + "name": "Porn (Other)", + "subCategories": [] + }, + { + "id": 100004, + "name": "AV CENSORED (JAV)", + "subCategories": [] + }, + { + "id": 100005, + "name": "AV UNCENSORED (JAV)", + "subCategories": [] + }, + { + "id": 100007, + "name": "Hentai", + "subCategories": [] + }, + { + "id": 100008, + "name": "Porn (Other) JAV", + "subCategories": [] + }, + { + "id": 100010, + "name": "Transsexual", + "subCategories": [] + }, + { + "id": 100011, + "name": "Bisexual", + "subCategories": [] + }, + { + "id": 100012, + "name": "BDSM", + "subCategories": [] + }, + { + "id": 100013, + "name": "Femdom & Strapon", + "subCategories": [] + }, + { + "id": 100014, + "name": "Fisting & Dildo", + "subCategories": [] + }, + { + "id": 100015, + "name": "Pregnant", + "subCategories": [] + }, + { + "id": 100016, + "name": "Fetish", + "subCategories": [] + }, + { + "id": 100009, + "name": "Gay Forum", + "subCategories": [] + }, + { + "id": 100018, + "name": "Incest & Taboo", + "subCategories": [] + }, + { + "id": 100019, + "name": "Femdom & Strapon", + "subCategories": [] + } + ], + "supportsRawSearch": false, + "searchParams": [ + "q", + "q" + ], + "tvSearchParams": [], + "movieSearchParams": [], + "musicSearchParams": [], + "bookSearchParams": [] + }, + "priority": 25, + "added": "2023-06-03T19:01:46Z", + "sortName": "leporno info", + "name": "LePorno.info", + "fields": [ + { + "order": 0, + "name": "definitionFile", + "value": "lepornoinfo", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 1, + "name": "baseUrl", + "label": "Base Url", + "helpText": "Select which baseurl Prowlarr will use for requests to the site", + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "getUrls" + }, + { + "order": 2, + "name": "baseSettings.queryLimit", + "label": "Query Limit", + "helpText": "The number of queries within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 3, + "name": "baseSettings.grabLimit", + "label": "Grab Limit", + "helpText": "The number of grabs within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 4, + "name": "torrentBaseSettings.appMinimumSeeders", + "label": "Apps Minimum Seeders", + "helpText": "Minimum seeders required by the Applications for the indexer to grab, empty is Sync profile's default", + "type": "number", + "advanced": true + }, + { + "order": 5, + "name": "torrentBaseSettings.seedRatio", + "label": "Seed Ratio", + "helpText": "The ratio a torrent should reach before stopping, empty is app's default", + "type": "textbox", + "advanced": true + }, + { + "order": 6, + "name": "torrentBaseSettings.seedTime", + "label": "Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 7, + "name": "torrentBaseSettings.packSeedTime", + "label": "Pack Seed Time", + "unit": "minutes", + "helpText": "The time a pack (season or discography) torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 0, + "name": "sort", + "label": "Sort requested from site", + "value": 0, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "created", + "order": 0 + }, + { + "value": 1, + "name": "seeders", + "order": 0 + }, + { + "value": 2, + "name": "title", + "order": 0 + }, + { + "value": 3, + "name": "size", + "order": 0 + } + ] + }, + { + "order": 1, + "name": "type", + "label": "Order requested from site", + "value": 1, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "asc", + "order": 0 + }, + { + "value": 1, + "name": "desc", + "order": 0 + } + ] + } + ], + "implementationName": "Cardigann", + "implementation": "Cardigann", + "configContract": "CardigannSettings", + "infoLink": "https://wiki.servarr.com/prowlarr/supported-indexers#lepornoinfo", + "tags": [], + "id": 28 + }, + { + "indexerUrls": [ + "https://www.limetorrents.lol/", + "https://limetorrents.unblockit.ing/", + "https://limetorrents.ninjaproxy1.com/", + "https://limetorrents.mrunblock.bond/", + "https://limetorrents.nocensor.cloud/" + ], + "legacyUrls": [ + "https://www.limetorrents.io/", + "https://www.limetorrents.cc/", + "https://www.limetorrents.me/", + "https://www.limetorrents.zone/", + "https://www.limetorrents.info/", + "https://www.limetorrents.asia/", + "https://www.limetorrents.co/", + "https://limetor.com/", + "https://www.limetor.pro/", + "https://www.limetorrents.pro/", + "https://limetorrents.unblockit.cat/", + "https://limetorrents.unblockit.nz/", + "https://limetorrents.nocensor.world/", + "https://limetorrents.unblockit.page/", + "https://limetorrents.unblockit.pet/", + "https://limetorrents.nocensor.lol/", + "https://limetorrents.unblockit.ink/", + "https://limetorrents.nocensor.art/", + "https://limetorrents.unblockit.bio/", + "https://limetorrents.unblockit.boo/", + "https://limetorrents.mrunblock.guru/", + "https://limetorrents.unblockit.click/", + "https://limetorrents.unblockit.asia/", + "https://limetorrents.unblockit.mov/", + "https://limetorrents.mrunblock.life/", + "https://limetorrents.unblockit.rsvp/", + "https://limetorrents.nocensor.click/", + "https://limetorrents.unblockninja.com/", + "https://limetorrents.unblockit.vegas/", + "https://limetorrents.unblockit.esq/", + "https://limetorrents.unblockit.zip/", + "https://limetorrents.unblockit.foo/" + ], + "definitionName": "limetorrents", + "description": "LimeTorrents is a Public general torrent index with mostly verified torrents", + "language": "en-US", + "encoding": "Unicode (UTF-8)", + "enable": true, + "redirect": false, + "supportsRss": true, + "supportsSearch": true, + "supportsRedirect": false, + "supportsPagination": false, + "appProfileId": 1, + "protocol": "torrent", + "privacy": "public", + "capabilities": { + "limitsMax": 100, + "limitsDefault": 100, + "categories": [ + { + "id": 5000, + "name": "TV", + "subCategories": [ + { + "id": 5070, + "name": "TV/Anime", + "subCategories": [] + } + ] + }, + { + "id": 112972, + "name": "TV shows", + "subCategories": [] + }, + { + "id": 2000, + "name": "Movies", + "subCategories": [] + }, + { + "id": 100467, + "name": "Movies", + "subCategories": [] + }, + { + "id": 3000, + "name": "Audio", + "subCategories": [] + }, + { + "id": 104627, + "name": "Music", + "subCategories": [] + }, + { + "id": 1000, + "name": "Console", + "subCategories": [] + }, + { + "id": 136409, + "name": "Games", + "subCategories": [] + }, + { + "id": 4000, + "name": "PC", + "subCategories": [ + { + "id": 4010, + "name": "PC/0day", + "subCategories": [] + } + ] + }, + { + "id": 151062, + "name": "Applications", + "subCategories": [] + }, + { + "id": 0, + "name": "Other", + "subCategories": [] + }, + { + "id": 127246, + "name": "Other", + "subCategories": [] + }, + { + "id": 146065, + "name": "Anime", + "subCategories": [] + }, + { + "id": 7000, + "name": "Books", + "subCategories": [ + { + "id": 7020, + "name": "Books/EBook", + "subCategories": [] + } + ] + }, + { + "id": 121527, + "name": "E-books", + "subCategories": [] + } + ], + "supportsRawSearch": false, + "searchParams": [ + "q", + "q" + ], + "tvSearchParams": [ + "q", + "season", + "ep" + ], + "movieSearchParams": [ + "q" + ], + "musicSearchParams": [ + "q" + ], + "bookSearchParams": [ + "q" + ] + }, + "priority": 25, + "added": "2023-06-03T19:01:55Z", + "sortName": "limetorrents", + "name": "LimeTorrents", + "fields": [ + { + "order": 0, + "name": "definitionFile", + "value": "limetorrents", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 1, + "name": "baseUrl", + "label": "Base Url", + "helpText": "Select which baseurl Prowlarr will use for requests to the site", + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "getUrls" + }, + { + "order": 2, + "name": "baseSettings.queryLimit", + "label": "Query Limit", + "helpText": "The number of queries within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 3, + "name": "baseSettings.grabLimit", + "label": "Grab Limit", + "helpText": "The number of grabs within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 4, + "name": "torrentBaseSettings.appMinimumSeeders", + "label": "Apps Minimum Seeders", + "helpText": "Minimum seeders required by the Applications for the indexer to grab, empty is Sync profile's default", + "type": "number", + "advanced": true + }, + { + "order": 5, + "name": "torrentBaseSettings.seedRatio", + "label": "Seed Ratio", + "helpText": "The ratio a torrent should reach before stopping, empty is app's default", + "type": "textbox", + "advanced": true + }, + { + "order": 6, + "name": "torrentBaseSettings.seedTime", + "label": "Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 7, + "name": "torrentBaseSettings.packSeedTime", + "label": "Pack Seed Time", + "unit": "minutes", + "helpText": "The time a pack (season or discography) torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 0, + "name": "downloadlink", + "label": "Download link", + "value": 1, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "iTorrents.org", + "order": 0 + }, + { + "value": 1, + "name": "magnet", + "order": 0 + } + ] + }, + { + "order": 1, + "name": "downloadlink2", + "label": "Download link (fallback)", + "value": 0, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "iTorrents.org", + "order": 0 + }, + { + "value": 1, + "name": "magnet", + "order": 0 + } + ] + }, + { + "order": 2, + "name": "info_download", + "label": "About the Download links", + "value": "As the .torrent download links on this site are known to fail from time to time, you can optionally set as a fallback an automatic alternate link.", + "type": "info", + "advanced": false + }, + { + "order": 3, + "name": "sort", + "label": "Sort requested from site", + "value": 0, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "created", + "order": 0 + }, + { + "value": 1, + "name": "seeders", + "order": 0 + }, + { + "value": 2, + "name": "size", + "order": 0 + } + ] + }, + { + "order": 4, + "name": "info_8000", + "label": "About LimeTorrents Categories", + "value": "LimeTorrents only returns category Other in its Keywordless search results page.
To pass your apps' indexer TEST you will need to include the 8000(Other) category.", + "type": "info", + "advanced": false + } + ], + "implementationName": "Cardigann", + "implementation": "Cardigann", + "configContract": "CardigannSettings", + "infoLink": "https://wiki.servarr.com/prowlarr/supported-indexers#limetorrents", + "tags": [], + "id": 29 + }, + { + "indexerUrls": [ + "https://www.limetorrents.to/" + ], + "legacyUrls": [], + "definitionName": "limetorrentsclone", + "description": "LimeTorrents clone is a Public LimeTorrents clone for TV / MOVIES / GENERAL", + "language": "en-US", + "encoding": "Unicode (UTF-8)", + "enable": true, + "redirect": false, + "supportsRss": true, + "supportsSearch": true, + "supportsRedirect": false, + "supportsPagination": false, + "appProfileId": 1, + "protocol": "torrent", + "privacy": "public", + "capabilities": { + "limitsMax": 100, + "limitsDefault": 100, + "categories": [ + { + "id": 5000, + "name": "TV", + "subCategories": [ + { + "id": 5070, + "name": "TV/Anime", + "subCategories": [] + } + ] + }, + { + "id": 112972, + "name": "TV shows", + "subCategories": [] + }, + { + "id": 2000, + "name": "Movies", + "subCategories": [] + }, + { + "id": 100467, + "name": "Movies", + "subCategories": [] + }, + { + "id": 3000, + "name": "Audio", + "subCategories": [] + }, + { + "id": 104627, + "name": "Music", + "subCategories": [] + }, + { + "id": 1000, + "name": "Console", + "subCategories": [] + }, + { + "id": 136409, + "name": "Games", + "subCategories": [] + }, + { + "id": 4000, + "name": "PC", + "subCategories": [ + { + "id": 4010, + "name": "PC/0day", + "subCategories": [] + } + ] + }, + { + "id": 151062, + "name": "Applications", + "subCategories": [] + }, + { + "id": 0, + "name": "Other", + "subCategories": [] + }, + { + "id": 127246, + "name": "Other", + "subCategories": [] + }, + { + "id": 146065, + "name": "Anime", + "subCategories": [] + }, + { + "id": 7000, + "name": "Books", + "subCategories": [ + { + "id": 7020, + "name": "Books/EBook", + "subCategories": [] + } + ] + }, + { + "id": 121527, + "name": "E-books", + "subCategories": [] + } + ], + "supportsRawSearch": false, + "searchParams": [ + "q", + "q" + ], + "tvSearchParams": [ + "q", + "season", + "ep" + ], + "movieSearchParams": [ + "q" + ], + "musicSearchParams": [ + "q" + ], + "bookSearchParams": [ + "q" + ] + }, + "priority": 25, + "added": "2023-06-03T19:01:58Z", + "sortName": "limetorrents clone", + "name": "LimeTorrents clone", + "fields": [ + { + "order": 0, + "name": "definitionFile", + "value": "limetorrentsclone", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 1, + "name": "baseUrl", + "label": "Base Url", + "helpText": "Select which baseurl Prowlarr will use for requests to the site", + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "getUrls" + }, + { + "order": 2, + "name": "baseSettings.queryLimit", + "label": "Query Limit", + "helpText": "The number of queries within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 3, + "name": "baseSettings.grabLimit", + "label": "Grab Limit", + "helpText": "The number of grabs within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 4, + "name": "torrentBaseSettings.appMinimumSeeders", + "label": "Apps Minimum Seeders", + "helpText": "Minimum seeders required by the Applications for the indexer to grab, empty is Sync profile's default", + "type": "number", + "advanced": true + }, + { + "order": 5, + "name": "torrentBaseSettings.seedRatio", + "label": "Seed Ratio", + "helpText": "The ratio a torrent should reach before stopping, empty is app's default", + "type": "textbox", + "advanced": true + }, + { + "order": 6, + "name": "torrentBaseSettings.seedTime", + "label": "Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 7, + "name": "torrentBaseSettings.packSeedTime", + "label": "Pack Seed Time", + "unit": "minutes", + "helpText": "The time a pack (season or discography) torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 0, + "name": "downloadlink", + "label": "Download link", + "value": 1, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "iTorrents.org", + "order": 0 + }, + { + "value": 1, + "name": "magnet", + "order": 0 + } + ] + }, + { + "order": 1, + "name": "downloadlink2", + "label": "Download link (fallback)", + "value": 0, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "iTorrents.org", + "order": 0 + }, + { + "value": 1, + "name": "magnet", + "order": 0 + } + ] + }, + { + "order": 2, + "name": "info_download", + "label": "About the Download links", + "value": "As the .torrent download links on this site are known to fail from time to time, you can optionally set as a fallback an automatic alternate link.", + "type": "info", + "advanced": false + }, + { + "order": 3, + "name": "sort", + "label": "Sort requested from site", + "value": 0, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "created", + "order": 0 + }, + { + "value": 1, + "name": "seeders", + "order": 0 + }, + { + "value": 2, + "name": "size", + "order": 0 + } + ] + }, + { + "order": 4, + "name": "info_8000", + "label": "About LimeTorrents Categories", + "value": "LimeTorrents only returns category Other in its Keywordless search results page.
To pass your apps' indexer TEST you will need to include the 8000(Other) category.", + "type": "info", + "advanced": false + } + ], + "implementationName": "Cardigann", + "implementation": "Cardigann", + "configContract": "CardigannSettings", + "infoLink": "https://wiki.servarr.com/prowlarr/supported-indexers#limetorrentsclone", + "tags": [], + "id": 30 + }, + { + "indexerUrls": [ + "https://linuxtracker.org/" + ], + "legacyUrls": [], + "definitionName": "linuxtracker", + "description": "LinuxTracker is a Public Linux ISO Torrent Repository", + "language": "en-US", + "encoding": "Unicode (UTF-8)", + "enable": true, + "redirect": false, + "supportsRss": true, + "supportsSearch": true, + "supportsRedirect": false, + "supportsPagination": false, + "appProfileId": 1, + "protocol": "torrent", + "privacy": "public", + "capabilities": { + "limitsMax": 100, + "limitsDefault": 100, + "categories": [ + { + "id": 0, + "name": "Other", + "subCategories": [] + }, + { + "id": 100000, + "name": "Other", + "subCategories": [] + }, + { + "id": 4000, + "name": "PC", + "subCategories": [ + { + "id": 4020, + "name": "PC/ISO", + "subCategories": [] + } + ] + }, + { + "id": 102002, + "name": "4MLinux", + "subCategories": [] + }, + { + "id": 102004, + "name": "ALT Linux", + "subCategories": [] + }, + { + "id": 102289, + "name": "APODIO", + "subCategories": [] + }, + { + "id": 102012, + "name": "AV Linux", + "subCategories": [] + }, + { + "id": 100013, + "name": "Absolute", + "subCategories": [] + }, + { + "id": 102003, + "name": "Alpine Linux", + "subCategories": [] + }, + { + "id": 102292, + "name": "Anarchy Linux", + "subCategories": [] + }, + { + "id": 102005, + "name": "Android x86", + "subCategories": [] + }, + { + "id": 102006, + "name": "Antergos", + "subCategories": [] + }, + { + "id": 102007, + "name": "AntiX", + "subCategories": [] + }, + { + "id": 102263, + "name": "Antivirus Live CD", + "subCategories": [] + }, + { + "id": 100039, + "name": "Arch Linux", + "subCategories": [] + }, + { + "id": 102212, + "name": "ArchLabs", + "subCategories": [] + }, + { + "id": 102009, + "name": "Archbang", + "subCategories": [] + }, + { + "id": 102183, + "name": "Archman", + "subCategories": [] + }, + { + "id": 102196, + "name": "ArcoLinux", + "subCategories": [] + }, + { + "id": 102216, + "name": "Artix Linux", + "subCategories": [] + }, + { + "id": 102227, + "name": "AryaLinux", + "subCategories": [] + }, + { + "id": 102288, + "name": "Audiophile Linux", + "subCategories": [] + }, + { + "id": 100056, + "name": "Austrumi", + "subCategories": [] + }, + { + "id": 102252, + "name": "BBQLinux", + "subCategories": [] + }, + { + "id": 102260, + "name": "BSD Router Project", + "subCategories": [] + }, + { + "id": 102219, + "name": "BackSlash Linux", + "subCategories": [] + }, + { + "id": 101231, + "name": "Backbox", + "subCategories": [] + }, + { + "id": 102237, + "name": "Batocera Linux", + "subCategories": [] + }, + { + "id": 102272, + "name": "BeeFree OS", + "subCategories": [] + }, + { + "id": 102017, + "name": "Berry Linux", + "subCategories": [] + }, + { + "id": 102243, + "name": "BicomSystems PBXware", + "subCategories": [] + }, + { + "id": 102275, + "name": "BigLinux", + "subCategories": [] + }, + { + "id": 102286, + "name": "BitKey", + "subCategories": [] + }, + { + "id": 102020, + "name": "BlackArch", + "subCategories": [] + }, + { + "id": 101238, + "name": "BlackPanther OS", + "subCategories": [] + }, + { + "id": 102262, + "name": "BlackWeb", + "subCategories": [] + }, + { + "id": 102283, + "name": "Blackhat-Global OS", + "subCategories": [] + }, + { + "id": 102021, + "name": "Blacklab", + "subCategories": [] + }, + { + "id": 102022, + "name": "Blag", + "subCategories": [] + }, + { + "id": 100079, + "name": "BlankOn", + "subCategories": [] + }, + { + "id": 102182, + "name": "Bluestar Linux", + "subCategories": [] + }, + { + "id": 102023, + "name": "Bodhi", + "subCategories": [] + }, + { + "id": 102205, + "name": "BunsenLabs", + "subCategories": [] + }, + { + "id": 102026, + "name": "Cae", + "subCategories": [] + }, + { + "id": 101220, + "name": "Caine", + "subCategories": [] + }, + { + "id": 102028, + "name": "Calculate Linux", + "subCategories": [] + }, + { + "id": 100102, + "name": "CentOS", + "subCategories": [] + }, + { + "id": 101216, + "name": "Chakra", + "subCategories": [] + }, + { + "id": 102033, + "name": "Chapeau", + "subCategories": [] + }, + { + "id": 102253, + "name": "Clear Linux", + "subCategories": [] + }, + { + "id": 102264, + "name": "ClearOS", + "subCategories": [] + }, + { + "id": 102248, + "name": "ClonOS", + "subCategories": [] + }, + { + "id": 100107, + "name": "Clonezilla", + "subCategories": [] + }, + { + "id": 102257, + "name": "Condres OS", + "subCategories": [] + }, + { + "id": 102036, + "name": "Connochaet", + "subCategories": [] + }, + { + "id": 102037, + "name": "Container Linux", + "subCategories": [] + }, + { + "id": 100121, + "name": "Crunchbang", + "subCategories": [] + }, + { + "id": 100122, + "name": "Crux", + "subCategories": [] + }, + { + "id": 102273, + "name": "Cryptocurrency OS", + "subCategories": [] + }, + { + "id": 102245, + "name": "Cucumber Linux", + "subCategories": [] + }, + { + "id": 102285, + "name": "DRBL Live", + "subCategories": [] + }, + { + "id": 100123, + "name": "Damnsmall", + "subCategories": [] + }, + { + "id": 100128, + "name": "Debian", + "subCategories": [] + }, + { + "id": 100131, + "name": "Deepin", + "subCategories": [] + }, + { + "id": 102038, + "name": "Deft", + "subCategories": [] + }, + { + "id": 102192, + "name": "Devuan", + "subCategories": [] + }, + { + "id": 102287, + "name": "Doge Linux", + "subCategories": [] + }, + { + "id": 100144, + "name": "DragonFly BSD", + "subCategories": [] + }, + { + "id": 102215, + "name": "Dragora GNU/Linux", + "subCategories": [] + }, + { + "id": 102226, + "name": "DuZeru OS", + "subCategories": [] + }, + { + "id": 100148, + "name": "Dynebolic", + "subCategories": [] + }, + { + "id": 102261, + "name": "Eagle Mode", + "subCategories": [] + }, + { + "id": 102265, + "name": "EasyNAS", + "subCategories": [] + }, + { + "id": 102259, + "name": "EasyOS", + "subCategories": [] + }, + { + "id": 100155, + "name": "Edubuntu", + "subCategories": [] + }, + { + "id": 102040, + "name": "Elastix", + "subCategories": [] + }, + { + "id": 102041, + "name": "Elementary OS", + "subCategories": [] + }, + { + "id": 100161, + "name": "Elive", + "subCategories": [] + }, + { + "id": 102042, + "name": "Emmabuntus", + "subCategories": [] + }, + { + "id": 102231, + "name": "Emmi OS", + "subCategories": [] + }, + { + "id": 102278, + "name": "EndeavourOS", + "subCategories": [] + }, + { + "id": 100164, + "name": "Endian", + "subCategories": [] + }, + { + "id": 102179, + "name": "Endless OS", + "subCategories": [] + }, + { + "id": 102223, + "name": "Enso OS", + "subCategories": [] + }, + { + "id": 102043, + "name": "Exe GNU/Linux", + "subCategories": [] + }, + { + "id": 102045, + "name": "Extix", + "subCategories": [] + }, + { + "id": 102220, + "name": "Fatdog64 Linux", + "subCategories": [] + }, + { + "id": 100178, + "name": "Fedora", + "subCategories": [] + }, + { + "id": 102194, + "name": "Feren OS", + "subCategories": [] + }, + { + "id": 100181, + "name": "Finnix", + "subCategories": [] + }, + { + "id": 102266, + "name": "Forensic Hard Copy", + "subCategories": [] + }, + { + "id": 100190, + "name": "FreeBSD", + "subCategories": [] + }, + { + "id": 100194, + "name": "FreeNAS", + "subCategories": [] + }, + { + "id": 100197, + "name": "Freespire", + "subCategories": [] + }, + { + "id": 101210, + "name": "Fuduntu", + "subCategories": [] + }, + { + "id": 102046, + "name": "FuguIta", + "subCategories": [] + }, + { + "id": 102290, + "name": "FuryBSD", + "subCategories": [] + }, + { + "id": 102256, + "name": "G4L", + "subCategories": [] + }, + { + "id": 102235, + "name": "GALPon MiniNo", + "subCategories": [] + }, + { + "id": 101212, + "name": "GParted", + "subCategories": [] + }, + { + "id": 102214, + "name": "GeckoLinux", + "subCategories": [] + }, + { + "id": 100203, + "name": "GeeXboX", + "subCategories": [] + }, + { + "id": 100206, + "name": "Gentoo", + "subCategories": [] + }, + { + "id": 102048, + "name": "GhostBSD", + "subCategories": [] + }, + { + "id": 100210, + "name": "Gnewsense", + "subCategories": [] + }, + { + "id": 100216, + "name": "GoboLinux", + "subCategories": [] + }, + { + "id": 100220, + "name": "Greenie Linux", + "subCategories": [] + }, + { + "id": 100221, + "name": "Grml", + "subCategories": [] + }, + { + "id": 102280, + "name": "GroovyArcade", + "subCategories": [] + }, + { + "id": 102228, + "name": "Guix System", + "subCategories": [] + }, + { + "id": 102049, + "name": "Haiku", + "subCategories": [] + }, + { + "id": 102050, + "name": "Handy", + "subCategories": [] + }, + { + "id": 102276, + "name": "Hanthana Linux", + "subCategories": [] + }, + { + "id": 102186, + "name": "HardenedBSD", + "subCategories": [] + }, + { + "id": 102200, + "name": "Heads", + "subCategories": [] + }, + { + "id": 102293, + "name": "Hiren's BootCD+PE", + "subCategories": [] + }, + { + "id": 102166, + "name": "Huayra Linux", + "subCategories": [] + }, + { + "id": 102244, + "name": "Hyperbola GNU", + "subCategories": [] + }, + { + "id": 100252, + "name": "IPFire", + "subCategories": [] + }, + { + "id": 102181, + "name": "KDE Neon", + "subCategories": [] + }, + { + "id": 102052, + "name": "KaOS", + "subCategories": [] + }, + { + "id": 102294, + "name": "Kaisen Linux", + "subCategories": [] + }, + { + "id": 102051, + "name": "Kali", + "subCategories": [] + }, + { + "id": 102053, + "name": "Karoshi", + "subCategories": [] + }, + { + "id": 100277, + "name": "Knoppix", + "subCategories": [] + }, + { + "id": 102054, + "name": "Kolibri", + "subCategories": [] + }, + { + "id": 100287, + "name": "Kubuntu", + "subCategories": [] + }, + { + "id": 102057, + "name": "Kwort Linux", + "subCategories": [] + }, + { + "id": 102058, + "name": "Kxstudio", + "subCategories": [] + }, + { + "id": 102068, + "name": "LXLE", + "subCategories": [] + }, + { + "id": 102258, + "name": "Lakka", + "subCategories": [] + }, + { + "id": 102176, + "name": "LibreELEC", + "subCategories": [] + }, + { + "id": 102061, + "name": "LinHES", + "subCategories": [] + }, + { + "id": 102242, + "name": "Linspire", + "subCategories": [] + }, + { + "id": 100311, + "name": "Linux", + "subCategories": [] + }, + { + "id": 102239, + "name": "Linux Kodachi", + "subCategories": [] + }, + { + "id": 101234, + "name": "Linux Lite", + "subCategories": [] + }, + { + "id": 100347, + "name": "Linux Mint", + "subCategories": [] + }, + { + "id": 100304, + "name": "LinuxConsole", + "subCategories": [] + }, + { + "id": 102063, + "name": "Linuxfx", + "subCategories": [] + }, + { + "id": 102064, + "name": "Liquid Lemur", + "subCategories": [] + }, + { + "id": 102191, + "name": "Live Raizo", + "subCategories": [] + }, + { + "id": 100316, + "name": "Livecd", + "subCategories": [] + }, + { + "id": 101218, + "name": "Lubuntu", + "subCategories": [] + }, + { + "id": 102163, + "name": "MOFO Linux", + "subCategories": [] + }, + { + "id": 102177, + "name": "MX Linux", + "subCategories": [] + }, + { + "id": 102296, + "name": "Mabox Linux", + "subCategories": [] + }, + { + "id": 101228, + "name": "Mageia", + "subCategories": [] + }, + { + "id": 102071, + "name": "MakuluLinux", + "subCategories": [] + }, + { + "id": 102073, + "name": "Manjaro", + "subCategories": [] + }, + { + "id": 100343, + "name": "MidnightBSD", + "subCategories": [] + }, + { + "id": 102075, + "name": "Minino", + "subCategories": [] + }, + { + "id": 102076, + "name": "Minix", + "subCategories": [] + }, + { + "id": 102241, + "name": "MorpheusArch Linux", + "subCategories": [] + }, + { + "id": 100369, + "name": "Musix", + "subCategories": [] + }, + { + "id": 100373, + "name": "Mythbuntu", + "subCategories": [] + }, + { + "id": 102078, + "name": "NAS4Free", + "subCategories": [] + }, + { + "id": 102217, + "name": "Namib GNU/Linux", + "subCategories": [] + }, + { + "id": 102079, + "name": "Neptune", + "subCategories": [] + }, + { + "id": 100380, + "name": "NetBSD", + "subCategories": [] + }, + { + "id": 102080, + "name": "Nethserver", + "subCategories": [] + }, + { + "id": 102081, + "name": "Netrunner", + "subCategories": [] + }, + { + "id": 102190, + "name": "Nitrux", + "subCategories": [] + }, + { + "id": 102084, + "name": "NixOS", + "subCategories": [] + }, + { + "id": 102254, + "name": "NomadBSD", + "subCategories": [] + }, + { + "id": 100391, + "name": "Nst", + "subCategories": [] + }, + { + "id": 102086, + "name": "Nutyx", + "subCategories": [] + }, + { + "id": 102203, + "name": "OPNsense", + "subCategories": [] + }, + { + "id": 102234, + "name": "OSGeoLive", + "subCategories": [] + }, + { + "id": 102096, + "name": "OSMC", + "subCategories": [] + }, + { + "id": 102240, + "name": "Obarun", + "subCategories": [] + }, + { + "id": 102211, + "name": "Omarine", + "subCategories": [] + }, + { + "id": 100401, + "name": "OpenBSD", + "subCategories": [] + }, + { + "id": 102090, + "name": "OpenIndiana", + "subCategories": [] + }, + { + "id": 102091, + "name": "OpenMandriva Lx", + "subCategories": [] + }, + { + "id": 102089, + "name": "Openelec", + "subCategories": [] + }, + { + "id": 102092, + "name": "Openmediavault", + "subCategories": [] + }, + { + "id": 102093, + "name": "Opensuse", + "subCategories": [] + }, + { + "id": 101237, + "name": "Oracle Linux", + "subCategories": [] + }, + { + "id": 100004, + "name": "Other distros", + "subCategories": [] + }, + { + "id": 102218, + "name": "OviOS Linux", + "subCategories": [] + }, + { + "id": 100423, + "name": "PCLinuxOS", + "subCategories": [] + }, + { + "id": 102233, + "name": "PI MusicBox", + "subCategories": [] + }, + { + "id": 100416, + "name": "Paldo", + "subCategories": [] + }, + { + "id": 102098, + "name": "Parabola GNU/Linux", + "subCategories": [] + }, + { + "id": 100419, + "name": "Pardus", + "subCategories": [] + }, + { + "id": 102162, + "name": "Parrot", + "subCategories": [] + }, + { + "id": 100420, + "name": "Parsix", + "subCategories": [] + }, + { + "id": 100421, + "name": "Partedmagic", + "subCategories": [] + }, + { + "id": 100422, + "name": "Pcbsd", + "subCategories": [] + }, + { + "id": 100429, + "name": "Pentoo", + "subCategories": [] + }, + { + "id": 100430, + "name": "Peppermint", + "subCategories": [] + }, + { + "id": 100432, + "name": "Pfsense", + "subCategories": [] + }, + { + "id": 102101, + "name": "Pinguy OS", + "subCategories": [] + }, + { + "id": 102102, + "name": "Pisi Linux", + "subCategories": [] + }, + { + "id": 100441, + "name": "Plamo Linux", + "subCategories": [] + }, + { + "id": 102103, + "name": "Plop", + "subCategories": [] + }, + { + "id": 101235, + "name": "Point Linux", + "subCategories": [] + }, + { + "id": 102207, + "name": "Pop!_OS", + "subCategories": [] + }, + { + "id": 102106, + "name": "Porteus", + "subCategories": [] + }, + { + "id": 102107, + "name": "Porteus Kiosk", + "subCategories": [] + }, + { + "id": 102209, + "name": "PrimTux", + "subCategories": [] + }, + { + "id": 102247, + "name": "Project Trident", + "subCategories": [] + }, + { + "id": 101230, + "name": "Proxmox", + "subCategories": [] + }, + { + "id": 100452, + "name": "Puppy", + "subCategories": [] + }, + { + "id": 102221, + "name": "PureOS", + "subCategories": [] + }, + { + "id": 102108, + "name": "Q4OS", + "subCategories": [] + }, + { + "id": 102109, + "name": "Qubes", + "subCategories": [] + }, + { + "id": 100455, + "name": "Quirky", + "subCategories": [] + }, + { + "id": 102180, + "name": "RancherOS", + "subCategories": [] + }, + { + "id": 102201, + "name": "Raspberry Digital", + "subCategories": [] + }, + { + "id": 102199, + "name": "Raspberry Slideshow", + "subCategories": [] + }, + { + "id": 102110, + "name": "Raspbian", + "subCategories": [] + }, + { + "id": 102111, + "name": "Reactos", + "subCategories": [] + }, + { + "id": 102232, + "name": "RebeccaBlackOS", + "subCategories": [] + }, + { + "id": 102112, + "name": "Rebellin", + "subCategories": [] + }, + { + "id": 102236, + "name": "Reborn OS", + "subCategories": [] + }, + { + "id": 102274, + "name": "Redcore Linux", + "subCategories": [] + }, + { + "id": 100458, + "name": "Redhat", + "subCategories": [] + }, + { + "id": 102202, + "name": "Refracta", + "subCategories": [] + }, + { + "id": 102291, + "name": "RegataOS", + "subCategories": [] + }, + { + "id": 102114, + "name": "Rescatux", + "subCategories": [] + }, + { + "id": 102270, + "name": "Resilient Linux", + "subCategories": [] + }, + { + "id": 102116, + "name": "Robolinux", + "subCategories": [] + }, + { + "id": 101223, + "name": "Rosa", + "subCategories": [] + }, + { + "id": 102117, + "name": "Runtu", + "subCategories": [] + }, + { + "id": 102119, + "name": "SELKS", + "subCategories": [] + }, + { + "id": 100014, + "name": "Sabayon", + "subCategories": [] + }, + { + "id": 102118, + "name": "Salentos", + "subCategories": [] + }, + { + "id": 100477, + "name": "Salix", + "subCategories": [] + }, + { + "id": 100482, + "name": "Scientific Linux", + "subCategories": [] + }, + { + "id": 102250, + "name": "Septor", + "subCategories": [] + }, + { + "id": 100489, + "name": "SharkLinux", + "subCategories": [] + }, + { + "id": 102121, + "name": "Siduction", + "subCategories": [] + }, + { + "id": 102122, + "name": "Simplicity Linux", + "subCategories": [] + }, + { + "id": 102164, + "name": "Skywave Linux", + "subCategories": [] + }, + { + "id": 100493, + "name": "Slackel", + "subCategories": [] + }, + { + "id": 100495, + "name": "Slackware", + "subCategories": [] + }, + { + "id": 100499, + "name": "Slax", + "subCategories": [] + }, + { + "id": 102124, + "name": "SmartOS", + "subCategories": [] + }, + { + "id": 102125, + "name": "Smeserver", + "subCategories": [] + }, + { + "id": 100505, + "name": "Smoothwall Express", + "subCategories": [] + }, + { + "id": 100506, + "name": "Sms", + "subCategories": [] + }, + { + "id": 102126, + "name": "Solus", + "subCategories": [] + }, + { + "id": 102127, + "name": "Solydxk", + "subCategories": [] + }, + { + "id": 101236, + "name": "SparkyLinux", + "subCategories": [] + }, + { + "id": 102297, + "name": "SpiralLinux", + "subCategories": [] + }, + { + "id": 102225, + "name": "Star", + "subCategories": [] + }, + { + "id": 102132, + "name": "Steamos", + "subCategories": [] + }, + { + "id": 102174, + "name": "Super Grub2 Disk", + "subCategories": [] + }, + { + "id": 102134, + "name": "SuperX", + "subCategories": [] + }, + { + "id": 102189, + "name": "SwagArch", + "subCategories": [] + }, + { + "id": 102267, + "name": "Symphony OS", + "subCategories": [] + }, + { + "id": 102295, + "name": "SysLinuxOS", + "subCategories": [] + }, + { + "id": 102135, + "name": "SystemRescueCD", + "subCategories": [] + }, + { + "id": 102188, + "name": "TENS", + "subCategories": [] + }, + { + "id": 102136, + "name": "Tails", + "subCategories": [] + }, + { + "id": 102170, + "name": "TalkingArch", + "subCategories": [] + }, + { + "id": 100542, + "name": "Thinstation", + "subCategories": [] + }, + { + "id": 102279, + "name": "TinyPaw Linux", + "subCategories": [] + }, + { + "id": 102138, + "name": "Tinycore", + "subCategories": [] + }, + { + "id": 100550, + "name": "Trisquel", + "subCategories": [] + }, + { + "id": 102195, + "name": "TrueOS", + "subCategories": [] + }, + { + "id": 102271, + "name": "Tsurugi Linux", + "subCategories": [] + }, + { + "id": 102140, + "name": "TurnKey", + "subCategories": [] + }, + { + "id": 102206, + "name": "UBOS", + "subCategories": [] + }, + { + "id": 100563, + "name": "Ubuntu", + "subCategories": [] + }, + { + "id": 102198, + "name": "Ubuntu Budgie", + "subCategories": [] + }, + { + "id": 102284, + "name": "Ubuntu Cinnamon Rem", + "subCategories": [] + }, + { + "id": 102249, + "name": "Ubuntu DesktopPack", + "subCategories": [] + }, + { + "id": 102143, + "name": "Ubuntu Gnome", + "subCategories": [] + }, + { + "id": 102144, + "name": "Ubuntu Kylin", + "subCategories": [] + }, + { + "id": 102145, + "name": "Ubuntu Mate", + "subCategories": [] + }, + { + "id": 100564, + "name": "Ubuntu Studio", + "subCategories": [] + }, + { + "id": 102277, + "name": "Ultimate Boot CD", + "subCategories": [] + }, + { + "id": 100569, + "name": "Ultimate Edition", + "subCategories": [] + }, + { + "id": 102222, + "name": "Univention Corporate", + "subCategories": [] + }, + { + "id": 102149, + "name": "Untangle NG Firewall", + "subCategories": [] + }, + { + "id": 102173, + "name": "Uruk GNU/Linux", + "subCategories": [] + }, + { + "id": 100579, + "name": "Vector", + "subCategories": [] + }, + { + "id": 102282, + "name": "Virage", + "subCategories": [] + }, + { + "id": 102151, + "name": "Void Linux", + "subCategories": [] + }, + { + "id": 102152, + "name": "Volumio", + "subCategories": [] + }, + { + "id": 102153, + "name": "Voyager Live", + "subCategories": [] + }, + { + "id": 102154, + "name": "VyOS", + "subCategories": [] + }, + { + "id": 102281, + "name": "Web Security Dojo", + "subCategories": [] + }, + { + "id": 102246, + "name": "Whonix", + "subCategories": [] + }, + { + "id": 102155, + "name": "Wifislax", + "subCategories": [] + }, + { + "id": 102229, + "name": "XiVa Studio", + "subCategories": [] + }, + { + "id": 102251, + "name": "XigmaNAS", + "subCategories": [] + }, + { + "id": 100607, + "name": "Xubuntu", + "subCategories": [] + }, + { + "id": 100612, + "name": "Zen", + "subCategories": [] + }, + { + "id": 102159, + "name": "Zentyal", + "subCategories": [] + }, + { + "id": 100346, + "name": "Zenwalk Linux", + "subCategories": [] + }, + { + "id": 102160, + "name": "Zeroshell", + "subCategories": [] + }, + { + "id": 102193, + "name": "Zevenet", + "subCategories": [] + }, + { + "id": 101233, + "name": "Zorin", + "subCategories": [] + }, + { + "id": 100531, + "name": "Super Grub2 Disk", + "subCategories": [] + } + ], + "supportsRawSearch": false, + "searchParams": [ + "q", + "q" + ], + "tvSearchParams": [], + "movieSearchParams": [], + "musicSearchParams": [], + "bookSearchParams": [] + }, + "priority": 25, + "added": "2023-06-03T19:02:04Z", + "sortName": "linuxtracker", + "name": "LinuxTracker", + "fields": [ + { + "order": 0, + "name": "definitionFile", + "value": "linuxtracker", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 1, + "name": "baseUrl", + "label": "Base Url", + "helpText": "Select which baseurl Prowlarr will use for requests to the site", + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "getUrls" + }, + { + "order": 2, + "name": "baseSettings.queryLimit", + "label": "Query Limit", + "helpText": "The number of queries within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 3, + "name": "baseSettings.grabLimit", + "label": "Grab Limit", + "helpText": "The number of grabs within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 4, + "name": "torrentBaseSettings.appMinimumSeeders", + "label": "Apps Minimum Seeders", + "helpText": "Minimum seeders required by the Applications for the indexer to grab, empty is Sync profile's default", + "type": "number", + "advanced": true + }, + { + "order": 5, + "name": "torrentBaseSettings.seedRatio", + "label": "Seed Ratio", + "helpText": "The ratio a torrent should reach before stopping, empty is app's default", + "type": "textbox", + "advanced": true + }, + { + "order": 6, + "name": "torrentBaseSettings.seedTime", + "label": "Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 7, + "name": "torrentBaseSettings.packSeedTime", + "label": "Pack Seed Time", + "unit": "minutes", + "helpText": "The time a pack (season or discography) torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 0, + "name": "sort", + "label": "Sort requested from site", + "value": 1, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "title", + "order": 0 + }, + { + "value": 1, + "name": "created", + "order": 0 + }, + { + "value": 2, + "name": "size", + "order": 0 + }, + { + "value": 3, + "name": "seeders", + "order": 0 + } + ] + }, + { + "order": 1, + "name": "type", + "label": "Order requested from site", + "value": 1, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "asc", + "order": 0 + }, + { + "value": 1, + "name": "desc", + "order": 0 + } + ] + } + ], + "implementationName": "Cardigann", + "implementation": "Cardigann", + "configContract": "CardigannSettings", + "infoLink": "https://wiki.servarr.com/prowlarr/supported-indexers#linuxtracker", + "tags": [], + "id": 32 + }, + { + "indexerUrls": [ + "https://www.torrentmac.net/" + ], + "legacyUrls": [], + "definitionName": "mactorrentsdownload", + "description": "Mac Torrents Download is a Public tracker for Mac software", + "language": "en-US", + "encoding": "Unicode (UTF-8)", + "enable": true, + "redirect": false, + "supportsRss": true, + "supportsSearch": true, + "supportsRedirect": false, + "supportsPagination": false, + "appProfileId": 1, + "protocol": "torrent", + "privacy": "public", + "capabilities": { + "limitsMax": 100, + "limitsDefault": 100, + "categories": [ + { + "id": 4000, + "name": "PC", + "subCategories": [ + { + "id": 4030, + "name": "PC/Mac", + "subCategories": [] + }, + { + "id": 4050, + "name": "PC/Games", + "subCategories": [] + } + ] + }, + { + "id": 165524, + "name": "Apps", + "subCategories": [] + }, + { + "id": 110205, + "name": "Games", + "subCategories": [] + }, + { + "id": 0, + "name": "Other", + "subCategories": [] + }, + { + "id": 107168, + "name": "Design Assets", + "subCategories": [] + }, + { + "id": 134700, + "name": "Uncategorized", + "subCategories": [] + } + ], + "supportsRawSearch": false, + "searchParams": [ + "q", + "q" + ], + "tvSearchParams": [], + "movieSearchParams": [], + "musicSearchParams": [], + "bookSearchParams": [] + }, + "priority": 25, + "added": "2023-06-03T19:02:01Z", + "sortName": "mac torrents download", + "name": "Mac Torrents Download", + "fields": [ + { + "order": 0, + "name": "definitionFile", + "value": "mactorrentsdownload", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 1, + "name": "baseUrl", + "label": "Base Url", + "helpText": "Select which baseurl Prowlarr will use for requests to the site", + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "getUrls" + }, + { + "order": 2, + "name": "baseSettings.queryLimit", + "label": "Query Limit", + "helpText": "The number of queries within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 3, + "name": "baseSettings.grabLimit", + "label": "Grab Limit", + "helpText": "The number of grabs within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 4, + "name": "torrentBaseSettings.appMinimumSeeders", + "label": "Apps Minimum Seeders", + "helpText": "Minimum seeders required by the Applications for the indexer to grab, empty is Sync profile's default", + "type": "number", + "advanced": true + }, + { + "order": 5, + "name": "torrentBaseSettings.seedRatio", + "label": "Seed Ratio", + "helpText": "The ratio a torrent should reach before stopping, empty is app's default", + "type": "textbox", + "advanced": true + }, + { + "order": 6, + "name": "torrentBaseSettings.seedTime", + "label": "Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 7, + "name": "torrentBaseSettings.packSeedTime", + "label": "Pack Seed Time", + "unit": "minutes", + "helpText": "The time a pack (season or discography) torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 0, + "name": "flaresolverr", + "label": "FlareSolverr", + "value": "This site may use Cloudflare DDoS Protection, therefore Prowlarr requires FlareSolverr to access it.", + "type": "info", + "advanced": false + } + ], + "implementationName": "Cardigann", + "implementation": "Cardigann", + "configContract": "CardigannSettings", + "infoLink": "https://wiki.servarr.com/prowlarr/supported-indexers#mactorrentsdownload", + "tags": [1], + "id": 31 + }, + { + "indexerUrls": [ + "http://www.mixtapetorrent.com/" + ], + "legacyUrls": [], + "definitionName": "mixtapetorrent", + "description": "MixtapeTorrent is a Public Music site for MixTapes", + "language": "en-US", + "encoding": "Unicode (UTF-8)", + "enable": true, + "redirect": false, + "supportsRss": true, + "supportsSearch": true, + "supportsRedirect": false, + "supportsPagination": false, + "appProfileId": 1, + "protocol": "torrent", + "privacy": "public", + "capabilities": { + "limitsMax": 100, + "limitsDefault": 100, + "categories": [ + { + "id": 3000, + "name": "Audio", + "subCategories": [] + } + ], + "supportsRawSearch": false, + "searchParams": [ + "q", + "q" + ], + "tvSearchParams": [], + "movieSearchParams": [], + "musicSearchParams": [ + "q" + ], + "bookSearchParams": [] + }, + "priority": 25, + "added": "2023-06-03T19:02:08Z", + "sortName": "mixtapetorrent", + "name": "MixtapeTorrent", + "fields": [ + { + "order": 0, + "name": "definitionFile", + "value": "mixtapetorrent", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 1, + "name": "baseUrl", + "label": "Base Url", + "helpText": "Select which baseurl Prowlarr will use for requests to the site", + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "getUrls" + }, + { + "order": 2, + "name": "baseSettings.queryLimit", + "label": "Query Limit", + "helpText": "The number of queries within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 3, + "name": "baseSettings.grabLimit", + "label": "Grab Limit", + "helpText": "The number of grabs within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 4, + "name": "torrentBaseSettings.appMinimumSeeders", + "label": "Apps Minimum Seeders", + "helpText": "Minimum seeders required by the Applications for the indexer to grab, empty is Sync profile's default", + "type": "number", + "advanced": true + }, + { + "order": 5, + "name": "torrentBaseSettings.seedRatio", + "label": "Seed Ratio", + "helpText": "The ratio a torrent should reach before stopping, empty is app's default", + "type": "textbox", + "advanced": true + }, + { + "order": 6, + "name": "torrentBaseSettings.seedTime", + "label": "Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 7, + "name": "torrentBaseSettings.packSeedTime", + "label": "Pack Seed Time", + "unit": "minutes", + "helpText": "The time a pack (season or discography) torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + } + ], + "implementationName": "Cardigann", + "implementation": "Cardigann", + "configContract": "CardigannSettings", + "infoLink": "https://wiki.servarr.com/prowlarr/supported-indexers#mixtapetorrent", + "tags": [], + "id": 33 + }, + { + "indexerUrls": [ + "https://myporn.club/" + ], + "legacyUrls": [], + "definitionName": "mypornclub", + "description": "MyPornClub is a Public Torrent Tracker for 3X", + "language": "en-US", + "encoding": "Unicode (UTF-8)", + "enable": true, + "redirect": false, + "supportsRss": true, + "supportsSearch": true, + "supportsRedirect": false, + "supportsPagination": false, + "appProfileId": 1, + "protocol": "torrent", + "privacy": "public", + "capabilities": { + "limitsMax": 100, + "limitsDefault": 100, + "categories": [ + { + "id": 6000, + "name": "XXX", + "subCategories": [] + }, + { + "id": 126537, + "name": "XXX", + "subCategories": [] + } + ], + "supportsRawSearch": false, + "searchParams": [ + "q", + "q" + ], + "tvSearchParams": [], + "movieSearchParams": [], + "musicSearchParams": [], + "bookSearchParams": [] + }, + "priority": 25, + "added": "2023-06-03T19:02:44Z", + "sortName": "mypornclub", + "name": "MyPornClub", + "fields": [ + { + "order": 0, + "name": "definitionFile", + "value": "mypornclub", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 1, + "name": "baseUrl", + "label": "Base Url", + "helpText": "Select which baseurl Prowlarr will use for requests to the site", + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "getUrls" + }, + { + "order": 2, + "name": "baseSettings.queryLimit", + "label": "Query Limit", + "helpText": "The number of queries within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 3, + "name": "baseSettings.grabLimit", + "label": "Grab Limit", + "helpText": "The number of grabs within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 4, + "name": "torrentBaseSettings.appMinimumSeeders", + "label": "Apps Minimum Seeders", + "helpText": "Minimum seeders required by the Applications for the indexer to grab, empty is Sync profile's default", + "type": "number", + "advanced": true + }, + { + "order": 5, + "name": "torrentBaseSettings.seedRatio", + "label": "Seed Ratio", + "helpText": "The ratio a torrent should reach before stopping, empty is app's default", + "type": "textbox", + "advanced": true + }, + { + "order": 6, + "name": "torrentBaseSettings.seedTime", + "label": "Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 7, + "name": "torrentBaseSettings.packSeedTime", + "label": "Pack Seed Time", + "unit": "minutes", + "helpText": "The time a pack (season or discography) torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 0, + "name": "flaresolverr", + "label": "FlareSolverr", + "value": "This site may use Cloudflare DDoS Protection, therefore Prowlarr requires FlareSolverr to access it.", + "type": "info", + "advanced": false + } + ], + "implementationName": "Cardigann", + "implementation": "Cardigann", + "configContract": "CardigannSettings", + "infoLink": "https://wiki.servarr.com/prowlarr/supported-indexers#mypornclub", + "tags": [1], + "id": 34 + }, + { + "indexerUrls": [ + "https://nextjav.com/" + ], + "legacyUrls": [], + "definitionName": "nextjav", + "description": "NextJAV is a Public tracker for Asian 3X (JAV)", + "language": "en-US", + "encoding": "Unicode (UTF-8)", + "enable": true, + "redirect": false, + "supportsRss": true, + "supportsSearch": true, + "supportsRedirect": false, + "supportsPagination": false, + "appProfileId": 1, + "protocol": "torrent", + "privacy": "public", + "capabilities": { + "limitsMax": 100, + "limitsDefault": 100, + "categories": [ + { + "id": 6000, + "name": "XXX", + "subCategories": [] + } + ], + "supportsRawSearch": false, + "searchParams": [ + "q", + "q" + ], + "tvSearchParams": [], + "movieSearchParams": [], + "musicSearchParams": [], + "bookSearchParams": [] + }, + "priority": 25, + "added": "2023-06-03T19:02:52Z", + "sortName": "nextjav", + "name": "NextJAV", + "fields": [ + { + "order": 0, + "name": "definitionFile", + "value": "nextjav", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 1, + "name": "baseUrl", + "label": "Base Url", + "helpText": "Select which baseurl Prowlarr will use for requests to the site", + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "getUrls" + }, + { + "order": 2, + "name": "baseSettings.queryLimit", + "label": "Query Limit", + "helpText": "The number of queries within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 3, + "name": "baseSettings.grabLimit", + "label": "Grab Limit", + "helpText": "The number of grabs within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 4, + "name": "torrentBaseSettings.appMinimumSeeders", + "label": "Apps Minimum Seeders", + "helpText": "Minimum seeders required by the Applications for the indexer to grab, empty is Sync profile's default", + "type": "number", + "advanced": true + }, + { + "order": 5, + "name": "torrentBaseSettings.seedRatio", + "label": "Seed Ratio", + "helpText": "The ratio a torrent should reach before stopping, empty is app's default", + "type": "textbox", + "advanced": true + }, + { + "order": 6, + "name": "torrentBaseSettings.seedTime", + "label": "Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 7, + "name": "torrentBaseSettings.packSeedTime", + "label": "Pack Seed Time", + "unit": "minutes", + "helpText": "The time a pack (season or discography) torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + } + ], + "implementationName": "Cardigann", + "implementation": "Cardigann", + "configContract": "CardigannSettings", + "infoLink": "https://wiki.servarr.com/prowlarr/supported-indexers#nextjav", + "tags": [], + "id": 35 + }, + { + "indexerUrls": [ + "https://nipponsei.minglong.org/" + ], + "legacyUrls": [], + "definitionName": "nipponsei", + "description": "Nipponsei is a Public site for MUSIC fresh from Japan", + "language": "en-US", + "encoding": "Unicode (UTF-8)", + "enable": true, + "redirect": false, + "supportsRss": true, + "supportsSearch": true, + "supportsRedirect": false, + "supportsPagination": false, + "appProfileId": 1, + "protocol": "torrent", + "privacy": "public", + "capabilities": { + "limitsMax": 100, + "limitsDefault": 100, + "categories": [ + { + "id": 3000, + "name": "Audio", + "subCategories": [] + }, + { + "id": 100314, + "name": "Music", + "subCategories": [] + } + ], + "supportsRawSearch": false, + "searchParams": [ + "q", + "q" + ], + "tvSearchParams": [], + "movieSearchParams": [], + "musicSearchParams": [ + "q" + ], + "bookSearchParams": [] + }, + "priority": 25, + "added": "2023-06-03T19:02:57Z", + "sortName": "nipponsei", + "name": "Nipponsei", + "fields": [ + { + "order": 0, + "name": "definitionFile", + "value": "nipponsei", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 1, + "name": "baseUrl", + "label": "Base Url", + "helpText": "Select which baseurl Prowlarr will use for requests to the site", + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "getUrls" + }, + { + "order": 2, + "name": "baseSettings.queryLimit", + "label": "Query Limit", + "helpText": "The number of queries within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 3, + "name": "baseSettings.grabLimit", + "label": "Grab Limit", + "helpText": "The number of grabs within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 4, + "name": "torrentBaseSettings.appMinimumSeeders", + "label": "Apps Minimum Seeders", + "helpText": "Minimum seeders required by the Applications for the indexer to grab, empty is Sync profile's default", + "type": "number", + "advanced": true + }, + { + "order": 5, + "name": "torrentBaseSettings.seedRatio", + "label": "Seed Ratio", + "helpText": "The ratio a torrent should reach before stopping, empty is app's default", + "type": "textbox", + "advanced": true + }, + { + "order": 6, + "name": "torrentBaseSettings.seedTime", + "label": "Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 7, + "name": "torrentBaseSettings.packSeedTime", + "label": "Pack Seed Time", + "unit": "minutes", + "helpText": "The time a pack (season or discography) torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + } + ], + "implementationName": "Cardigann", + "implementation": "Cardigann", + "configContract": "CardigannSettings", + "infoLink": "https://wiki.servarr.com/prowlarr/supported-indexers#nipponsei", + "tags": [], + "id": 36 + }, + { + "indexerUrls": [ + "https://nyaa.si/", + "https://nyaa.iss.ink/", + "https://nyaa.mrunblock.bond/", + "https://nyaa.unblockninja.com/", + "https://nyaa.nocensor.cloud/", + "https://nyaa.land/" + ], + "legacyUrls": [ + "https://nyaa.black-mirror.xyz/", + "https://nyaa.unblocked.casa/", + "https://nyaa.proxyportal.fun/", + "https://nyaa.uk-unblock.xyz/", + "https://nyaa.ind-unblock.xyz/", + "https://nyaa.unblocked.bar/", + "https://nyaa.proxyportal.pw/", + "https://nyaa.uk-unblock.pro/", + "https://nyaa.root.yt/", + "https://nyaa.lol/", + "https://nyaa.nocensor.world/", + "https://nyaa.nocensor.lol/", + "https://nyaa.nocensor.art/", + "https://nyaa.mrunblock.guru/", + "https://nyaa.mrunblock.life/", + "https://nyaa.nocensor.click/" + ], + "definitionName": "nyaasi", + "description": "Nyaa is a Public torrent site focused on Eastern Asian media including anime, manga, literature and music", + "language": "en-US", + "encoding": "Unicode (UTF-8)", + "enable": true, + "redirect": false, + "supportsRss": true, + "supportsSearch": true, + "supportsRedirect": false, + "supportsPagination": false, + "appProfileId": 1, + "protocol": "torrent", + "privacy": "public", + "capabilities": { + "limitsMax": 100, + "limitsDefault": 100, + "categories": [ + { + "id": 5000, + "name": "TV", + "subCategories": [ + { + "id": 5070, + "name": "TV/Anime", + "subCategories": [] + } + ] + }, + { + "id": 140679, + "name": "Anime", + "subCategories": [] + }, + { + "id": 125996, + "name": "Anime music videos", + "subCategories": [] + }, + { + "id": 127720, + "name": "English subtitled animes", + "subCategories": [] + }, + { + "id": 131088, + "name": "Non-english subtitled animes", + "subCategories": [] + }, + { + "id": 134634, + "name": "Raw animes", + "subCategories": [] + }, + { + "id": 2000, + "name": "Movies", + "subCategories": [ + { + "id": 2020, + "name": "Movies/Other", + "subCategories": [] + } + ] + }, + { + "id": 140679, + "name": "Anime", + "subCategories": [] + }, + { + "id": 125996, + "name": "Anime music videos", + "subCategories": [] + }, + { + "id": 127720, + "name": "English subtitled animes", + "subCategories": [] + }, + { + "id": 131088, + "name": "Non-english subtitled animes", + "subCategories": [] + }, + { + "id": 134634, + "name": "Raw animes", + "subCategories": [] + }, + { + "id": 3000, + "name": "Audio", + "subCategories": [] + }, + { + "id": 145414, + "name": "Audio", + "subCategories": [] + }, + { + "id": 118685, + "name": "Lossless audio", + "subCategories": [] + }, + { + "id": 155285, + "name": "Lossy audio", + "subCategories": [] + }, + { + "id": 7000, + "name": "Books", + "subCategories": [] + }, + { + "id": 100920, + "name": "Literature", + "subCategories": [] + }, + { + "id": 156719, + "name": "Literature english translated", + "subCategories": [] + }, + { + "id": 111160, + "name": "Literature non-english translated", + "subCategories": [] + }, + { + "id": 117084, + "name": "Raw literature", + "subCategories": [] + }, + { + "id": 129933, + "name": "Live Action", + "subCategories": [] + }, + { + "id": 101340, + "name": "Live Action - English", + "subCategories": [] + }, + { + "id": 150332, + "name": "Live Action - Idol/PV", + "subCategories": [] + }, + { + "id": 150562, + "name": "Live Action - Non-English", + "subCategories": [] + }, + { + "id": 150452, + "name": "Live Action - Raw", + "subCategories": [] + }, + { + "id": 0, + "name": "Other", + "subCategories": [] + }, + { + "id": 134686, + "name": "Pictures", + "subCategories": [] + }, + { + "id": 131360, + "name": "Pictures - Graphics", + "subCategories": [] + }, + { + "id": 109829, + "name": "Pictures - Photos", + "subCategories": [] + }, + { + "id": 4000, + "name": "PC", + "subCategories": [ + { + "id": 4020, + "name": "PC/ISO", + "subCategories": [] + }, + { + "id": 4050, + "name": "PC/Games", + "subCategories": [] + } + ] + }, + { + "id": 117318, + "name": "Software", + "subCategories": [] + }, + { + "id": 130420, + "name": "Applications", + "subCategories": [] + }, + { + "id": 103955, + "name": "Games", + "subCategories": [] + } + ], + "supportsRawSearch": true, + "searchParams": [ + "q", + "q" + ], + "tvSearchParams": [ + "q", + "season", + "ep" + ], + "movieSearchParams": [ + "q" + ], + "musicSearchParams": [], + "bookSearchParams": [ + "q" + ] + }, + "priority": 25, + "added": "2023-06-03T19:03:13Z", + "sortName": "nyaa si", + "name": "Nyaa.si", + "fields": [ + { + "order": 0, + "name": "definitionFile", + "value": "nyaasi", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 1, + "name": "baseUrl", + "label": "Base Url", + "helpText": "Select which baseurl Prowlarr will use for requests to the site", + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "getUrls" + }, + { + "order": 2, + "name": "baseSettings.queryLimit", + "label": "Query Limit", + "helpText": "The number of queries within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 3, + "name": "baseSettings.grabLimit", + "label": "Grab Limit", + "helpText": "The number of grabs within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 4, + "name": "torrentBaseSettings.appMinimumSeeders", + "label": "Apps Minimum Seeders", + "helpText": "Minimum seeders required by the Applications for the indexer to grab, empty is Sync profile's default", + "type": "number", + "advanced": true + }, + { + "order": 5, + "name": "torrentBaseSettings.seedRatio", + "label": "Seed Ratio", + "helpText": "The ratio a torrent should reach before stopping, empty is app's default", + "type": "textbox", + "advanced": true + }, + { + "order": 6, + "name": "torrentBaseSettings.seedTime", + "label": "Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 7, + "name": "torrentBaseSettings.packSeedTime", + "label": "Pack Seed Time", + "unit": "minutes", + "helpText": "The time a pack (season or discography) torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 0, + "name": "prefer_magnet_links", + "label": "Prefer Magnet Links", + "value": true, + "type": "checkbox", + "advanced": false + }, + { + "order": 1, + "name": "sonarr_compatibility", + "label": "Improve Sonarr compatibility by trying to add Season information into Release Titles", + "value": true, + "type": "checkbox", + "advanced": false + }, + { + "order": 2, + "name": "radarr_compatibility", + "label": "Improve Radarr compatibility by removing year information from keywords and adding it to Release Titles", + "value": true, + "type": "checkbox", + "advanced": false + }, + { + "order": 3, + "name": "filter-id", + "label": "Filter", + "value": 0, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "No filter", + "order": 0 + }, + { + "value": 1, + "name": "No remakes", + "order": 0 + }, + { + "value": 2, + "name": "Trusted only", + "order": 0 + } + ] + }, + { + "order": 4, + "name": "cat-id", + "label": "Category", + "value": 0, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "All categories", + "order": 0 + }, + { + "value": 1, + "name": "Anime", + "order": 0 + }, + { + "value": 2, + "name": "Anime - Anime Music Video", + "order": 0 + }, + { + "value": 3, + "name": "Anime - English-translated", + "order": 0 + }, + { + "value": 4, + "name": "Anime - Non-English-translated", + "order": 0 + }, + { + "value": 5, + "name": "Anime - Raw", + "order": 0 + }, + { + "value": 6, + "name": "Audio", + "order": 0 + }, + { + "value": 7, + "name": "Audio - Lossless", + "order": 0 + }, + { + "value": 8, + "name": "Audio - Lossy", + "order": 0 + }, + { + "value": 9, + "name": "Literature", + "order": 0 + }, + { + "value": 10, + "name": "Literature - English-translated", + "order": 0 + }, + { + "value": 11, + "name": "Literature - Non-English-translated", + "order": 0 + }, + { + "value": 12, + "name": "Literature - Lossy", + "order": 0 + }, + { + "value": 13, + "name": "Live Action", + "order": 0 + }, + { + "value": 14, + "name": "Live Action - English", + "order": 0 + }, + { + "value": 15, + "name": "Live Action - Idol/PV", + "order": 0 + }, + { + "value": 16, + "name": "Live Action - Non-English", + "order": 0 + }, + { + "value": 17, + "name": "Live Action - Raw", + "order": 0 + }, + { + "value": 18, + "name": "Pictures", + "order": 0 + }, + { + "value": 19, + "name": "Pictures - Graphics", + "order": 0 + }, + { + "value": 20, + "name": "Pictures - Photos", + "order": 0 + }, + { + "value": 21, + "name": "Software", + "order": 0 + }, + { + "value": 22, + "name": "Software - Applications", + "order": 0 + }, + { + "value": 23, + "name": "Software - Games", + "order": 0 + } + ] + }, + { + "order": 5, + "name": "sort", + "label": "Sort requested from site", + "value": 0, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "created", + "order": 0 + }, + { + "value": 1, + "name": "seeders", + "order": 0 + }, + { + "value": 2, + "name": "size", + "order": 0 + } + ] + }, + { + "order": 6, + "name": "type", + "label": "Order requested from site", + "value": 1, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "asc", + "order": 0 + }, + { + "value": 1, + "name": "desc", + "order": 0 + } + ] + } + ], + "implementationName": "Cardigann", + "implementation": "Cardigann", + "configContract": "CardigannSettings", + "infoLink": "https://wiki.servarr.com/prowlarr/supported-indexers#nyaasi", + "tags": [], + "id": 37 + }, + { + "indexerUrls": [ + "https://onejav.com/" + ], + "legacyUrls": [], + "definitionName": "onejav", + "description": "OneJAV is a Public tracker for Asian 3X (JAV)", + "language": "en-US", + "encoding": "Unicode (UTF-8)", + "enable": true, + "redirect": false, + "supportsRss": true, + "supportsSearch": true, + "supportsRedirect": false, + "supportsPagination": false, + "appProfileId": 1, + "protocol": "torrent", + "privacy": "public", + "capabilities": { + "limitsMax": 100, + "limitsDefault": 100, + "categories": [ + { + "id": 6000, + "name": "XXX", + "subCategories": [] + } + ], + "supportsRawSearch": false, + "searchParams": [ + "q", + "q" + ], + "tvSearchParams": [], + "movieSearchParams": [], + "musicSearchParams": [], + "bookSearchParams": [] + }, + "priority": 25, + "added": "2023-06-03T19:03:19Z", + "sortName": "onejav", + "name": "OneJAV", + "fields": [ + { + "order": 0, + "name": "definitionFile", + "value": "onejav", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 1, + "name": "baseUrl", + "label": "Base Url", + "helpText": "Select which baseurl Prowlarr will use for requests to the site", + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "getUrls" + }, + { + "order": 2, + "name": "baseSettings.queryLimit", + "label": "Query Limit", + "helpText": "The number of queries within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 3, + "name": "baseSettings.grabLimit", + "label": "Grab Limit", + "helpText": "The number of grabs within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 4, + "name": "torrentBaseSettings.appMinimumSeeders", + "label": "Apps Minimum Seeders", + "helpText": "Minimum seeders required by the Applications for the indexer to grab, empty is Sync profile's default", + "type": "number", + "advanced": true + }, + { + "order": 5, + "name": "torrentBaseSettings.seedRatio", + "label": "Seed Ratio", + "helpText": "The ratio a torrent should reach before stopping, empty is app's default", + "type": "textbox", + "advanced": true + }, + { + "order": 6, + "name": "torrentBaseSettings.seedTime", + "label": "Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 7, + "name": "torrentBaseSettings.packSeedTime", + "label": "Pack Seed Time", + "unit": "minutes", + "helpText": "The time a pack (season or discography) torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 0, + "name": "flaresolverr-onejav", + "label": "FlareSolverr", + "value": "This site may use Cloudflare DDoS Protection, therefore Prowlarr requires FlareSolverr to access it.

If you have issues downloading, perform a keyword search (e.g. video) so FlareSolverr can grab new cookies.", + "type": "info", + "advanced": false + } + ], + "implementationName": "Cardigann", + "implementation": "Cardigann", + "configContract": "CardigannSettings", + "infoLink": "https://wiki.servarr.com/prowlarr/supported-indexers#onejav", + "tags": [1], + "id": 38 + }, + { + "indexerUrls": [ + "https://pornoslab.com/" + ], + "legacyUrls": [], + "definitionName": "pornoslab", + "description": "PornosLab is a Public Tracker for 3X", + "language": "en-US", + "encoding": "Unicode (UTF-8)", + "enable": true, + "redirect": false, + "supportsRss": true, + "supportsSearch": true, + "supportsRedirect": false, + "supportsPagination": false, + "appProfileId": 1, + "protocol": "torrent", + "privacy": "public", + "capabilities": { + "limitsMax": 100, + "limitsDefault": 100, + "categories": [ + { + "id": 6000, + "name": "XXX", + "subCategories": [] + }, + { + "id": 100001, + "name": "Main", + "subCategories": [] + } + ], + "supportsRawSearch": false, + "searchParams": [ + "q", + "q" + ], + "tvSearchParams": [], + "movieSearchParams": [], + "musicSearchParams": [], + "bookSearchParams": [] + }, + "priority": 25, + "added": "2023-06-03T19:03:24Z", + "sortName": "pornoslab", + "name": "PornosLab", + "fields": [ + { + "order": 0, + "name": "definitionFile", + "value": "pornoslab", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 1, + "name": "baseUrl", + "label": "Base Url", + "helpText": "Select which baseurl Prowlarr will use for requests to the site", + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "getUrls" + }, + { + "order": 2, + "name": "baseSettings.queryLimit", + "label": "Query Limit", + "helpText": "The number of queries within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 3, + "name": "baseSettings.grabLimit", + "label": "Grab Limit", + "helpText": "The number of grabs within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 4, + "name": "torrentBaseSettings.appMinimumSeeders", + "label": "Apps Minimum Seeders", + "helpText": "Minimum seeders required by the Applications for the indexer to grab, empty is Sync profile's default", + "type": "number", + "advanced": true + }, + { + "order": 5, + "name": "torrentBaseSettings.seedRatio", + "label": "Seed Ratio", + "helpText": "The ratio a torrent should reach before stopping, empty is app's default", + "type": "textbox", + "advanced": true + }, + { + "order": 6, + "name": "torrentBaseSettings.seedTime", + "label": "Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 7, + "name": "torrentBaseSettings.packSeedTime", + "label": "Pack Seed Time", + "unit": "minutes", + "helpText": "The time a pack (season or discography) torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 0, + "name": "sort", + "label": "Sort requested from site", + "value": 0, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "created", + "order": 0 + }, + { + "value": 1, + "name": "title", + "order": 0 + } + ] + }, + { + "order": 1, + "name": "type", + "label": "Order requested from site", + "value": 1, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "asc", + "order": 0 + }, + { + "value": 1, + "name": "desc", + "order": 0 + } + ] + } + ], + "implementationName": "Cardigann", + "implementation": "Cardigann", + "configContract": "CardigannSettings", + "infoLink": "https://wiki.servarr.com/prowlarr/supported-indexers#pornoslab", + "tags": [], + "id": 40 + }, + { + "indexerUrls": [ + "https://www.pornotorrent.eu/" + ], + "legacyUrls": [], + "definitionName": "pornotorrent", + "description": "PornoTorrent is a SPANISH Public Torrent Tracker for 3X", + "language": "en-US", + "encoding": "Unicode (UTF-8)", + "enable": true, + "redirect": false, + "supportsRss": true, + "supportsSearch": true, + "supportsRedirect": false, + "supportsPagination": false, + "appProfileId": 1, + "protocol": "torrent", + "privacy": "public", + "capabilities": { + "limitsMax": 100, + "limitsDefault": 100, + "categories": [ + { + "id": 6000, + "name": "XXX", + "subCategories": [] + }, + { + "id": 126537, + "name": "XXX", + "subCategories": [] + } + ], + "supportsRawSearch": false, + "searchParams": [ + "q", + "q" + ], + "tvSearchParams": [], + "movieSearchParams": [], + "musicSearchParams": [], + "bookSearchParams": [] + }, + "priority": 25, + "added": "2023-06-03T19:03:21Z", + "sortName": "pornotorrent", + "name": "PornoTorrent", + "fields": [ + { + "order": 0, + "name": "definitionFile", + "value": "pornotorrent", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 1, + "name": "baseUrl", + "label": "Base Url", + "helpText": "Select which baseurl Prowlarr will use for requests to the site", + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "getUrls" + }, + { + "order": 2, + "name": "baseSettings.queryLimit", + "label": "Query Limit", + "helpText": "The number of queries within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 3, + "name": "baseSettings.grabLimit", + "label": "Grab Limit", + "helpText": "The number of grabs within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 4, + "name": "torrentBaseSettings.appMinimumSeeders", + "label": "Apps Minimum Seeders", + "helpText": "Minimum seeders required by the Applications for the indexer to grab, empty is Sync profile's default", + "type": "number", + "advanced": true + }, + { + "order": 5, + "name": "torrentBaseSettings.seedRatio", + "label": "Seed Ratio", + "helpText": "The ratio a torrent should reach before stopping, empty is app's default", + "type": "textbox", + "advanced": true + }, + { + "order": 6, + "name": "torrentBaseSettings.seedTime", + "label": "Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 7, + "name": "torrentBaseSettings.packSeedTime", + "label": "Pack Seed Time", + "unit": "minutes", + "helpText": "The time a pack (season or discography) torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + } + ], + "implementationName": "Cardigann", + "implementation": "Cardigann", + "configContract": "CardigannSettings", + "infoLink": "https://wiki.servarr.com/prowlarr/supported-indexers#pornotorrent", + "tags": [], + "id": 39 + }, + { + "indexerUrls": [ + "https://www.sexy-pics.us/" + ], + "legacyUrls": [], + "definitionName": "sexypics", + "description": "Sexy-Pics is a Public Magnet Links site for 3X MP4", + "language": "en-US", + "encoding": "Unicode (UTF-8)", + "enable": true, + "redirect": false, + "supportsRss": true, + "supportsSearch": true, + "supportsRedirect": false, + "supportsPagination": false, + "appProfileId": 1, + "protocol": "torrent", + "privacy": "public", + "capabilities": { + "limitsMax": 100, + "limitsDefault": 100, + "categories": [ + { + "id": 6000, + "name": "XXX", + "subCategories": [] + } + ], + "supportsRawSearch": false, + "searchParams": [ + "q", + "q" + ], + "tvSearchParams": [], + "movieSearchParams": [], + "musicSearchParams": [], + "bookSearchParams": [] + }, + "priority": 25, + "added": "2023-06-03T19:03:31Z", + "sortName": "sexy pics", + "name": "Sexy-Pics", + "fields": [ + { + "order": 0, + "name": "definitionFile", + "value": "sexypics", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 1, + "name": "baseUrl", + "label": "Base Url", + "helpText": "Select which baseurl Prowlarr will use for requests to the site", + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "getUrls" + }, + { + "order": 2, + "name": "baseSettings.queryLimit", + "label": "Query Limit", + "helpText": "The number of queries within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 3, + "name": "baseSettings.grabLimit", + "label": "Grab Limit", + "helpText": "The number of grabs within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 4, + "name": "torrentBaseSettings.appMinimumSeeders", + "label": "Apps Minimum Seeders", + "helpText": "Minimum seeders required by the Applications for the indexer to grab, empty is Sync profile's default", + "type": "number", + "advanced": true + }, + { + "order": 5, + "name": "torrentBaseSettings.seedRatio", + "label": "Seed Ratio", + "helpText": "The ratio a torrent should reach before stopping, empty is app's default", + "type": "textbox", + "advanced": true + }, + { + "order": 6, + "name": "torrentBaseSettings.seedTime", + "label": "Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 7, + "name": "torrentBaseSettings.packSeedTime", + "label": "Pack Seed Time", + "unit": "minutes", + "helpText": "The time a pack (season or discography) torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 0, + "name": "sort", + "label": "Sort requested from site", + "value": 0, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "created", + "order": 0 + }, + { + "value": 1, + "name": "seeders", + "order": 0 + }, + { + "value": 2, + "name": "size", + "order": 0 + } + ] + }, + { + "order": 1, + "name": "type", + "label": "Order requested from site", + "value": 1, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "asc", + "order": 0 + }, + { + "value": 1, + "name": "desc", + "order": 0 + } + ] + } + ], + "implementationName": "Cardigann", + "implementation": "Cardigann", + "configContract": "CardigannSettings", + "infoLink": "https://wiki.servarr.com/prowlarr/supported-indexers#sexypics", + "tags": [], + "id": 41 + }, + { + "indexerUrls": [ + "https://www.shanaproject.com/" + ], + "legacyUrls": [], + "definitionName": "shanaproject", + "description": "Shana Project is a Public torrent site for ANIME", + "language": "en-US", + "encoding": "Unicode (UTF-8)", + "enable": true, + "redirect": false, + "supportsRss": true, + "supportsSearch": true, + "supportsRedirect": false, + "supportsPagination": false, + "appProfileId": 1, + "protocol": "torrent", + "privacy": "public", + "capabilities": { + "limitsMax": 100, + "limitsDefault": 100, + "categories": [ + { + "id": 5000, + "name": "TV", + "subCategories": [ + { + "id": 5070, + "name": "TV/Anime", + "subCategories": [] + } + ] + }, + { + "id": 146065, + "name": "Anime", + "subCategories": [] + } + ], + "supportsRawSearch": false, + "searchParams": [ + "q", + "q" + ], + "tvSearchParams": [ + "q", + "season", + "ep" + ], + "movieSearchParams": [], + "musicSearchParams": [], + "bookSearchParams": [] + }, + "priority": 25, + "added": "2023-06-03T19:03:43Z", + "sortName": "shana project", + "name": "Shana Project", + "fields": [ + { + "order": 0, + "name": "definitionFile", + "value": "shanaproject", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 1, + "name": "baseUrl", + "label": "Base Url", + "helpText": "Select which baseurl Prowlarr will use for requests to the site", + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "getUrls" + }, + { + "order": 2, + "name": "baseSettings.queryLimit", + "label": "Query Limit", + "helpText": "The number of queries within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 3, + "name": "baseSettings.grabLimit", + "label": "Grab Limit", + "helpText": "The number of grabs within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 4, + "name": "torrentBaseSettings.appMinimumSeeders", + "label": "Apps Minimum Seeders", + "helpText": "Minimum seeders required by the Applications for the indexer to grab, empty is Sync profile's default", + "type": "number", + "advanced": true + }, + { + "order": 5, + "name": "torrentBaseSettings.seedRatio", + "label": "Seed Ratio", + "helpText": "The ratio a torrent should reach before stopping, empty is app's default", + "type": "textbox", + "advanced": true + }, + { + "order": 6, + "name": "torrentBaseSettings.seedTime", + "label": "Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 7, + "name": "torrentBaseSettings.packSeedTime", + "label": "Pack Seed Time", + "unit": "minutes", + "helpText": "The time a pack (season or discography) torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 0, + "name": "sort", + "label": "Sort requested from site", + "value": 0, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "created", + "order": 0 + }, + { + "value": 1, + "name": "episode", + "order": 0 + }, + { + "value": 2, + "name": "size", + "order": 0 + }, + { + "value": 3, + "name": "title", + "order": 0 + } + ] + }, + { + "order": 1, + "name": "type", + "label": "Order requested from site", + "value": 1, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "asc", + "order": 0 + }, + { + "value": 1, + "name": "desc", + "order": 0 + } + ] + }, + { + "order": 2, + "name": "info", + "label": "Searching", + "value": "This site only supports searching for Titles. Do not add a season or episode number, or a quality to your query.", + "type": "info", + "advanced": false + } + ], + "implementationName": "Cardigann", + "implementation": "Cardigann", + "configContract": "CardigannSettings", + "infoLink": "https://wiki.servarr.com/prowlarr/supported-indexers#shanaproject", + "tags": [], + "id": 42 + }, + { + "indexerUrls": [ + "https://showrss.info/" + ], + "legacyUrls": [], + "definitionName": "showrss", + "description": "showRSS is a service that allows you to keep track of your favorite TV shows", + "language": "en-US", + "encoding": "Unicode (UTF-8)", + "enable": true, + "redirect": false, + "supportsRss": true, + "supportsSearch": true, + "supportsRedirect": false, + "supportsPagination": false, + "appProfileId": 1, + "protocol": "torrent", + "privacy": "public", + "capabilities": { + "limitsMax": 100, + "limitsDefault": 100, + "categories": [ + { + "id": 5000, + "name": "TV", + "subCategories": [ + { + "id": 5030, + "name": "TV/SD", + "subCategories": [] + }, + { + "id": 5040, + "name": "TV/HD", + "subCategories": [] + } + ] + } + ], + "supportsRawSearch": false, + "searchParams": [ + "q", + "q" + ], + "tvSearchParams": [ + "q", + "season", + "ep" + ], + "movieSearchParams": [], + "musicSearchParams": [], + "bookSearchParams": [] + }, + "priority": 25, + "added": "2023-06-03T18:54:12Z", + "sortName": "showrss", + "name": "showRSS", + "fields": [ + { + "order": 0, + "name": "definitionFile", + "value": "showrss", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 1, + "name": "baseUrl", + "label": "Base Url", + "helpText": "Select which baseurl Prowlarr will use for requests to the site", + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "getUrls" + }, + { + "order": 2, + "name": "baseSettings.queryLimit", + "label": "Query Limit", + "helpText": "The number of queries within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 3, + "name": "baseSettings.grabLimit", + "label": "Grab Limit", + "helpText": "The number of grabs within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 4, + "name": "torrentBaseSettings.appMinimumSeeders", + "label": "Apps Minimum Seeders", + "helpText": "Minimum seeders required by the Applications for the indexer to grab, empty is Sync profile's default", + "type": "number", + "advanced": true + }, + { + "order": 5, + "name": "torrentBaseSettings.seedRatio", + "label": "Seed Ratio", + "helpText": "The ratio a torrent should reach before stopping, empty is app's default", + "type": "textbox", + "advanced": true + }, + { + "order": 6, + "name": "torrentBaseSettings.seedTime", + "label": "Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 7, + "name": "torrentBaseSettings.packSeedTime", + "label": "Pack Seed Time", + "unit": "minutes", + "helpText": "The time a pack (season or discography) torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + } + ], + "implementationName": "Cardigann", + "implementation": "Cardigann", + "configContract": "CardigannSettings", + "infoLink": "https://wiki.servarr.com/prowlarr/supported-indexers#showrss", + "tags": [], + "id": 3 + }, + { + "indexerUrls": [ + "https://solidtorrents.to/", + "https://solidtorrents.nocensor.cloud/" + ], + "legacyUrls": [ + "https://solidtorrents.net/", + "https://solidtorrents.nocensor.click/", + "https://solidtorrents.eu/" + ], + "definitionName": "solidtorrents", + "description": "Solid Torrents is a Public torrent meta-search engine", + "language": "en-US", + "encoding": "Unicode (UTF-8)", + "enable": true, + "redirect": false, + "supportsRss": true, + "supportsSearch": true, + "supportsRedirect": false, + "supportsPagination": false, + "appProfileId": 1, + "protocol": "torrent", + "privacy": "public", + "capabilities": { + "limitsMax": 100, + "limitsDefault": 100, + "categories": [ + { + "id": 3000, + "name": "Audio", + "subCategories": [ + { + "id": 3030, + "name": "Audio/Audiobook", + "subCategories": [] + }, + { + "id": 3010, + "name": "Audio/MP3", + "subCategories": [] + }, + { + "id": 3040, + "name": "Audio/Lossless", + "subCategories": [] + }, + { + "id": 3020, + "name": "Audio/Video", + "subCategories": [] + } + ] + }, + { + "id": 7000, + "name": "Books", + "subCategories": [ + { + "id": 7020, + "name": "Books/EBook", + "subCategories": [] + }, + { + "id": 7030, + "name": "Books/Comics", + "subCategories": [] + } + ] + }, + { + "id": 4000, + "name": "PC", + "subCategories": [ + { + "id": 4050, + "name": "PC/Games", + "subCategories": [] + }, + { + "id": 4070, + "name": "PC/Mobile-Android", + "subCategories": [] + }, + { + "id": 4020, + "name": "PC/ISO", + "subCategories": [] + }, + { + "id": 4010, + "name": "PC/0day", + "subCategories": [] + } + ] + }, + { + "id": 2000, + "name": "Movies", + "subCategories": [] + }, + { + "id": 0, + "name": "Other", + "subCategories": [ + { + "id": 10, + "name": "Other/Misc", + "subCategories": [] + } + ] + }, + { + "id": 5000, + "name": "TV", + "subCategories": [] + }, + { + "id": 6000, + "name": "XXX", + "subCategories": [] + } + ], + "supportsRawSearch": false, + "searchParams": [ + "q", + "q" + ], + "tvSearchParams": [ + "q", + "season", + "ep" + ], + "movieSearchParams": [ + "q" + ], + "musicSearchParams": [ + "q" + ], + "bookSearchParams": [ + "q" + ] + }, + "priority": 25, + "added": "2023-06-03T19:03:49Z", + "sortName": "solid torrents", + "name": "Solid Torrents", + "fields": [ + { + "order": 0, + "name": "definitionFile", + "value": "solidtorrents", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 1, + "name": "baseUrl", + "label": "Base Url", + "helpText": "Select which baseurl Prowlarr will use for requests to the site", + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "getUrls" + }, + { + "order": 2, + "name": "baseSettings.queryLimit", + "label": "Query Limit", + "helpText": "The number of queries within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 3, + "name": "baseSettings.grabLimit", + "label": "Grab Limit", + "helpText": "The number of grabs within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 4, + "name": "torrentBaseSettings.appMinimumSeeders", + "label": "Apps Minimum Seeders", + "helpText": "Minimum seeders required by the Applications for the indexer to grab, empty is Sync profile's default", + "type": "number", + "advanced": true + }, + { + "order": 5, + "name": "torrentBaseSettings.seedRatio", + "label": "Seed Ratio", + "helpText": "The ratio a torrent should reach before stopping, empty is app's default", + "type": "textbox", + "advanced": true + }, + { + "order": 6, + "name": "torrentBaseSettings.seedTime", + "label": "Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 7, + "name": "torrentBaseSettings.packSeedTime", + "label": "Pack Seed Time", + "unit": "minutes", + "helpText": "The time a pack (season or discography) torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 0, + "name": "sort", + "label": "Sort requested from site", + "value": 0, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "created", + "order": 0 + }, + { + "value": 1, + "name": "seeders", + "order": 0 + }, + { + "value": 2, + "name": "size", + "order": 0 + } + ] + }, + { + "order": 1, + "name": "type", + "label": "Order requested from site", + "value": 1, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "asc", + "order": 0 + }, + { + "value": 1, + "name": "desc", + "order": 0 + } + ] + } + ], + "implementationName": "Cardigann", + "implementation": "Cardigann", + "configContract": "CardigannSettings", + "infoLink": "https://wiki.servarr.com/prowlarr/supported-indexers#solidtorrents", + "tags": [], + "id": 43 + }, + { + "indexerUrls": [ + "https://subsplease.org/", + "https://subsplease.nocensor.space/" + ], + "legacyUrls": [], + "definitionName": "SubsPlease", + "description": "SubsPlease - A better HorribleSubs/Erai replacement", + "language": "en-US", + "encoding": "Unicode (UTF-8)", + "enable": true, + "redirect": false, + "supportsRss": true, + "supportsSearch": true, + "supportsRedirect": false, + "supportsPagination": false, + "appProfileId": 1, + "protocol": "torrent", + "privacy": "public", + "capabilities": { + "limitsMax": 100, + "limitsDefault": 100, + "categories": [ + { + "id": 5000, + "name": "TV", + "subCategories": [ + { + "id": 5070, + "name": "TV/Anime", + "subCategories": [] + } + ] + }, + { + "id": 100001, + "name": "Anime", + "subCategories": [] + } + ], + "supportsRawSearch": false, + "searchParams": [ + "q" + ], + "tvSearchParams": [ + "q", + "season", + "ep" + ], + "movieSearchParams": [], + "musicSearchParams": [], + "bookSearchParams": [] + }, + "priority": 25, + "added": "2023-06-03T19:03:53Z", + "sortName": "subsplease", + "name": "SubsPlease", + "fields": [ + { + "order": 0, + "name": "baseUrl", + "label": "Base Url", + "helpText": "Select which baseurl Prowlarr will use for requests to the site", + "value": "https://subsplease.org/", + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "getUrls" + }, + { + "order": 1, + "name": "baseSettings.queryLimit", + "label": "Query Limit", + "helpText": "The number of queries within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 2, + "name": "baseSettings.grabLimit", + "label": "Grab Limit", + "helpText": "The number of grabs within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 3, + "name": "torrentBaseSettings.appMinimumSeeders", + "label": "Apps Minimum Seeders", + "helpText": "Minimum seeders required by the Applications for the indexer to grab, empty is Sync profile's default", + "type": "number", + "advanced": true + }, + { + "order": 4, + "name": "torrentBaseSettings.seedRatio", + "label": "Seed Ratio", + "helpText": "The ratio a torrent should reach before stopping, empty is app's default", + "type": "textbox", + "advanced": true + }, + { + "order": 5, + "name": "torrentBaseSettings.seedTime", + "label": "Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 6, + "name": "torrentBaseSettings.packSeedTime", + "label": "Pack Seed Time", + "unit": "minutes", + "helpText": "The time a pack (season or discography) torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + } + ], + "implementationName": "SubsPlease", + "implementation": "SubsPlease", + "configContract": "NoAuthTorrentBaseSettings", + "infoLink": "https://wiki.servarr.com/prowlarr/supported-indexers#subsplease", + "tags": [], + "id": 44 + }, + { + "indexerUrls": [ + "https://sukebei.nyaa.si/" + ], + "legacyUrls": [ + "https://sukebei.nyaa.lol/" + ], + "definitionName": "sukebeinyaasi", + "description": "sukebei.nyaa is a Public torrent site focused on adult Eastern Asian media including anime, manga, games and JAV", + "language": "en-US", + "encoding": "Unicode (UTF-8)", + "enable": true, + "redirect": false, + "supportsRss": true, + "supportsSearch": true, + "supportsRedirect": false, + "supportsPagination": false, + "appProfileId": 1, + "protocol": "torrent", + "privacy": "public", + "capabilities": { + "limitsMax": 100, + "limitsDefault": 100, + "categories": [ + { + "id": 6000, + "name": "XXX", + "subCategories": [] + }, + { + "id": 140679, + "name": "Adult Art", + "subCategories": [] + }, + { + "id": 125996, + "name": "Adult Anime", + "subCategories": [] + }, + { + "id": 127720, + "name": "Doujinshi", + "subCategories": [] + }, + { + "id": 131088, + "name": "Adult Games", + "subCategories": [] + }, + { + "id": 134634, + "name": "Adult Manga", + "subCategories": [] + }, + { + "id": 165165, + "name": "Adult Pictures", + "subCategories": [] + }, + { + "id": 145414, + "name": "Adult Real Life", + "subCategories": [] + }, + { + "id": 118685, + "name": "Adult Photobooks and Pictures", + "subCategories": [] + }, + { + "id": 155285, + "name": "Adult Videos", + "subCategories": [] + } + ], + "supportsRawSearch": false, + "searchParams": [ + "q", + "q" + ], + "tvSearchParams": [], + "movieSearchParams": [], + "musicSearchParams": [], + "bookSearchParams": [] + }, + "priority": 25, + "added": "2023-06-03T18:54:02Z", + "sortName": "sukebei nyaa si", + "name": "sukebei.nyaa.si", + "fields": [ + { + "order": 0, + "name": "definitionFile", + "value": "sukebeinyaasi", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 1, + "name": "baseUrl", + "label": "Base Url", + "helpText": "Select which baseurl Prowlarr will use for requests to the site", + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "getUrls" + }, + { + "order": 2, + "name": "baseSettings.queryLimit", + "label": "Query Limit", + "helpText": "The number of queries within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 3, + "name": "baseSettings.grabLimit", + "label": "Grab Limit", + "helpText": "The number of grabs within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 4, + "name": "torrentBaseSettings.appMinimumSeeders", + "label": "Apps Minimum Seeders", + "helpText": "Minimum seeders required by the Applications for the indexer to grab, empty is Sync profile's default", + "type": "number", + "advanced": true + }, + { + "order": 5, + "name": "torrentBaseSettings.seedRatio", + "label": "Seed Ratio", + "helpText": "The ratio a torrent should reach before stopping, empty is app's default", + "type": "textbox", + "advanced": true + }, + { + "order": 6, + "name": "torrentBaseSettings.seedTime", + "label": "Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 7, + "name": "torrentBaseSettings.packSeedTime", + "label": "Pack Seed Time", + "unit": "minutes", + "helpText": "The time a pack (season or discography) torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 0, + "name": "cat-id", + "label": "Category", + "value": 0, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "All categories", + "order": 0 + }, + { + "value": 1, + "name": "Art", + "order": 0 + }, + { + "value": 2, + "name": "Art - Anime", + "order": 0 + }, + { + "value": 3, + "name": "Art - Doujinshi", + "order": 0 + }, + { + "value": 4, + "name": "Art - Games", + "order": 0 + }, + { + "value": 5, + "name": "Art - Manga", + "order": 0 + }, + { + "value": 6, + "name": "Art - Pictures", + "order": 0 + }, + { + "value": 7, + "name": "Real Life", + "order": 0 + }, + { + "value": 8, + "name": "Real Life - Photobooks and Pictures", + "order": 0 + }, + { + "value": 9, + "name": "Real Life - Videos", + "order": 0 + } + ] + }, + { + "order": 1, + "name": "sort", + "label": "Sort requested from site", + "value": 0, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "created", + "order": 0 + }, + { + "value": 1, + "name": "seeders", + "order": 0 + }, + { + "value": 2, + "name": "size", + "order": 0 + } + ] + }, + { + "order": 2, + "name": "type", + "label": "Order requested from site", + "value": 1, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "asc", + "order": 0 + }, + { + "value": 1, + "name": "desc", + "order": 0 + } + ] + } + ], + "implementationName": "Cardigann", + "implementation": "Cardigann", + "configContract": "CardigannSettings", + "infoLink": "https://wiki.servarr.com/prowlarr/supported-indexers#sukebeinyaasi", + "tags": [], + "id": 2 + }, + { + "indexerUrls": [ + "https://thepiratebay.org/", + "https://tpb25.ukpass.co/", + "https://tpb.skynetcloud.site/", + "https://piratenow.xyz/", + "https://pirate-proxy.ink/", + "https://mirrorbay.top/", + "https://proxifiedpiratebay.org/", + "https://unlockedpiratebay.com/", + "https://tpb.one/", + "https://piratebayorg.net/", + "https://tpbproxy.click/", + "https://thepiratebay0.org/", + "https://thepiratebay10.org/", + "https://pirateproxy.live/", + "https://thehiddenbay.com/", + "https://thepiratebay.zone/", + "https://tpb.party/", + "https://piratebayproxy.live/", + "https://piratebay.live/", + "https://piratebay.party/", + "https://thepiratebay.party/", + "https://ukpiratebay.org/" + ], + "legacyUrls": [ + "https://tpb19.ukpass.co/", + "https://pirateproxy.tube/", + "https://www.tpbay.win/", + "https://baypirated.site/", + "https://piratesbaycc.com/", + "https://pirateproxy.ltda/", + "https://tpb22.ukpass.co/", + "https://tpb.sadzawka.tk/", + "https://tpb.cnp.cx/", + "https://pirate-proxy.app/", + "https://thepb.cyou/", + "https://5mins.eu/", + "https://piratebayproxy.buzz/", + "https://wearethereal.ninja/", + "https://bibtor.com/", + "https://gigatorrent.xyz/", + "https://thepirateb.xyz/", + "https://ezrasstuff.com/", + "https://piratebayo3klnzokct3wt5yyxb2vpebbuyjl7m623iaxmqhsd52coid.onion.ws/", + "https://piratebayo3klnzokct3wt5yyxb2vpebbuyjl7m623iaxmqhsd52coid.onion.pet/", + "https://tpb24.ukpass.co/", + "https://thepiratebay.d4.re/", + "https://pirate-proxy.page/", + "https://5mins.shop/", + "https://tpb.surf/", + "https://tpb.monster/", + "https://thepiratebay.host/", + "https://piratetoday.xyz/", + "https://tpb.wtf/", + "https://piratebayo3klnzokct3wt5yyxb2vpebbuyjl7m623iaxmqhsd52coid.onion.ly/", + "https://piratebayo3klnzokct3wt5yyxb2vpebbuyjl7m623iaxmqhsd52coid.tor2web.to/", + "https://piratebayo3klnzokct3wt5yyxb2vpebbuyjl7m623iaxmqhsd52coid.tor2web.link/" + ], + "definitionName": "thepiratebay", + "description": "The Pirate Bay (TPB) is the galaxy’s most resilient Public BitTorrent site", + "language": "en-US", + "encoding": "Unicode (UTF-8)", + "enable": true, + "redirect": false, + "supportsRss": true, + "supportsSearch": true, + "supportsRedirect": false, + "supportsPagination": false, + "appProfileId": 1, + "protocol": "torrent", + "privacy": "public", + "capabilities": { + "limitsMax": 100, + "limitsDefault": 100, + "categories": [ + { + "id": 3000, + "name": "Audio", + "subCategories": [ + { + "id": 3030, + "name": "Audio/Audiobook", + "subCategories": [] + }, + { + "id": 3040, + "name": "Audio/Lossless", + "subCategories": [] + }, + { + "id": 3050, + "name": "Audio/Other", + "subCategories": [] + }, + { + "id": 3020, + "name": "Audio/Video", + "subCategories": [] + } + ] + }, + { + "id": 100100, + "name": "Audio", + "subCategories": [] + }, + { + "id": 100101, + "name": "Music", + "subCategories": [] + }, + { + "id": 100102, + "name": "Audio Books", + "subCategories": [] + }, + { + "id": 100103, + "name": "Sound Clips", + "subCategories": [] + }, + { + "id": 100104, + "name": "FLAC", + "subCategories": [] + }, + { + "id": 100199, + "name": "Audio Other", + "subCategories": [] + }, + { + "id": 2000, + "name": "Movies", + "subCategories": [ + { + "id": 2020, + "name": "Movies/Other", + "subCategories": [] + }, + { + "id": 2040, + "name": "Movies/HD", + "subCategories": [] + }, + { + "id": 2060, + "name": "Movies/3D", + "subCategories": [] + }, + { + "id": 2030, + "name": "Movies/SD", + "subCategories": [] + }, + { + "id": 2045, + "name": "Movies/UHD", + "subCategories": [] + } + ] + }, + { + "id": 100200, + "name": "Video", + "subCategories": [] + }, + { + "id": 100201, + "name": "Movies", + "subCategories": [] + }, + { + "id": 100202, + "name": "Movies DVDR", + "subCategories": [] + }, + { + "id": 100203, + "name": "Music Videos", + "subCategories": [] + }, + { + "id": 100204, + "name": "Movie Clips", + "subCategories": [] + }, + { + "id": 5000, + "name": "TV", + "subCategories": [ + { + "id": 5050, + "name": "TV/Other", + "subCategories": [] + }, + { + "id": 5040, + "name": "TV/HD", + "subCategories": [] + }, + { + "id": 5045, + "name": "TV/UHD", + "subCategories": [] + } + ] + }, + { + "id": 100205, + "name": "TV Shows", + "subCategories": [] + }, + { + "id": 100206, + "name": "Handheld", + "subCategories": [] + }, + { + "id": 100207, + "name": "HD - Movies", + "subCategories": [] + }, + { + "id": 100208, + "name": "HD - TV shows", + "subCategories": [] + }, + { + "id": 100209, + "name": "3D", + "subCategories": [] + }, + { + "id": 100210, + "name": "CAM/TS", + "subCategories": [] + }, + { + "id": 100211, + "name": "UHD/4k - Movies", + "subCategories": [] + }, + { + "id": 100212, + "name": "UHD/4k - TV shows", + "subCategories": [] + }, + { + "id": 100299, + "name": "Video Other", + "subCategories": [] + }, + { + "id": 4000, + "name": "PC", + "subCategories": [ + { + "id": 4030, + "name": "PC/Mac", + "subCategories": [] + }, + { + "id": 4040, + "name": "PC/Mobile-Other", + "subCategories": [] + }, + { + "id": 4060, + "name": "PC/Mobile-iOS", + "subCategories": [] + }, + { + "id": 4070, + "name": "PC/Mobile-Android", + "subCategories": [] + }, + { + "id": 4050, + "name": "PC/Games", + "subCategories": [] + } + ] + }, + { + "id": 100300, + "name": "Applications", + "subCategories": [] + }, + { + "id": 100301, + "name": "Windows", + "subCategories": [] + }, + { + "id": 100302, + "name": "Mac", + "subCategories": [] + }, + { + "id": 100303, + "name": "UNIX", + "subCategories": [] + }, + { + "id": 100304, + "name": "Handheld", + "subCategories": [] + }, + { + "id": 100305, + "name": "IOS (iPad/iPhone)", + "subCategories": [] + }, + { + "id": 100306, + "name": "Android", + "subCategories": [] + }, + { + "id": 100399, + "name": "Other OS", + "subCategories": [] + }, + { + "id": 1000, + "name": "Console", + "subCategories": [ + { + "id": 1180, + "name": "Console/PS4", + "subCategories": [] + }, + { + "id": 1040, + "name": "Console/XBox", + "subCategories": [] + }, + { + "id": 1030, + "name": "Console/Wii", + "subCategories": [] + }, + { + "id": 1090, + "name": "Console/Other", + "subCategories": [] + } + ] + }, + { + "id": 100400, + "name": "Games", + "subCategories": [] + }, + { + "id": 100401, + "name": "PC", + "subCategories": [] + }, + { + "id": 100402, + "name": "Mac", + "subCategories": [] + }, + { + "id": 100403, + "name": "PSx", + "subCategories": [] + }, + { + "id": 100404, + "name": "XBOX360", + "subCategories": [] + }, + { + "id": 100405, + "name": "Wii", + "subCategories": [] + }, + { + "id": 100406, + "name": "Handheld", + "subCategories": [] + }, + { + "id": 100407, + "name": "IOS (iPad/iPhone)", + "subCategories": [] + }, + { + "id": 100408, + "name": "Android", + "subCategories": [] + }, + { + "id": 100499, + "name": "Games Other", + "subCategories": [] + }, + { + "id": 6000, + "name": "XXX", + "subCategories": [ + { + "id": 6010, + "name": "XXX/DVD", + "subCategories": [] + }, + { + "id": 6060, + "name": "XXX/ImageSet", + "subCategories": [] + }, + { + "id": 6040, + "name": "XXX/x264", + "subCategories": [] + }, + { + "id": 6045, + "name": "XXX/UHD", + "subCategories": [] + }, + { + "id": 6070, + "name": "XXX/Other", + "subCategories": [] + } + ] + }, + { + "id": 100500, + "name": "Porn", + "subCategories": [] + }, + { + "id": 100501, + "name": "Movies", + "subCategories": [] + }, + { + "id": 100502, + "name": "Movies DVDR", + "subCategories": [] + }, + { + "id": 100503, + "name": "Pictures", + "subCategories": [] + }, + { + "id": 100504, + "name": "Games", + "subCategories": [] + }, + { + "id": 100505, + "name": "HD - Movies", + "subCategories": [] + }, + { + "id": 100506, + "name": "Movie Clips", + "subCategories": [] + }, + { + "id": 100507, + "name": "UHD/4k - Movies", + "subCategories": [] + }, + { + "id": 100599, + "name": "Porn other", + "subCategories": [] + }, + { + "id": 0, + "name": "Other", + "subCategories": [] + }, + { + "id": 100600, + "name": "Other", + "subCategories": [] + }, + { + "id": 7000, + "name": "Books", + "subCategories": [ + { + "id": 7020, + "name": "Books/EBook", + "subCategories": [] + }, + { + "id": 7030, + "name": "Books/Comics", + "subCategories": [] + }, + { + "id": 7050, + "name": "Books/Other", + "subCategories": [] + } + ] + }, + { + "id": 100601, + "name": "E-books", + "subCategories": [] + }, + { + "id": 100602, + "name": "Comics", + "subCategories": [] + }, + { + "id": 100603, + "name": "Pictures", + "subCategories": [] + }, + { + "id": 100604, + "name": "Covers", + "subCategories": [] + }, + { + "id": 100605, + "name": "Physibles", + "subCategories": [] + }, + { + "id": 100699, + "name": "Other Other", + "subCategories": [] + } + ], + "supportsRawSearch": false, + "searchParams": [ + "q", + "q" + ], + "tvSearchParams": [ + "q", + "season", + "ep" + ], + "movieSearchParams": [ + "q" + ], + "musicSearchParams": [ + "q" + ], + "bookSearchParams": [ + "q" + ] + }, + "priority": 25, + "added": "2023-06-03T19:03:56Z", + "sortName": "pirate bay", + "name": "The Pirate Bay", + "fields": [ + { + "order": 0, + "name": "definitionFile", + "value": "thepiratebay", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 1, + "name": "baseUrl", + "label": "Base Url", + "helpText": "Select which baseurl Prowlarr will use for requests to the site", + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "getUrls" + }, + { + "order": 2, + "name": "baseSettings.queryLimit", + "label": "Query Limit", + "helpText": "The number of queries within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 3, + "name": "baseSettings.grabLimit", + "label": "Grab Limit", + "helpText": "The number of grabs within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 4, + "name": "torrentBaseSettings.appMinimumSeeders", + "label": "Apps Minimum Seeders", + "helpText": "Minimum seeders required by the Applications for the indexer to grab, empty is Sync profile's default", + "type": "number", + "advanced": true + }, + { + "order": 5, + "name": "torrentBaseSettings.seedRatio", + "label": "Seed Ratio", + "helpText": "The ratio a torrent should reach before stopping, empty is app's default", + "type": "textbox", + "advanced": true + }, + { + "order": 6, + "name": "torrentBaseSettings.seedTime", + "label": "Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 7, + "name": "torrentBaseSettings.packSeedTime", + "label": "Pack Seed Time", + "unit": "minutes", + "helpText": "The time a pack (season or discography) torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 0, + "name": "info_api", + "label": "About this Indexer", + "value": "This indexer uses the API at https://apibay.org/ to get its official TPB data. Choose any site link that you can access/prefer so that you can view the torrent details page when browsing the search results for this indexer.", + "type": "info", + "advanced": false + } + ], + "implementationName": "Cardigann", + "implementation": "Cardigann", + "configContract": "CardigannSettings", + "infoLink": "https://wiki.servarr.com/prowlarr/supported-indexers#thepiratebay", + "tags": [], + "id": 45 + }, + { + "indexerUrls": [ + "https://www.tokyotosho.info/", + "https://tokyotosho.mrunblock.bond/", + "https://tokyotosho.nocensor.cloud/" + ], + "legacyUrls": [ + "https://tokyotosho.black-mirror.xyz/", + "https://tokyotosho.unblocked.casa/", + "https://tokyotosho.proxyportal.fun/", + "https://tokyotosho.uk-unblock.xyz/", + "https://tokyotosho.ind-unblock.xyz/", + "https://tokyotosho.unblocked.bar/", + "https://tokyotosho.proxyportal.pw/", + "https://tokyotosho.uk-unblock.pro/", + "https://tokyotosho.unblocked.rest/", + "https://tokyotosho.unblocked.monster/", + "https://tokyotosho.nocensor.space/", + "https://tokyotosho.nocensor.work/", + "https://tokyotosho.nocensor.biz/", + "https://tokyotosho.nocensor.sbs/", + "https://tokyotosho.nocensor.world/", + "https://tokyotosho.nocensor.lol/", + "https://tokyotosho.nocensor.art/", + "https://tokyotosho.mrunblock.guru/", + "https://tokyotosho.mrunblock.life/", + "https://tokyotosho.nocensor.click/" + ], + "definitionName": "tokyotosho", + "description": "A BitTorrent Library for Japanese Media", + "language": "en-US", + "encoding": "Unicode (UTF-8)", + "enable": true, + "redirect": false, + "supportsRss": true, + "supportsSearch": true, + "supportsRedirect": false, + "supportsPagination": false, + "appProfileId": 1, + "protocol": "torrent", + "privacy": "public", + "capabilities": { + "limitsMax": 100, + "limitsDefault": 100, + "categories": [ + { + "id": 5000, + "name": "TV", + "subCategories": [ + { + "id": 5070, + "name": "TV/Anime", + "subCategories": [] + } + ] + }, + { + "id": 100001, + "name": "Anime", + "subCategories": [] + }, + { + "id": 100010, + "name": "Non-English Anime", + "subCategories": [] + }, + { + "id": 7000, + "name": "Books", + "subCategories": [] + }, + { + "id": 100003, + "name": "Manga", + "subCategories": [] + }, + { + "id": 100008, + "name": "Drama", + "subCategories": [] + }, + { + "id": 3000, + "name": "Audio", + "subCategories": [] + }, + { + "id": 100002, + "name": "Anime Music", + "subCategories": [] + }, + { + "id": 100009, + "name": "Anime Music Videos", + "subCategories": [] + }, + { + "id": 100007, + "name": "Raw Anime", + "subCategories": [] + }, + { + "id": 6000, + "name": "XXX", + "subCategories": [] + }, + { + "id": 100004, + "name": "Hentai", + "subCategories": [] + }, + { + "id": 100012, + "name": "Hentai (Anime)", + "subCategories": [] + }, + { + "id": 100013, + "name": "Hentai (Manga)", + "subCategories": [] + }, + { + "id": 100014, + "name": "Hentai (Games)", + "subCategories": [] + }, + { + "id": 100011, + "name": "Batch", + "subCategories": [] + }, + { + "id": 100015, + "name": "JAV", + "subCategories": [] + }, + { + "id": 0, + "name": "Other", + "subCategories": [] + }, + { + "id": 100005, + "name": "Other", + "subCategories": [] + } + ], + "supportsRawSearch": false, + "searchParams": [ + "q", + "q" + ], + "tvSearchParams": [ + "q", + "season", + "ep" + ], + "movieSearchParams": [], + "musicSearchParams": [], + "bookSearchParams": [ + "q" + ] + }, + "priority": 25, + "added": "2023-06-03T19:04:02Z", + "sortName": "tokyo toshokan", + "name": "Tokyo Toshokan", + "fields": [ + { + "order": 0, + "name": "definitionFile", + "value": "tokyotosho", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 1, + "name": "baseUrl", + "label": "Base Url", + "helpText": "Select which baseurl Prowlarr will use for requests to the site", + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "getUrls" + }, + { + "order": 2, + "name": "baseSettings.queryLimit", + "label": "Query Limit", + "helpText": "The number of queries within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 3, + "name": "baseSettings.grabLimit", + "label": "Grab Limit", + "helpText": "The number of grabs within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 4, + "name": "torrentBaseSettings.appMinimumSeeders", + "label": "Apps Minimum Seeders", + "helpText": "Minimum seeders required by the Applications for the indexer to grab, empty is Sync profile's default", + "type": "number", + "advanced": true + }, + { + "order": 5, + "name": "torrentBaseSettings.seedRatio", + "label": "Seed Ratio", + "helpText": "The ratio a torrent should reach before stopping, empty is app's default", + "type": "textbox", + "advanced": true + }, + { + "order": 6, + "name": "torrentBaseSettings.seedTime", + "label": "Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 7, + "name": "torrentBaseSettings.packSeedTime", + "label": "Pack Seed Time", + "unit": "minutes", + "helpText": "The time a pack (season or discography) torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 0, + "name": "cat", + "label": "Category", + "value": 0, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "All", + "order": 0 + }, + { + "value": 1, + "name": "Anime", + "order": 0 + }, + { + "value": 2, + "name": "Non-English", + "order": 0 + }, + { + "value": 3, + "name": "Batch", + "order": 0 + }, + { + "value": 4, + "name": "Hentai (Anime)", + "order": 0 + }, + { + "value": 5, + "name": "Hentai (Manga)", + "order": 0 + }, + { + "value": 6, + "name": "Hentai (Games)", + "order": 0 + }, + { + "value": 7, + "name": "JAV", + "order": 0 + }, + { + "value": 8, + "name": "Music", + "order": 0 + }, + { + "value": 9, + "name": "Manga", + "order": 0 + }, + { + "value": 10, + "name": "Hentai", + "order": 0 + }, + { + "value": 11, + "name": "Other", + "order": 0 + }, + { + "value": 12, + "name": "Raws", + "order": 0 + }, + { + "value": 13, + "name": "Drama", + "order": 0 + }, + { + "value": 14, + "name": "Music Video", + "order": 0 + } + ] + } + ], + "implementationName": "Cardigann", + "implementation": "Cardigann", + "configContract": "CardigannSettings", + "infoLink": "https://wiki.servarr.com/prowlarr/supported-indexers#tokyotosho", + "tags": [], + "id": 46 + }, + { + "indexerUrls": [ + "https://www.torlock2.com/", + "https://www.torlock.com/", + "https://torlock.unblockit.ing/", + "https://torlock.nocensor.cloud/", + "https://torlock.mrunblock.bond/" + ], + "legacyUrls": [ + "https://torlock.com/", + "https://torlock.nocensor.biz/", + "https://www.torlock.icu/", + "https://torlock.nocensor.sbs/", + "https://torlock.unblockit.cat/", + "https://torlock.unblockit.nz/", + "https://torlock.nocensor.world/", + "https://torlock.unblockit.page/", + "https://torlock.unblockit.pet/", + "https://torlock.nocensor.lol/", + "https://torlock.unblockit.ink/", + "https://torlock.unblockit.bio/", + "https://torlock.unblockit.boo/", + "https://torlock.mrunblock.guru/", + "https://torlock.unblockit.click/", + "https://torlock.unblockit.asia/", + "https://torlock.mrunblock.life/", + "https://torlock.unblockit.mov/", + "https://torlock.unblockit.rsvp/", + "https://torlock.nocensor.click/", + "https://torlock.unblockit.vegas/", + "https://torlock.unblockit.esq/", + "https://torlock.unblockit.zip/", + "https://torlock.unblockit.foo/" + ], + "definitionName": "torlock", + "description": "Torlock is a torrent search site that lists verified torrents only for TV series and movies", + "language": "en-US", + "encoding": "Unicode (UTF-8)", + "enable": true, + "redirect": false, + "supportsRss": true, + "supportsSearch": true, + "supportsRedirect": false, + "supportsPagination": false, + "appProfileId": 1, + "protocol": "torrent", + "privacy": "public", + "capabilities": { + "limitsMax": 100, + "limitsDefault": 100, + "categories": [ + { + "id": 5000, + "name": "TV", + "subCategories": [ + { + "id": 5070, + "name": "TV/Anime", + "subCategories": [] + } + ] + }, + { + "id": 108341, + "name": "TV Shows", + "subCategories": [] + }, + { + "id": 2000, + "name": "Movies", + "subCategories": [] + }, + { + "id": 149894, + "name": "Movies", + "subCategories": [] + }, + { + "id": 3000, + "name": "Audio", + "subCategories": [ + { + "id": 3030, + "name": "Audio/Audiobook", + "subCategories": [] + } + ] + }, + { + "id": 115039, + "name": "Music", + "subCategories": [] + }, + { + "id": 4000, + "name": "PC", + "subCategories": [ + { + "id": 4050, + "name": "PC/Games", + "subCategories": [] + } + ] + }, + { + "id": 129235, + "name": "Games", + "subCategories": [] + }, + { + "id": 142238, + "name": "Software", + "subCategories": [] + }, + { + "id": 146976, + "name": "Anime", + "subCategories": [] + }, + { + "id": 7000, + "name": "Books", + "subCategories": [ + { + "id": 7020, + "name": "Books/EBook", + "subCategories": [] + } + ] + }, + { + "id": 150256, + "name": "Books", + "subCategories": [] + }, + { + "id": 0, + "name": "Other", + "subCategories": [ + { + "id": 10, + "name": "Other/Misc", + "subCategories": [] + } + ] + }, + { + "id": 131893, + "name": "Other", + "subCategories": [] + }, + { + "id": 6000, + "name": "XXX", + "subCategories": [] + }, + { + "id": 135300, + "name": "Adult", + "subCategories": [] + }, + { + "id": 116950, + "name": "Audiobook", + "subCategories": [] + }, + { + "id": 162523, + "name": "Images", + "subCategories": [] + } + ], + "supportsRawSearch": false, + "searchParams": [ + "q", + "q" + ], + "tvSearchParams": [ + "q", + "season", + "ep" + ], + "movieSearchParams": [ + "q" + ], + "musicSearchParams": [ + "q" + ], + "bookSearchParams": [ + "q" + ] + }, + "priority": 25, + "added": "2023-06-03T19:04:04Z", + "sortName": "torlock", + "name": "Torlock", + "fields": [ + { + "order": 0, + "name": "definitionFile", + "value": "torlock", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 1, + "name": "baseUrl", + "label": "Base Url", + "helpText": "Select which baseurl Prowlarr will use for requests to the site", + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "getUrls" + }, + { + "order": 2, + "name": "baseSettings.queryLimit", + "label": "Query Limit", + "helpText": "The number of queries within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 3, + "name": "baseSettings.grabLimit", + "label": "Grab Limit", + "helpText": "The number of grabs within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 4, + "name": "torrentBaseSettings.appMinimumSeeders", + "label": "Apps Minimum Seeders", + "helpText": "Minimum seeders required by the Applications for the indexer to grab, empty is Sync profile's default", + "type": "number", + "advanced": true + }, + { + "order": 5, + "name": "torrentBaseSettings.seedRatio", + "label": "Seed Ratio", + "helpText": "The ratio a torrent should reach before stopping, empty is app's default", + "type": "textbox", + "advanced": true + }, + { + "order": 6, + "name": "torrentBaseSettings.seedTime", + "label": "Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 7, + "name": "torrentBaseSettings.packSeedTime", + "label": "Pack Seed Time", + "unit": "minutes", + "helpText": "The time a pack (season or discography) torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 0, + "name": "sort", + "label": "Sort requested from site (only works for search with keywords)", + "value": 0, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "created", + "order": 0 + }, + { + "value": 1, + "name": "seeders", + "order": 0 + }, + { + "value": 2, + "name": "size", + "order": 0 + } + ] + }, + { + "order": 1, + "name": "type", + "label": "Order requested from site", + "value": 1, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "asc", + "order": 0 + }, + { + "value": 1, + "name": "desc", + "order": 0 + } + ] + } + ], + "implementationName": "Cardigann", + "implementation": "Cardigann", + "configContract": "CardigannSettings", + "infoLink": "https://wiki.servarr.com/prowlarr/supported-indexers#torlock", + "tags": [], + "id": 47 + }, + { + "indexerUrls": [ + "https://www.torrentdownloads.pro/", + "https://torrentdownloads.unblockit.ing/", + "https://torrentdownloads.mrunblock.bond/", + "https://torrentdownloads.unblockninja.com/", + "https://torrentdownloads.nocensor.cloud/" + ], + "legacyUrls": [ + "https://www.torrentdownloads.me/", + "https://torrentdownloads.nocensor.work/", + "https://torrentdownloads.nocensor.biz/", + "https://torrentdownloads.nocensor.sbs/", + "https://torrentdownloads.unblockit.cat/", + "https://torrentdownloads.unblockit.nz/", + "https://torrentdownloads.nocensor.world/", + "https://torrentdownloads.unblockit.page/", + "https://torrentdownloads.unblockit.pet/", + "https://torrentdownloads.nocensor.lol/", + "https://torrentdownloads.unblockit.ink/", + "https://torrentdownloads.unblockit.bio/", + "https://torrentdownloads.unblockit.boo/", + "https://www.torrentdownloads.info/", + "https://torrentdownloads.mrunblock.guru/", + "https://torrentdownloads.unblockit.click/", + "https://torrentdownloads.unblockit.asia/", + "https://torrentdownloads.unblockit.mov/", + "https://torrentdownloads.mrunblock.life/", + "https://torrentdownloads.unblockit.rsvp/", + "https://torrentdownloads.nocensor.click/", + "https://torrentdownloads.unblockit.vegas/", + "https://torrentdownloads.unblockit.esq/", + "https://torrentdownloads.unblockit.zip/", + "https://torrentdownloads.unblockit.foo/" + ], + "definitionName": "torrentdownloads", + "description": "Torrent Downloads (TD) is a Public torrent site for all kinds of content", + "language": "en-US", + "encoding": "Unicode (UTF-8)", + "enable": true, + "redirect": false, + "supportsRss": true, + "supportsSearch": true, + "supportsRedirect": false, + "supportsPagination": false, + "appProfileId": 1, + "protocol": "torrent", + "privacy": "public", + "capabilities": { + "limitsMax": 100, + "limitsDefault": 100, + "categories": [ + { + "id": 5000, + "name": "TV", + "subCategories": [ + { + "id": 5070, + "name": "TV/Anime", + "subCategories": [] + } + ] + }, + { + "id": 100008, + "name": "TV Shows", + "subCategories": [] + }, + { + "id": 2000, + "name": "Movies", + "subCategories": [] + }, + { + "id": 100004, + "name": "Movies", + "subCategories": [] + }, + { + "id": 3000, + "name": "Audio", + "subCategories": [] + }, + { + "id": 100005, + "name": "Music", + "subCategories": [] + }, + { + "id": 4000, + "name": "PC", + "subCategories": [ + { + "id": 4050, + "name": "PC/Games", + "subCategories": [] + } + ] + }, + { + "id": 100003, + "name": "Games", + "subCategories": [] + }, + { + "id": 100007, + "name": "Software", + "subCategories": [] + }, + { + "id": 100001, + "name": "Anime", + "subCategories": [] + }, + { + "id": 7000, + "name": "Books", + "subCategories": [] + }, + { + "id": 100002, + "name": "Books", + "subCategories": [] + }, + { + "id": 0, + "name": "Other", + "subCategories": [] + }, + { + "id": 100009, + "name": "Other", + "subCategories": [] + }, + { + "id": 100000, + "name": "Other", + "subCategories": [] + }, + { + "id": 100006, + "name": "Pics", + "subCategories": [] + } + ], + "supportsRawSearch": true, + "searchParams": [ + "q", + "q" + ], + "tvSearchParams": [ + "q", + "season", + "ep" + ], + "movieSearchParams": [ + "q" + ], + "musicSearchParams": [ + "q" + ], + "bookSearchParams": [ + "q" + ] + }, + "priority": 25, + "added": "2023-06-03T19:04:06Z", + "sortName": "torrent downloads", + "name": "Torrent Downloads", + "fields": [ + { + "order": 0, + "name": "definitionFile", + "value": "torrentdownloads", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 1, + "name": "baseUrl", + "label": "Base Url", + "helpText": "Select which baseurl Prowlarr will use for requests to the site", + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "getUrls" + }, + { + "order": 2, + "name": "baseSettings.queryLimit", + "label": "Query Limit", + "helpText": "The number of queries within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 3, + "name": "baseSettings.grabLimit", + "label": "Grab Limit", + "helpText": "The number of grabs within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 4, + "name": "torrentBaseSettings.appMinimumSeeders", + "label": "Apps Minimum Seeders", + "helpText": "Minimum seeders required by the Applications for the indexer to grab, empty is Sync profile's default", + "type": "number", + "advanced": true + }, + { + "order": 5, + "name": "torrentBaseSettings.seedRatio", + "label": "Seed Ratio", + "helpText": "The ratio a torrent should reach before stopping, empty is app's default", + "type": "textbox", + "advanced": true + }, + { + "order": 6, + "name": "torrentBaseSettings.seedTime", + "label": "Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 7, + "name": "torrentBaseSettings.packSeedTime", + "label": "Pack Seed Time", + "unit": "minutes", + "helpText": "The time a pack (season or discography) torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 0, + "name": "downloadlink", + "label": "Download link", + "value": 1, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "iTorrents.org", + "order": 0 + }, + { + "value": 1, + "name": "magnet", + "order": 0 + } + ] + }, + { + "order": 1, + "name": "downloadlink2", + "label": "Download link (fallback)", + "value": 0, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "iTorrents.org", + "order": 0 + }, + { + "value": 1, + "name": "magnet", + "order": 0 + } + ] + }, + { + "order": 2, + "name": "info_download", + "label": "About the Download links", + "value": "As the .torrent download links on this site are known to fail from time to time, you can optionally set as a fallback an automatic alternate link.", + "type": "info", + "advanced": false + } + ], + "implementationName": "Cardigann", + "implementation": "Cardigann", + "configContract": "CardigannSettings", + "infoLink": "https://wiki.servarr.com/prowlarr/supported-indexers#torrentdownloads", + "tags": [], + "id": 48 + }, + { + "indexerUrls": [ + "https://torrentcore.xyz/" + ], + "legacyUrls": [], + "definitionName": "torrentcore", + "description": "Torrent[CORE] is a Public DHT Crawler", + "language": "en-US", + "encoding": "Unicode (UTF-8)", + "enable": true, + "redirect": false, + "supportsRss": true, + "supportsSearch": true, + "supportsRedirect": false, + "supportsPagination": false, + "appProfileId": 1, + "protocol": "torrent", + "privacy": "public", + "capabilities": { + "limitsMax": 100, + "limitsDefault": 100, + "categories": [ + { + "id": 4000, + "name": "PC", + "subCategories": [ + { + "id": 4010, + "name": "PC/0day", + "subCategories": [] + }, + { + "id": 4050, + "name": "PC/Games", + "subCategories": [] + }, + { + "id": 4040, + "name": "PC/Mobile-Other", + "subCategories": [] + } + ] + }, + { + "id": 110696, + "name": "Software 0DAY", + "subCategories": [] + }, + { + "id": 2000, + "name": "Movies", + "subCategories": [ + { + "id": 2070, + "name": "Movies/DVD", + "subCategories": [] + }, + { + "id": 2040, + "name": "Movies/HD", + "subCategories": [] + }, + { + "id": 2030, + "name": "Movies/SD", + "subCategories": [] + } + ] + }, + { + "id": 131538, + "name": "Movies DVDR", + "subCategories": [] + }, + { + "id": 7000, + "name": "Books", + "subCategories": [] + }, + { + "id": 114270, + "name": "Ebook", + "subCategories": [] + }, + { + "id": 3000, + "name": "Audio", + "subCategories": [ + { + "id": 3040, + "name": "Audio/Lossless", + "subCategories": [] + }, + { + "id": 3010, + "name": "Audio/MP3", + "subCategories": [] + } + ] + }, + { + "id": 119291, + "name": "Music FLAC", + "subCategories": [] + }, + { + "id": 129235, + "name": "Games", + "subCategories": [] + }, + { + "id": 130841, + "name": "Music MP3", + "subCategories": [] + }, + { + "id": 110210, + "name": "Movies MP4", + "subCategories": [] + }, + { + "id": 147405, + "name": "Software PDA", + "subCategories": [] + }, + { + "id": 1000, + "name": "Console", + "subCategories": [ + { + "id": 1080, + "name": "Console/PS3", + "subCategories": [] + }, + { + "id": 1050, + "name": "Console/XBox 360", + "subCategories": [] + } + ] + }, + { + "id": 144394, + "name": "Games PS3", + "subCategories": [] + }, + { + "id": 5000, + "name": "TV", + "subCategories": [ + { + "id": 5030, + "name": "TV/SD", + "subCategories": [] + }, + { + "id": 5040, + "name": "TV/HD", + "subCategories": [] + } + ] + }, + { + "id": 143862, + "name": "TV", + "subCategories": [] + }, + { + "id": 111963, + "name": "TV DVDRIP", + "subCategories": [] + }, + { + "id": 158099, + "name": "TV X265", + "subCategories": [] + }, + { + "id": 113405, + "name": "TV XVID", + "subCategories": [] + }, + { + "id": 0, + "name": "Other", + "subCategories": [] + }, + { + "id": 147653, + "name": "Unknown", + "subCategories": [] + }, + { + "id": 101535, + "name": "Movies X264", + "subCategories": [] + }, + { + "id": 116911, + "name": "Games XBOX360", + "subCategories": [] + }, + { + "id": 131001, + "name": "Movies XVID", + "subCategories": [] + }, + { + "id": 6000, + "name": "XXX", + "subCategories": [ + { + "id": 6060, + "name": "XXX/ImageSet", + "subCategories": [] + } + ] + }, + { + "id": 126537, + "name": "Adult", + "subCategories": [] + }, + { + "id": 102637, + "name": "Adult 0DAY", + "subCategories": [] + }, + { + "id": 102657, + "name": "Adult IMGSET", + "subCategories": [] + }, + { + "id": 142940, + "name": "Adult X264", + "subCategories": [] + }, + { + "id": 109447, + "name": "Adult X265", + "subCategories": [] + } + ], + "supportsRawSearch": false, + "searchParams": [ + "q", + "q" + ], + "tvSearchParams": [ + "q", + "season", + "ep" + ], + "movieSearchParams": [ + "q" + ], + "musicSearchParams": [ + "q" + ], + "bookSearchParams": [ + "q" + ] + }, + "priority": 25, + "added": "2023-06-03T19:05:21Z", + "sortName": "torrentcore", + "name": "Torrent[CORE]", + "fields": [ + { + "order": 0, + "name": "definitionFile", + "value": "torrentcore", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 1, + "name": "baseUrl", + "label": "Base Url", + "helpText": "Select which baseurl Prowlarr will use for requests to the site", + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "getUrls" + }, + { + "order": 2, + "name": "baseSettings.queryLimit", + "label": "Query Limit", + "helpText": "The number of queries within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 3, + "name": "baseSettings.grabLimit", + "label": "Grab Limit", + "helpText": "The number of grabs within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 4, + "name": "torrentBaseSettings.appMinimumSeeders", + "label": "Apps Minimum Seeders", + "helpText": "Minimum seeders required by the Applications for the indexer to grab, empty is Sync profile's default", + "type": "number", + "advanced": true + }, + { + "order": 5, + "name": "torrentBaseSettings.seedRatio", + "label": "Seed Ratio", + "helpText": "The ratio a torrent should reach before stopping, empty is app's default", + "type": "textbox", + "advanced": true + }, + { + "order": 6, + "name": "torrentBaseSettings.seedTime", + "label": "Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 7, + "name": "torrentBaseSettings.packSeedTime", + "label": "Pack Seed Time", + "unit": "minutes", + "helpText": "The time a pack (season or discography) torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + } + ], + "implementationName": "Cardigann", + "implementation": "Cardigann", + "configContract": "CardigannSettings", + "infoLink": "https://wiki.servarr.com/prowlarr/supported-indexers#torrentcore", + "tags": [], + "id": 55 + }, + { + "indexerUrls": [ + "https://www.torrent9.fm/", + "https://torrent9.unblockninja.com/" + ], + "legacyUrls": [ + "http://www.torrent9.ec/", + "http://www.torrent9.red/", + "http://www.torrent9.bz/", + "http://www.torrents9.pe/", + "http://www.torrent9.cc/", + "http://www.torrent9.pe/", + "http://www.torrent9.blue/", + "https://www.torrent9.blue/", + "https://ww2.torrent9.blue/", + "https://www.torrent9.rip/", + "https://www.torrent9.ph/", + "https://ww1.torrent9.ph/", + "https://torrent9.ga/", + "https://www.torrent9.uno/", + "https://wvw.torrent9.uno/", + "https://ww1.torrent9.uno/", + "https://wvw.t9.pe/", + "https://www4.torrent9.to/", + "https://www.torrent9.cat/", + "https://www.torrent09.uno/", + "https://www.torrent9.pl/", + "https://torrent9.black-mirror.xyz/", + "https://torrent9.unblocked.casa/", + "https://torrent9.proxyportal.fun/", + "https://torrent9.uk-unblock.xyz/", + "https://torrent9.ind-unblock.xyz/", + "https://ww1.torrent9.is/", + "https://ww1.torrent9.to/", + "https://www.torrent9.is/", + "https://torrent9.li/", + "https://www.oxtorrent.me/", + "https://www.torrent9.gg/", + "https://torrent9.to/", + "https://www.torrent9.fi/" + ], + "definitionName": "torrent9", + "description": "Torrent9 is a FRENCH Public site for TV / MOVIES / GENERAL", + "language": "fr-FR", + "encoding": "Unicode (UTF-8)", + "enable": true, + "redirect": false, + "supportsRss": true, + "supportsSearch": true, + "supportsRedirect": false, + "supportsPagination": false, + "appProfileId": 1, + "protocol": "torrent", + "privacy": "public", + "capabilities": { + "limitsMax": 100, + "limitsDefault": 100, + "categories": [ + { + "id": 2000, + "name": "Movies", + "subCategories": [] + }, + { + "id": 131681, + "name": "Movies", + "subCategories": [] + }, + { + "id": 5000, + "name": "TV", + "subCategories": [] + }, + { + "id": 117804, + "name": "TV", + "subCategories": [] + }, + { + "id": 3000, + "name": "Audio", + "subCategories": [] + }, + { + "id": 106099, + "name": "Music", + "subCategories": [] + }, + { + "id": 7000, + "name": "Books", + "subCategories": [] + }, + { + "id": 113570, + "name": "Books", + "subCategories": [] + }, + { + "id": 4000, + "name": "PC", + "subCategories": [ + { + "id": 4050, + "name": "PC/Games", + "subCategories": [] + } + ] + }, + { + "id": 117202, + "name": "Software", + "subCategories": [] + }, + { + "id": 159776, + "name": "PC Games", + "subCategories": [] + }, + { + "id": 1000, + "name": "Console", + "subCategories": [ + { + "id": 1050, + "name": "Console/XBox 360", + "subCategories": [] + } + ] + }, + { + "id": 124745, + "name": "Console Games", + "subCategories": [] + }, + { + "id": 0, + "name": "Other", + "subCategories": [] + }, + { + "id": 138096, + "name": "Other", + "subCategories": [] + } + ], + "supportsRawSearch": true, + "searchParams": [ + "q", + "q" + ], + "tvSearchParams": [ + "q", + "season", + "ep" + ], + "movieSearchParams": [ + "q" + ], + "musicSearchParams": [ + "q" + ], + "bookSearchParams": [ + "q" + ] + }, + "priority": 25, + "added": "2023-06-03T19:04:08Z", + "sortName": "torrent9", + "name": "Torrent9", + "fields": [ + { + "order": 0, + "name": "definitionFile", + "value": "torrent9", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 1, + "name": "baseUrl", + "label": "Base Url", + "helpText": "Select which baseurl Prowlarr will use for requests to the site", + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "getUrls" + }, + { + "order": 2, + "name": "baseSettings.queryLimit", + "label": "Query Limit", + "helpText": "The number of queries within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 3, + "name": "baseSettings.grabLimit", + "label": "Grab Limit", + "helpText": "The number of grabs within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 4, + "name": "torrentBaseSettings.appMinimumSeeders", + "label": "Apps Minimum Seeders", + "helpText": "Minimum seeders required by the Applications for the indexer to grab, empty is Sync profile's default", + "type": "number", + "advanced": true + }, + { + "order": 5, + "name": "torrentBaseSettings.seedRatio", + "label": "Seed Ratio", + "helpText": "The ratio a torrent should reach before stopping, empty is app's default", + "type": "textbox", + "advanced": true + }, + { + "order": 6, + "name": "torrentBaseSettings.seedTime", + "label": "Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 7, + "name": "torrentBaseSettings.packSeedTime", + "label": "Pack Seed Time", + "unit": "minutes", + "helpText": "The time a pack (season or discography) torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 0, + "name": "multilang", + "label": "Replace MULTi by another language in release name", + "value": false, + "type": "checkbox", + "advanced": false + }, + { + "order": 1, + "name": "multilanguage", + "label": "Replace MULTi by this language", + "value": 1, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "ENGLISH", + "order": 0 + }, + { + "value": 1, + "name": "FRENCH", + "order": 0 + }, + { + "value": 2, + "name": "MULTi ENGLISH", + "order": 0 + }, + { + "value": 3, + "name": "MULTi FRENCH", + "order": 0 + }, + { + "value": 4, + "name": "MULTi VOSTFR", + "order": 0 + }, + { + "value": 5, + "name": "VOSTFR", + "order": 0 + } + ] + }, + { + "order": 2, + "name": "vostfr", + "label": "Replace VOSTFR and SUBFRENCH with ENGLISH", + "value": false, + "type": "checkbox", + "advanced": false + }, + { + "order": 3, + "name": "sort", + "label": "Sort requested from site (Only works for searches with Keywords)", + "value": 0, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "best", + "order": 0 + }, + { + "value": 1, + "name": "created asc", + "order": 0 + }, + { + "value": 2, + "name": "created desc", + "order": 0 + }, + { + "value": 3, + "name": "title asc", + "order": 0 + }, + { + "value": 4, + "name": "title desc", + "order": 0 + }, + { + "value": 5, + "name": "size asc", + "order": 0 + }, + { + "value": 6, + "name": "size desc", + "order": 0 + }, + { + "value": 7, + "name": "seeders asc", + "order": 0 + }, + { + "value": 8, + "name": "seeders desc", + "order": 0 + } + ] + } + ], + "implementationName": "Cardigann", + "implementation": "Cardigann", + "configContract": "CardigannSettings", + "infoLink": "https://wiki.servarr.com/prowlarr/supported-indexers#torrent9", + "tags": [], + "id": 49 + }, + { + "indexerUrls": [ + "https://www.torrent9.pm/", + "https://torrent9.nocensor.cloud/", + "https://torrent9.mrunblock.bond/" + ], + "legacyUrls": [ + "https://www.protege-liens.net/", + "https://www.rantop.org/", + "https://torrent9.mrunblock.guru/", + "http://www.torrent9.cm/", + "https://www.torrent9.cm/", + "https://torrent9.nocensor.art/", + "https://torrent9.mrunblock.life/", + "https://www.torrent9.fi/", + "https://www.torrent9.wtf/", + "https://www.torrent9.sc/", + "https://torrent9.nocensor.click/", + "https://www.torrent9.moe/", + "https://ww2.torrent9.moe/", + "https://wwv.torrent9.moe/", + "https://www.torrent9.pro/", + "https://www.torrent9.gs/", + "https://www.torrent9.ps/", + "https://www.torrent9.ms/", + "https://www.torrent9.ink/", + "https://www.torrent9.sk/", + "https://www.torrent9.rs/" + ], + "definitionName": "torrent9clone", + "description": "Torrent9 clone is a FRENCH Public Torrent9 clone for TV / MOVIES / GENERAL", + "language": "fr-FR", + "encoding": "Unicode (UTF-8)", + "enable": true, + "redirect": false, + "supportsRss": true, + "supportsSearch": true, + "supportsRedirect": false, + "supportsPagination": false, + "appProfileId": 1, + "protocol": "torrent", + "privacy": "public", + "capabilities": { + "limitsMax": 100, + "limitsDefault": 100, + "categories": [ + { + "id": 2000, + "name": "Movies", + "subCategories": [] + }, + { + "id": 145469, + "name": "Movies", + "subCategories": [] + }, + { + "id": 5000, + "name": "TV", + "subCategories": [ + { + "id": 5070, + "name": "TV/Anime", + "subCategories": [] + } + ] + }, + { + "id": 158485, + "name": "Anime", + "subCategories": [] + }, + { + "id": 108670, + "name": "TV", + "subCategories": [] + }, + { + "id": 3000, + "name": "Audio", + "subCategories": [] + }, + { + "id": 139807, + "name": "Music", + "subCategories": [] + }, + { + "id": 7000, + "name": "Books", + "subCategories": [] + }, + { + "id": 122878, + "name": "Books", + "subCategories": [] + }, + { + "id": 111361, + "name": "Livres", + "subCategories": [] + }, + { + "id": 4000, + "name": "PC", + "subCategories": [ + { + "id": 4050, + "name": "PC/Games", + "subCategories": [] + } + ] + }, + { + "id": 156868, + "name": "Software", + "subCategories": [] + }, + { + "id": 132101, + "name": "PC Games", + "subCategories": [] + }, + { + "id": 1000, + "name": "Console", + "subCategories": [ + { + "id": 1050, + "name": "Console/XBox 360", + "subCategories": [] + } + ] + }, + { + "id": 139292, + "name": "Console Games", + "subCategories": [] + }, + { + "id": 6000, + "name": "XXX", + "subCategories": [] + }, + { + "id": 123615, + "name": "XXX", + "subCategories": [] + } + ], + "supportsRawSearch": true, + "searchParams": [ + "q", + "q" + ], + "tvSearchParams": [ + "q", + "season", + "ep" + ], + "movieSearchParams": [ + "q" + ], + "musicSearchParams": [ + "q" + ], + "bookSearchParams": [ + "q" + ] + }, + "priority": 25, + "added": "2023-06-03T19:04:11Z", + "sortName": "torrent9 clone", + "name": "Torrent9 clone", + "fields": [ + { + "order": 0, + "name": "definitionFile", + "value": "torrent9clone", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 1, + "name": "baseUrl", + "label": "Base Url", + "helpText": "Select which baseurl Prowlarr will use for requests to the site", + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "getUrls" + }, + { + "order": 2, + "name": "baseSettings.queryLimit", + "label": "Query Limit", + "helpText": "The number of queries within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 3, + "name": "baseSettings.grabLimit", + "label": "Grab Limit", + "helpText": "The number of grabs within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 4, + "name": "torrentBaseSettings.appMinimumSeeders", + "label": "Apps Minimum Seeders", + "helpText": "Minimum seeders required by the Applications for the indexer to grab, empty is Sync profile's default", + "type": "number", + "advanced": true + }, + { + "order": 5, + "name": "torrentBaseSettings.seedRatio", + "label": "Seed Ratio", + "helpText": "The ratio a torrent should reach before stopping, empty is app's default", + "type": "textbox", + "advanced": true + }, + { + "order": 6, + "name": "torrentBaseSettings.seedTime", + "label": "Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 7, + "name": "torrentBaseSettings.packSeedTime", + "label": "Pack Seed Time", + "unit": "minutes", + "helpText": "The time a pack (season or discography) torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 0, + "name": "flaresolverr", + "label": "FlareSolverr", + "value": "This site may use Cloudflare DDoS Protection, therefore Prowlarr requires FlareSolverr to access it.", + "type": "info", + "advanced": false + }, + { + "order": 1, + "name": "multilang", + "label": "Replace MULTi by another language in release name", + "value": false, + "type": "checkbox", + "advanced": false + }, + { + "order": 2, + "name": "multilanguage", + "label": "Replace MULTi by this language", + "value": 1, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "ENGLISH", + "order": 0 + }, + { + "value": 1, + "name": "FRENCH", + "order": 0 + }, + { + "value": 2, + "name": "MULTi ENGLISH", + "order": 0 + }, + { + "value": 3, + "name": "MULTi FRENCH", + "order": 0 + }, + { + "value": 4, + "name": "MULTi VOSTFR", + "order": 0 + }, + { + "value": 5, + "name": "VOSTFR", + "order": 0 + } + ] + }, + { + "order": 3, + "name": "vostfr", + "label": "Replace VOSTFR and SUBFRENCH with ENGLISH", + "value": false, + "type": "checkbox", + "advanced": false + } + ], + "implementationName": "Cardigann", + "implementation": "Cardigann", + "configContract": "CardigannSettings", + "infoLink": "https://wiki.servarr.com/prowlarr/supported-indexers#torrent9clone", + "tags": [1], + "id": 50 + }, + { + "indexerUrls": [ + "https://www.torrent911.pw/", + "https://www.t911.ws/", + "https://oxtorrent.unblockninja.com/", + "https://torrent911.ninjaproxy1.com/" + ], + "legacyUrls": [ + "https://www.protege-liens.com/", + "https://www.rantop.org/", + "https://oxtorrent.nocensor.work/", + "https://oxtorrent.unblockit.kim/", + "https://oxtorrent.unblockit.bz/", + "https://oxtorrent.unblockit.tv/", + "https://oxtorrent.unblockit.how/", + "https://oxtorrent.unblockit.cam/", + "https://oxtorrent.nocensor.biz/", + "https://oxtorrent.unblockit.day/", + "https://oxtorrent.unblockit.llc/", + "https://www.t911.net/", + "https://oxtorrent.unblockit.blue/", + "https://oxtorrent.nocensor.sbs/", + "https://www.torrent911.net/", + "https://www.torrent911.org/", + "https://www.torrent911.cc/", + "https://www.t911.me/", + "https://www.torrent911.tv/", + "https://www.t911.tv/", + "https://torrent911.ws/", + "http://www.torrent911.ws/", + "https://www.torrent911.ws/", + "https://www.torrent911.me/", + "https://t911.org/", + "https://www.torrent911.io/", + "https://www.torrent911.biz/" + ], + "definitionName": "torrent911", + "description": "Torrent911 is a French Public site for TV / MOVIES / GENERAL", + "language": "fr-FR", + "encoding": "Unicode (UTF-8)", + "enable": true, + "redirect": false, + "supportsRss": true, + "supportsSearch": true, + "supportsRedirect": false, + "supportsPagination": false, + "appProfileId": 1, + "protocol": "torrent", + "privacy": "public", + "capabilities": { + "limitsMax": 100, + "limitsDefault": 100, + "categories": [ + { + "id": 2000, + "name": "Movies", + "subCategories": [] + }, + { + "id": 145469, + "name": "Movies", + "subCategories": [] + }, + { + "id": 5000, + "name": "TV", + "subCategories": [ + { + "id": 5070, + "name": "TV/Anime", + "subCategories": [] + } + ] + }, + { + "id": 158485, + "name": "Anime", + "subCategories": [] + }, + { + "id": 108670, + "name": "TV", + "subCategories": [] + }, + { + "id": 3000, + "name": "Audio", + "subCategories": [] + }, + { + "id": 139807, + "name": "Music", + "subCategories": [] + }, + { + "id": 7000, + "name": "Books", + "subCategories": [] + }, + { + "id": 122878, + "name": "Books", + "subCategories": [] + }, + { + "id": 111361, + "name": "Livres", + "subCategories": [] + }, + { + "id": 4000, + "name": "PC", + "subCategories": [ + { + "id": 4050, + "name": "PC/Games", + "subCategories": [] + } + ] + }, + { + "id": 156868, + "name": "Software", + "subCategories": [] + }, + { + "id": 132101, + "name": "PC Games", + "subCategories": [] + }, + { + "id": 1000, + "name": "Console", + "subCategories": [ + { + "id": 1050, + "name": "Console/XBox 360", + "subCategories": [] + } + ] + }, + { + "id": 139292, + "name": "Console Games", + "subCategories": [] + }, + { + "id": 6000, + "name": "XXX", + "subCategories": [] + }, + { + "id": 123615, + "name": "Porno", + "subCategories": [] + } + ], + "supportsRawSearch": true, + "searchParams": [ + "q", + "q" + ], + "tvSearchParams": [ + "q", + "season", + "ep" + ], + "movieSearchParams": [ + "q" + ], + "musicSearchParams": [ + "q" + ], + "bookSearchParams": [ + "q" + ] + }, + "priority": 25, + "added": "2023-06-03T19:04:13Z", + "sortName": "torrent911", + "name": "Torrent911", + "fields": [ + { + "order": 0, + "name": "definitionFile", + "value": "torrent911", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 1, + "name": "baseUrl", + "label": "Base Url", + "helpText": "Select which baseurl Prowlarr will use for requests to the site", + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "getUrls" + }, + { + "order": 2, + "name": "baseSettings.queryLimit", + "label": "Query Limit", + "helpText": "The number of queries within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 3, + "name": "baseSettings.grabLimit", + "label": "Grab Limit", + "helpText": "The number of grabs within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 4, + "name": "torrentBaseSettings.appMinimumSeeders", + "label": "Apps Minimum Seeders", + "helpText": "Minimum seeders required by the Applications for the indexer to grab, empty is Sync profile's default", + "type": "number", + "advanced": true + }, + { + "order": 5, + "name": "torrentBaseSettings.seedRatio", + "label": "Seed Ratio", + "helpText": "The ratio a torrent should reach before stopping, empty is app's default", + "type": "textbox", + "advanced": true + }, + { + "order": 6, + "name": "torrentBaseSettings.seedTime", + "label": "Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 7, + "name": "torrentBaseSettings.packSeedTime", + "label": "Pack Seed Time", + "unit": "minutes", + "helpText": "The time a pack (season or discography) torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 0, + "name": "multilang", + "label": "Replace MULTi by another language in release name", + "value": false, + "type": "checkbox", + "advanced": false + }, + { + "order": 1, + "name": "multilanguage", + "label": "Replace MULTi by this language", + "value": 1, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "ENGLISH", + "order": 0 + }, + { + "value": 1, + "name": "FRENCH", + "order": 0 + }, + { + "value": 2, + "name": "MULTi ENGLISH", + "order": 0 + }, + { + "value": 3, + "name": "MULTi FRENCH", + "order": 0 + }, + { + "value": 4, + "name": "MULTi VOSTFR", + "order": 0 + }, + { + "value": 5, + "name": "VOSTFR", + "order": 0 + } + ] + }, + { + "order": 2, + "name": "vostfr", + "label": "Replace VOSTFR and SUBFRENCH with ENGLISH", + "value": false, + "type": "checkbox", + "advanced": false + } + ], + "implementationName": "Cardigann", + "implementation": "Cardigann", + "configContract": "CardigannSettings", + "infoLink": "https://wiki.servarr.com/prowlarr/supported-indexers#torrent911", + "tags": [], + "id": 51 + }, + { + "indexerUrls": [ + "https://www.torrentfunk.com/", + "https://www.torrentfunk2.com/", + "https://torrentfunk.unblockit.ing/", + "https://torrentfunk.nocensor.cloud/", + "https://torrentfunk.mrunblock.bond/", + "https://torrentfunk.ninjaproxy1.com/" + ], + "legacyUrls": [ + "https://torrentfunk.nocensor.space/", + "https://torrentfunk.nocensor.work/", + "https://torrentfunk.nocensor.biz/", + "https://torrentfunk.nocensor.sbs/", + "https://torrentfunk.unblockit.cat/", + "https://torrentfunk.unblockit.nz/", + "https://torrentfunk.nocensor.world/", + "https://torrentfunk.unblockit.page/", + "https://torrentfunk.unblockit.pet/", + "https://torrentfunk.nocensor.lol/", + "https://torrentfunk.unblockit.ink/", + "https://torrentfunk.unblockit.bio/", + "https://torrentfunk.unblockit.boo/", + "https://torrentfunk.mrunblock.guru/", + "https://torrentfunk.unblockit.click/", + "https://torrentfunk.unblockit.asia/", + "https://torrentfunk.mrunblock.life/", + "https://torrentfunk.unblockit.mov/", + "https://torrentfunk.unblockit.rsvp/", + "https://torrentfunk.nocensor.click/", + "https://torrentfunk.unblockit.vegas/", + "https://torrentfunk.unblockit.esq/", + "https://torrentfunk.unblockit.zip/", + "https://torrentfunk.unblockit.foo/" + ], + "definitionName": "torrentfunk", + "description": "TorrentFunk is a Public torrent index", + "language": "en-US", + "encoding": "Unicode (UTF-8)", + "enable": true, + "redirect": false, + "supportsRss": true, + "supportsSearch": true, + "supportsRedirect": false, + "supportsPagination": false, + "appProfileId": 1, + "protocol": "torrent", + "privacy": "public", + "capabilities": { + "limitsMax": 100, + "limitsDefault": 100, + "categories": [ + { + "id": 2000, + "name": "Movies", + "subCategories": [] + }, + { + "id": 100001, + "name": "Movies", + "subCategories": [] + }, + { + "id": 3000, + "name": "Audio", + "subCategories": [] + }, + { + "id": 100002, + "name": "Music", + "subCategories": [] + }, + { + "id": 5000, + "name": "TV", + "subCategories": [ + { + "id": 5070, + "name": "TV/Anime", + "subCategories": [] + } + ] + }, + { + "id": 100003, + "name": "Television", + "subCategories": [] + }, + { + "id": 4000, + "name": "PC", + "subCategories": [ + { + "id": 4050, + "name": "PC/Games", + "subCategories": [] + } + ] + }, + { + "id": 100004, + "name": "Games", + "subCategories": [] + }, + { + "id": 100005, + "name": "Software", + "subCategories": [] + }, + { + "id": 100006, + "name": "Anime", + "subCategories": [] + }, + { + "id": 6000, + "name": "XXX", + "subCategories": [] + }, + { + "id": 100007, + "name": "Adult", + "subCategories": [] + }, + { + "id": 0, + "name": "Other", + "subCategories": [] + }, + { + "id": 100008, + "name": "Other(tbd)", + "subCategories": [] + }, + { + "id": 100009, + "name": "Other(tbd)", + "subCategories": [] + }, + { + "id": 100000, + "name": "Other(tbd)", + "subCategories": [] + }, + { + "id": 100010, + "name": "Other(tbd)", + "subCategories": [] + }, + { + "id": 100011, + "name": "Other(tbd)", + "subCategories": [] + } + ], + "supportsRawSearch": false, + "searchParams": [ + "q", + "q" + ], + "tvSearchParams": [ + "q", + "season", + "ep" + ], + "movieSearchParams": [ + "q" + ], + "musicSearchParams": [ + "q" + ], + "bookSearchParams": [] + }, + "priority": 25, + "added": "2023-06-03T19:04:19Z", + "sortName": "torrentfunk", + "name": "TorrentFunk", + "fields": [ + { + "order": 0, + "name": "definitionFile", + "value": "torrentfunk", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 1, + "name": "baseUrl", + "label": "Base Url", + "helpText": "Select which baseurl Prowlarr will use for requests to the site", + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "getUrls" + }, + { + "order": 2, + "name": "baseSettings.queryLimit", + "label": "Query Limit", + "helpText": "The number of queries within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 3, + "name": "baseSettings.grabLimit", + "label": "Grab Limit", + "helpText": "The number of grabs within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 4, + "name": "torrentBaseSettings.appMinimumSeeders", + "label": "Apps Minimum Seeders", + "helpText": "Minimum seeders required by the Applications for the indexer to grab, empty is Sync profile's default", + "type": "number", + "advanced": true + }, + { + "order": 5, + "name": "torrentBaseSettings.seedRatio", + "label": "Seed Ratio", + "helpText": "The ratio a torrent should reach before stopping, empty is app's default", + "type": "textbox", + "advanced": true + }, + { + "order": 6, + "name": "torrentBaseSettings.seedTime", + "label": "Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 7, + "name": "torrentBaseSettings.packSeedTime", + "label": "Pack Seed Time", + "unit": "minutes", + "helpText": "The time a pack (season or discography) torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + } + ], + "implementationName": "Cardigann", + "implementation": "Cardigann", + "configContract": "CardigannSettings", + "infoLink": "https://wiki.servarr.com/prowlarr/supported-indexers#torrentfunk", + "tags": [], + "id": 52 + }, + { + "indexerUrls": [ + "https://torrentgalaxy.to/", + "https://torrentgalaxy.mx/", + "https://tgx.rs/", + "https://tgx.sb/", + "https://torrentgalaxy.unblockninja.com/" + ], + "legacyUrls": [ + "https://torrentgalaxy.org/", + "https://torrentgalaxy.pw/", + "https://tgx.unblocked.monster/", + "https://torrentgalaxy.nocensor.space/", + "https://torrentgalaxy.nocensor.work/", + "https://torrentgalaxy.nocensor.biz/", + "https://torrentgalaxy.nocensor.sbs/", + "https://torrentgalaxy.nocensor.world/", + "https://torrentgalaxy.unblockit.cat/", + "https://torrentgalaxy.unblockit.nz/", + "https://torrentgalaxy.unblockit.page/", + "https://torrentgalaxy.unblockit.pet/", + "https://torrentgalaxy.unblockit.ink/", + "https://torrentgalaxy.unblockit.bio/", + "https://torrentgalaxy.su/", + "https://torrentgalaxy.unblockit.click/", + "https://torrentgalaxy.unblockit.asia/", + "https://torrentgalaxy.unblockit.mov/", + "https://torrentgalaxy.unblockit.rsvp/", + "https://torrentgalaxy.unblockit.vegas/", + "https://torrentgalaxy.unblockit.esq/", + "https://torrentgalaxy.unblockit.zip/", + "https://torrentgalaxy.unblockit.foo/", + "https://torrentgalaxy.unblockit.ing/" + ], + "definitionName": "torrentgalaxy", + "description": "TorrentGalaxy (TGx) is a Public site for TV / MOVIES / GENERAL", + "language": "en-US", + "encoding": "Unicode (UTF-8)", + "enable": true, + "redirect": false, + "supportsRss": true, + "supportsSearch": true, + "supportsRedirect": false, + "supportsPagination": false, + "appProfileId": 1, + "protocol": "torrent", + "privacy": "public", + "capabilities": { + "limitsMax": 100, + "limitsDefault": 100, + "categories": [ + { + "id": 5000, + "name": "TV", + "subCategories": [ + { + "id": 5070, + "name": "TV/Anime", + "subCategories": [] + }, + { + "id": 5080, + "name": "TV/Documentary", + "subCategories": [] + }, + { + "id": 5040, + "name": "TV/HD", + "subCategories": [] + }, + { + "id": 5030, + "name": "TV/SD", + "subCategories": [] + }, + { + "id": 5045, + "name": "TV/UHD", + "subCategories": [] + }, + { + "id": 5050, + "name": "TV/Other", + "subCategories": [] + }, + { + "id": 5060, + "name": "TV/Sport", + "subCategories": [] + } + ] + }, + { + "id": 100028, + "name": "Anime - All", + "subCategories": [] + }, + { + "id": 4000, + "name": "PC", + "subCategories": [ + { + "id": 4040, + "name": "PC/Mobile-Other", + "subCategories": [] + }, + { + "id": 4010, + "name": "PC/0day", + "subCategories": [] + }, + { + "id": 4050, + "name": "PC/Games", + "subCategories": [] + } + ] + }, + { + "id": 100020, + "name": "Apps - Mobile", + "subCategories": [] + }, + { + "id": 100021, + "name": "Apps - Other", + "subCategories": [] + }, + { + "id": 100018, + "name": "Apps - Windows", + "subCategories": [] + }, + { + "id": 3000, + "name": "Audio", + "subCategories": [ + { + "id": 3030, + "name": "Audio/Audiobook", + "subCategories": [] + }, + { + "id": 3040, + "name": "Audio/Lossless", + "subCategories": [] + }, + { + "id": 3020, + "name": "Audio/Video", + "subCategories": [] + }, + { + "id": 3050, + "name": "Audio/Other", + "subCategories": [] + } + ] + }, + { + "id": 100013, + "name": "Books - Audiobooks", + "subCategories": [] + }, + { + "id": 7000, + "name": "Books", + "subCategories": [ + { + "id": 7030, + "name": "Books/Comics", + "subCategories": [] + }, + { + "id": 7020, + "name": "Books/EBook", + "subCategories": [] + }, + { + "id": 7040, + "name": "Books/Technical", + "subCategories": [] + }, + { + "id": 7010, + "name": "Books/Mags", + "subCategories": [] + } + ] + }, + { + "id": 100019, + "name": "Books - Comics", + "subCategories": [] + }, + { + "id": 100012, + "name": "Books - Ebooks", + "subCategories": [] + }, + { + "id": 100014, + "name": "Books - Education", + "subCategories": [] + }, + { + "id": 100015, + "name": "Books - Magazine", + "subCategories": [] + }, + { + "id": 100009, + "name": "Documentaries - All", + "subCategories": [] + }, + { + "id": 100043, + "name": "Games - Mobile", + "subCategories": [] + }, + { + "id": 100010, + "name": "Games - Windows", + "subCategories": [] + }, + { + "id": 2000, + "name": "Movies", + "subCategories": [ + { + "id": 2045, + "name": "Movies/UHD", + "subCategories": [] + }, + { + "id": 2010, + "name": "Movies/Foreign", + "subCategories": [] + }, + { + "id": 2020, + "name": "Movies/Other", + "subCategories": [] + }, + { + "id": 2040, + "name": "Movies/HD", + "subCategories": [] + }, + { + "id": 2030, + "name": "Movies/SD", + "subCategories": [] + } + ] + }, + { + "id": 100003, + "name": "Movies - 4K UHD", + "subCategories": [] + }, + { + "id": 100046, + "name": "Movies - Bollywood", + "subCategories": [] + }, + { + "id": 100045, + "name": "Movies - CAM/TS", + "subCategories": [] + }, + { + "id": 100042, + "name": "Movies - HD", + "subCategories": [] + }, + { + "id": 100004, + "name": "Movies - Packs", + "subCategories": [] + }, + { + "id": 100001, + "name": "Movies - SD", + "subCategories": [] + }, + { + "id": 100022, + "name": "Music - Albums", + "subCategories": [] + }, + { + "id": 100026, + "name": "Music - Discography", + "subCategories": [] + }, + { + "id": 100023, + "name": "Music - Lossless", + "subCategories": [] + }, + { + "id": 100025, + "name": "Music - Musicvideo", + "subCategories": [] + }, + { + "id": 100024, + "name": "Music - Singles", + "subCategories": [] + }, + { + "id": 100017, + "name": "Audio - Other", + "subCategories": [] + }, + { + "id": 0, + "name": "Other", + "subCategories": [ + { + "id": 10, + "name": "Other/Misc", + "subCategories": [] + } + ] + }, + { + "id": 100040, + "name": "Other - Other", + "subCategories": [] + }, + { + "id": 100037, + "name": "Other - Pictures", + "subCategories": [] + }, + { + "id": 100033, + "name": "Other - Training", + "subCategories": [] + }, + { + "id": 100041, + "name": "TV - Episodes HD", + "subCategories": [] + }, + { + "id": 100005, + "name": "TV - Episodes SD", + "subCategories": [] + }, + { + "id": 100011, + "name": "TV - Episodes 4K UHD", + "subCategories": [] + }, + { + "id": 100006, + "name": "TV - Packs", + "subCategories": [] + }, + { + "id": 100007, + "name": "TV - Sports", + "subCategories": [] + }, + { + "id": 6000, + "name": "XXX", + "subCategories": [ + { + "id": 6040, + "name": "XXX/x264", + "subCategories": [] + }, + { + "id": 6070, + "name": "XXX/Other", + "subCategories": [] + }, + { + "id": 6080, + "name": "XXX/SD", + "subCategories": [] + }, + { + "id": 6045, + "name": "XXX/UHD", + "subCategories": [] + } + ] + }, + { + "id": 100035, + "name": "XXX - HD", + "subCategories": [] + }, + { + "id": 100047, + "name": "XXX - Misc", + "subCategories": [] + }, + { + "id": 100034, + "name": "XXX - SD", + "subCategories": [] + }, + { + "id": 100048, + "name": "XXX - 4K UHD", + "subCategories": [] + } + ], + "supportsRawSearch": false, + "searchParams": [ + "q", + "q" + ], + "tvSearchParams": [ + "q", + "season", + "ep", + "imdbId" + ], + "movieSearchParams": [ + "q", + "imdbId" + ], + "musicSearchParams": [ + "q" + ], + "bookSearchParams": [ + "q" + ] + }, + "priority": 25, + "added": "2023-06-03T19:04:40Z", + "sortName": "torrentgalaxy", + "name": "TorrentGalaxy", + "fields": [ + { + "order": 0, + "name": "definitionFile", + "value": "torrentgalaxy", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 1, + "name": "baseUrl", + "label": "Base Url", + "helpText": "Select which baseurl Prowlarr will use for requests to the site", + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "getUrls" + }, + { + "order": 2, + "name": "baseSettings.queryLimit", + "label": "Query Limit", + "helpText": "The number of queries within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 3, + "name": "baseSettings.grabLimit", + "label": "Grab Limit", + "helpText": "The number of grabs within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 4, + "name": "torrentBaseSettings.appMinimumSeeders", + "label": "Apps Minimum Seeders", + "helpText": "Minimum seeders required by the Applications for the indexer to grab, empty is Sync profile's default", + "type": "number", + "advanced": true + }, + { + "order": 5, + "name": "torrentBaseSettings.seedRatio", + "label": "Seed Ratio", + "helpText": "The ratio a torrent should reach before stopping, empty is app's default", + "type": "textbox", + "advanced": true + }, + { + "order": 6, + "name": "torrentBaseSettings.seedTime", + "label": "Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 7, + "name": "torrentBaseSettings.packSeedTime", + "label": "Pack Seed Time", + "unit": "minutes", + "helpText": "The time a pack (season or discography) torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 0, + "name": "excludeads", + "label": "Exclude results which include advertisements", + "value": false, + "type": "checkbox", + "advanced": false + }, + { + "order": 1, + "name": "sort", + "label": "Sort requested from site", + "value": 0, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "created", + "order": 0 + }, + { + "value": 1, + "name": "title", + "order": 0 + }, + { + "value": 2, + "name": "seeders", + "order": 0 + }, + { + "value": 3, + "name": "size", + "order": 0 + } + ] + }, + { + "order": 2, + "name": "type", + "label": "Order requested from site", + "value": 1, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "asc", + "order": 0 + }, + { + "value": 1, + "name": "desc", + "order": 0 + } + ] + }, + { + "order": 3, + "name": "cardigannCaptcha", + "label": "CAPTCHA", + "type": "cardigannCaptcha", + "advanced": false + } + ], + "implementationName": "Cardigann", + "implementation": "Cardigann", + "configContract": "CardigannSettings", + "infoLink": "https://wiki.servarr.com/prowlarr/supported-indexers#torrentgalaxy", + "tags": [], + "id": 53 + }, + { + "indexerUrls": [ + "https://www.torrentkitty.tv/", + "https://www.torrentkitty.se/", + "https://www.torrentkitty.io/", + "https://www.torrentkitty.vip/", + "https://www.torrentkitty.app/", + "https://www.torrentkitty.red/", + "https://www.torrentkitty.lol/", + "https://www.torrentkitty.best/", + "https://www.torrentkitty.ink/" + ], + "legacyUrls": [], + "definitionName": "torrentkitty", + "description": "TorrentKitty is a Public torrent indexer", + "language": "en-US", + "encoding": "Unicode (UTF-8)", + "enable": true, + "redirect": false, + "supportsRss": true, + "supportsSearch": true, + "supportsRedirect": false, + "supportsPagination": false, + "appProfileId": 1, + "protocol": "torrent", + "privacy": "public", + "capabilities": { + "limitsMax": 100, + "limitsDefault": 100, + "categories": [ + { + "id": 0, + "name": "Other", + "subCategories": [] + } + ], + "supportsRawSearch": false, + "searchParams": [ + "q", + "q" + ], + "tvSearchParams": [ + "q", + "season", + "ep" + ], + "movieSearchParams": [ + "q" + ], + "musicSearchParams": [], + "bookSearchParams": [] + }, + "priority": 25, + "added": "2023-06-03T19:04:51Z", + "sortName": "torrentkitty", + "name": "TorrentKitty", + "fields": [ + { + "order": 0, + "name": "definitionFile", + "value": "torrentkitty", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 1, + "name": "baseUrl", + "label": "Base Url", + "helpText": "Select which baseurl Prowlarr will use for requests to the site", + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "getUrls" + }, + { + "order": 2, + "name": "baseSettings.queryLimit", + "label": "Query Limit", + "helpText": "The number of queries within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 3, + "name": "baseSettings.grabLimit", + "label": "Grab Limit", + "helpText": "The number of grabs within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 4, + "name": "torrentBaseSettings.appMinimumSeeders", + "label": "Apps Minimum Seeders", + "helpText": "Minimum seeders required by the Applications for the indexer to grab, empty is Sync profile's default", + "type": "number", + "advanced": true + }, + { + "order": 5, + "name": "torrentBaseSettings.seedRatio", + "label": "Seed Ratio", + "helpText": "The ratio a torrent should reach before stopping, empty is app's default", + "type": "textbox", + "advanced": true + }, + { + "order": 6, + "name": "torrentBaseSettings.seedTime", + "label": "Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 7, + "name": "torrentBaseSettings.packSeedTime", + "label": "Pack Seed Time", + "unit": "minutes", + "helpText": "The time a pack (season or discography) torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 0, + "name": "flaresolverr", + "label": "FlareSolverr", + "value": "This site may use Cloudflare DDoS Protection, therefore Prowlarr requires FlareSolverr to access it.", + "type": "info", + "advanced": false + }, + { + "order": 1, + "name": "info_8000", + "label": "About TorrentKitty Categories", + "value": "TorrentKitty does not return categories in its search results.
To add to your Apps' Torznab indexer, replace all categories with 8000(Other).", + "type": "info", + "advanced": false + } + ], + "implementationName": "Cardigann", + "implementation": "Cardigann", + "configContract": "CardigannSettings", + "infoLink": "https://wiki.servarr.com/prowlarr/supported-indexers#torrentkitty", + "tags": [1], + "id": 54 + }, + { + "indexerUrls": [ + "https://torrents-csv.ml/" + ], + "legacyUrls": [], + "definitionName": "TorrentsCSV", + "description": "Torrents.csv is a self-hostable open source torrent search engine and database", + "language": "en-US", + "encoding": "Unicode (UTF-8)", + "enable": false, + "redirect": false, + "supportsRss": false, + "supportsSearch": true, + "supportsRedirect": false, + "supportsPagination": false, + "appProfileId": 1, + "protocol": "torrent", + "privacy": "public", + "capabilities": { + "limitsMax": 100, + "limitsDefault": 100, + "categories": [ + { + "id": 8000, + "name": "Other", + "subCategories": [] + } + ], + "supportsRawSearch": false, + "searchParams": [ + "q" + ], + "tvSearchParams": [ + "q", + "season", + "ep" + ], + "movieSearchParams": [ + "q" + ], + "musicSearchParams": [], + "bookSearchParams": [] + }, + "priority": 25, + "added": "2023-06-03T19:05:26Z", + "sortName": "torrentscsv", + "name": "TorrentsCSV", + "fields": [ + { + "order": 0, + "name": "baseUrl", + "label": "Base Url", + "helpText": "Select which baseurl Prowlarr will use for requests to the site", + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "getUrls" + }, + { + "order": 1, + "name": "baseSettings.queryLimit", + "label": "Query Limit", + "helpText": "The number of queries within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 2, + "name": "baseSettings.grabLimit", + "label": "Grab Limit", + "helpText": "The number of grabs within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 3, + "name": "torrentBaseSettings.appMinimumSeeders", + "label": "Apps Minimum Seeders", + "helpText": "Minimum seeders required by the Applications for the indexer to grab, empty is Sync profile's default", + "type": "number", + "advanced": true + }, + { + "order": 4, + "name": "torrentBaseSettings.seedRatio", + "label": "Seed Ratio", + "helpText": "The ratio a torrent should reach before stopping, empty is app's default", + "type": "textbox", + "advanced": true + }, + { + "order": 5, + "name": "torrentBaseSettings.seedTime", + "label": "Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 6, + "name": "torrentBaseSettings.packSeedTime", + "label": "Pack Seed Time", + "unit": "minutes", + "helpText": "The time a pack (season or discography) torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + } + ], + "implementationName": "TorrentsCSV", + "implementation": "TorrentsCSV", + "configContract": "NoAuthTorrentBaseSettings", + "infoLink": "https://wiki.servarr.com/prowlarr/supported-indexers#torrentscsv", + "tags": [], + "id": 56 + }, + { + "indexerUrls": [ + "https://torrentz2beta.online/" + ], + "legacyUrls": [ + "https://torrentz2.org.in/", + "https://torrentzeu.org/", + "https://torrentz2.club/", + "https://torrentz2eu.in/", + "https://torrentz2.pics/", + "https://2torrentz2eu.in/", + "https://torrentz2.unblockninja.com/", + "hhttps://torrentz2beta.com/", + "https://torrentz2beta.com/", + "https://torrentz2beta.in/", + "https://eu.torrentz2beta.in/", + "https://www.torrentz2beta.com/", + "https://torrentz2beta.asia/", + "https://www.torrentz2beta.pro/" + ], + "definitionName": "torrentz2eu", + "description": "Torrentz2eu is a Public torrent meta-search engine", + "language": "en-US", + "encoding": "Unicode (UTF-8)", + "enable": true, + "redirect": false, + "supportsRss": true, + "supportsSearch": true, + "supportsRedirect": false, + "supportsPagination": false, + "appProfileId": 1, + "protocol": "torrent", + "privacy": "public", + "capabilities": { + "limitsMax": 100, + "limitsDefault": 100, + "categories": [ + { + "id": 5000, + "name": "TV", + "subCategories": [] + }, + { + "id": 143862, + "name": "TV", + "subCategories": [] + }, + { + "id": 2000, + "name": "Movies", + "subCategories": [] + }, + { + "id": 100467, + "name": "Movies", + "subCategories": [] + } + ], + "supportsRawSearch": false, + "searchParams": [ + "q", + "q" + ], + "tvSearchParams": [ + "q", + "season", + "ep" + ], + "movieSearchParams": [ + "q" + ], + "musicSearchParams": [ + "q" + ], + "bookSearchParams": [ + "q" + ] + }, + "priority": 25, + "added": "2023-06-03T19:06:43Z", + "sortName": "torrentz2eu", + "name": "Torrentz2eu", + "fields": [ + { + "order": 0, + "name": "definitionFile", + "value": "torrentz2eu", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 1, + "name": "baseUrl", + "label": "Base Url", + "helpText": "Select which baseurl Prowlarr will use for requests to the site", + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "getUrls" + }, + { + "order": 2, + "name": "baseSettings.queryLimit", + "label": "Query Limit", + "helpText": "The number of queries within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 3, + "name": "baseSettings.grabLimit", + "label": "Grab Limit", + "helpText": "The number of grabs within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 4, + "name": "torrentBaseSettings.appMinimumSeeders", + "label": "Apps Minimum Seeders", + "helpText": "Minimum seeders required by the Applications for the indexer to grab, empty is Sync profile's default", + "type": "number", + "advanced": true + }, + { + "order": 5, + "name": "torrentBaseSettings.seedRatio", + "label": "Seed Ratio", + "helpText": "The ratio a torrent should reach before stopping, empty is app's default", + "type": "textbox", + "advanced": true + }, + { + "order": 6, + "name": "torrentBaseSettings.seedTime", + "label": "Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 7, + "name": "torrentBaseSettings.packSeedTime", + "label": "Pack Seed Time", + "unit": "minutes", + "helpText": "The time a pack (season or discography) torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + } + ], + "implementationName": "Cardigann", + "implementation": "Cardigann", + "configContract": "CardigannSettings", + "infoLink": "https://wiki.servarr.com/prowlarr/supported-indexers#torrentz2eu", + "tags": [], + "id": 63 + }, + { + "indexerUrls": [ + "https://vsttorrentz.net/" + ], + "legacyUrls": [ + "https://vsttorrents.net/", + "https://looptorrent.net/" + ], + "definitionName": "vsttorrents", + "description": "VST Torrentz is a Public site for AUDIO apps, plugins and samples", + "language": "en-US", + "encoding": "Unicode (UTF-8)", + "enable": true, + "redirect": false, + "supportsRss": true, + "supportsSearch": true, + "supportsRedirect": false, + "supportsPagination": false, + "appProfileId": 1, + "protocol": "torrent", + "privacy": "public", + "capabilities": { + "limitsMax": 100, + "limitsDefault": 100, + "categories": [ + { + "id": 4000, + "name": "PC", + "subCategories": [] + } + ], + "supportsRawSearch": false, + "searchParams": [ + "q", + "q" + ], + "tvSearchParams": [], + "movieSearchParams": [], + "musicSearchParams": [], + "bookSearchParams": [] + }, + "priority": 25, + "added": "2023-06-03T19:05:51Z", + "sortName": "vst torrentz", + "name": "VST Torrentz", + "fields": [ + { + "order": 0, + "name": "definitionFile", + "value": "vsttorrents", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 1, + "name": "baseUrl", + "label": "Base Url", + "helpText": "Select which baseurl Prowlarr will use for requests to the site", + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "getUrls" + }, + { + "order": 2, + "name": "baseSettings.queryLimit", + "label": "Query Limit", + "helpText": "The number of queries within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 3, + "name": "baseSettings.grabLimit", + "label": "Grab Limit", + "helpText": "The number of grabs within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 4, + "name": "torrentBaseSettings.appMinimumSeeders", + "label": "Apps Minimum Seeders", + "helpText": "Minimum seeders required by the Applications for the indexer to grab, empty is Sync profile's default", + "type": "number", + "advanced": true + }, + { + "order": 5, + "name": "torrentBaseSettings.seedRatio", + "label": "Seed Ratio", + "helpText": "The ratio a torrent should reach before stopping, empty is app's default", + "type": "textbox", + "advanced": true + }, + { + "order": 6, + "name": "torrentBaseSettings.seedTime", + "label": "Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 7, + "name": "torrentBaseSettings.packSeedTime", + "label": "Pack Seed Time", + "unit": "minutes", + "helpText": "The time a pack (season or discography) torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + } + ], + "implementationName": "Cardigann", + "implementation": "Cardigann", + "configContract": "CardigannSettings", + "infoLink": "https://wiki.servarr.com/prowlarr/supported-indexers#vsttorrents", + "tags": [], + "id": 57 + }, + { + "indexerUrls": [ + "https://vstorrent.org/" + ], + "legacyUrls": [], + "definitionName": "vstorrent", + "description": "VSTorrent is a Public site for AUDIO apps, plugins and samples", + "language": "en-US", + "encoding": "Unicode (UTF-8)", + "enable": true, + "redirect": false, + "supportsRss": true, + "supportsSearch": true, + "supportsRedirect": false, + "supportsPagination": false, + "appProfileId": 1, + "protocol": "torrent", + "privacy": "public", + "capabilities": { + "limitsMax": 100, + "limitsDefault": 100, + "categories": [ + { + "id": 4000, + "name": "PC", + "subCategories": [] + } + ], + "supportsRawSearch": false, + "searchParams": [ + "q", + "q" + ], + "tvSearchParams": [], + "movieSearchParams": [], + "musicSearchParams": [], + "bookSearchParams": [] + }, + "priority": 25, + "added": "2023-06-03T19:05:55Z", + "sortName": "vstorrent", + "name": "VSTorrent", + "fields": [ + { + "order": 0, + "name": "definitionFile", + "value": "vstorrent", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 1, + "name": "baseUrl", + "label": "Base Url", + "helpText": "Select which baseurl Prowlarr will use for requests to the site", + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "getUrls" + }, + { + "order": 2, + "name": "baseSettings.queryLimit", + "label": "Query Limit", + "helpText": "The number of queries within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 3, + "name": "baseSettings.grabLimit", + "label": "Grab Limit", + "helpText": "The number of grabs within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 4, + "name": "torrentBaseSettings.appMinimumSeeders", + "label": "Apps Minimum Seeders", + "helpText": "Minimum seeders required by the Applications for the indexer to grab, empty is Sync profile's default", + "type": "number", + "advanced": true + }, + { + "order": 5, + "name": "torrentBaseSettings.seedRatio", + "label": "Seed Ratio", + "helpText": "The ratio a torrent should reach before stopping, empty is app's default", + "type": "textbox", + "advanced": true + }, + { + "order": 6, + "name": "torrentBaseSettings.seedTime", + "label": "Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 7, + "name": "torrentBaseSettings.packSeedTime", + "label": "Pack Seed Time", + "unit": "minutes", + "helpText": "The time a pack (season or discography) torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + } + ], + "implementationName": "Cardigann", + "implementation": "Cardigann", + "configContract": "CardigannSettings", + "infoLink": "https://wiki.servarr.com/prowlarr/supported-indexers#vstorrent", + "tags": [], + "id": 58 + }, + { + "indexerUrls": [ + "https://xxxclub.to/" + ], + "legacyUrls": [], + "definitionName": "xxxclub", + "description": "XXXClub is a Public torrent site for 3X", + "language": "en-US", + "encoding": "Unicode (UTF-8)", + "enable": true, + "redirect": false, + "supportsRss": true, + "supportsSearch": true, + "supportsRedirect": false, + "supportsPagination": false, + "appProfileId": 1, + "protocol": "torrent", + "privacy": "public", + "capabilities": { + "limitsMax": 100, + "limitsDefault": 100, + "categories": [ + { + "id": 6000, + "name": "XXX", + "subCategories": [ + { + "id": 6080, + "name": "XXX/SD", + "subCategories": [] + }, + { + "id": 6040, + "name": "XXX/x264", + "subCategories": [] + }, + { + "id": 6045, + "name": "XXX/UHD", + "subCategories": [] + }, + { + "id": 6090, + "name": "XXX/WEB-DL", + "subCategories": [] + }, + { + "id": 6060, + "name": "XXX/ImageSet", + "subCategories": [] + }, + { + "id": 6070, + "name": "XXX/Other", + "subCategories": [] + } + ] + }, + { + "id": 100000, + "name": "XXX 480p/SD", + "subCategories": [] + }, + { + "id": 100001, + "name": "XXX 720p/HD", + "subCategories": [] + }, + { + "id": 100002, + "name": "XXX 1080p/FullHD", + "subCategories": [] + }, + { + "id": 100004, + "name": "XXX 2160p/UHD/4K", + "subCategories": [] + }, + { + "id": 100003, + "name": "XXX Movies/DVD/WEB", + "subCategories": [] + }, + { + "id": 100005, + "name": "XXX IMAGESET", + "subCategories": [] + }, + { + "id": 100006, + "name": "XXX VR", + "subCategories": [] + } + ], + "supportsRawSearch": false, + "searchParams": [ + "q", + "q" + ], + "tvSearchParams": [], + "movieSearchParams": [], + "musicSearchParams": [], + "bookSearchParams": [] + }, + "priority": 25, + "added": "2023-06-03T19:05:58Z", + "sortName": "xxxclub", + "name": "XXXClub", + "fields": [ + { + "order": 0, + "name": "definitionFile", + "value": "xxxclub", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 1, + "name": "baseUrl", + "label": "Base Url", + "helpText": "Select which baseurl Prowlarr will use for requests to the site", + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "getUrls" + }, + { + "order": 2, + "name": "baseSettings.queryLimit", + "label": "Query Limit", + "helpText": "The number of queries within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 3, + "name": "baseSettings.grabLimit", + "label": "Grab Limit", + "helpText": "The number of grabs within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 4, + "name": "torrentBaseSettings.appMinimumSeeders", + "label": "Apps Minimum Seeders", + "helpText": "Minimum seeders required by the Applications for the indexer to grab, empty is Sync profile's default", + "type": "number", + "advanced": true + }, + { + "order": 5, + "name": "torrentBaseSettings.seedRatio", + "label": "Seed Ratio", + "helpText": "The ratio a torrent should reach before stopping, empty is app's default", + "type": "textbox", + "advanced": true + }, + { + "order": 6, + "name": "torrentBaseSettings.seedTime", + "label": "Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 7, + "name": "torrentBaseSettings.packSeedTime", + "label": "Pack Seed Time", + "unit": "minutes", + "helpText": "The time a pack (season or discography) torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 0, + "name": "sort", + "label": "Sort requested from site", + "value": 1, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "seeders", + "order": 0 + }, + { + "value": 1, + "name": "size", + "order": 0 + }, + { + "value": 2, + "name": "created", + "order": 0 + } + ] + }, + { + "order": 1, + "name": "type", + "label": "Order requested from site", + "value": 1, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "asc", + "order": 0 + }, + { + "value": 1, + "name": "desc", + "order": 0 + } + ] + } + ], + "implementationName": "Cardigann", + "implementation": "Cardigann", + "configContract": "CardigannSettings", + "infoLink": "https://wiki.servarr.com/prowlarr/supported-indexers#xxxclub", + "tags": [], + "id": 59 + }, + { + "indexerUrls": [ + "https://yts.mx/", + "https://yts.unblockit.ing/", + "https://yts.ninjaproxy1.com/", + "https://yts.mrunblock.bond/", + "https://yts.nocensor.cloud/" + ], + "legacyUrls": [ + "https://yts.ag/", + "https://yts.am/", + "https://yts.lt/", + "https://yts.nocensor.biz/", + "https://yts.nocensor.sbs/", + "https://yts.unblockit.cat/", + "https://yts.unblockit.nz/", + "https://yts.nocensor.world/", + "https://yts.unblockit.page/", + "https://yts.unblockit.pet/", + "https://yts.nocensor.lol/", + "https://yts.unblockit.ink/", + "https://yts.nocensor.art/", + "https://yts.unblockit.bio/", + "https://yts.unblockit.boo/", + "https://yts.mrunblock.guru/", + "https://yts.unblockit.click/", + "https://yts.unblockit.asia/", + "https://yts.unblockit.mov/", + "https://yts.mrunblock.life/", + "https://yts.unblockit.rsvp/", + "https://yts.nocensor.click/", + "https://yts.unblockninja.com/", + "https://yts.unblockit.vegas/", + "https://yts.unblockit.esq/", + "https://yts.unblockit.zip/", + "https://yts.unblockit.foo/" + ], + "definitionName": "yts", + "description": "YTS is a Public torrent site specialising in HD movies of small size", + "language": "en-US", + "encoding": "Unicode (UTF-8)", + "enable": true, + "redirect": false, + "supportsRss": true, + "supportsSearch": true, + "supportsRedirect": false, + "supportsPagination": false, + "appProfileId": 1, + "protocol": "torrent", + "privacy": "public", + "capabilities": { + "limitsMax": 100, + "limitsDefault": 100, + "categories": [ + { + "id": 2000, + "name": "Movies", + "subCategories": [ + { + "id": 2040, + "name": "Movies/HD", + "subCategories": [] + }, + { + "id": 2045, + "name": "Movies/UHD", + "subCategories": [] + }, + { + "id": 2060, + "name": "Movies/3D", + "subCategories": [] + } + ] + }, + { + "id": 100045, + "name": "Movies/x264/720p", + "subCategories": [] + }, + { + "id": 100044, + "name": "Movies/x264/1080p", + "subCategories": [] + }, + { + "id": 100046, + "name": "Movies/x264/2160p", + "subCategories": [] + }, + { + "id": 100047, + "name": "Movies/x264/3D", + "subCategories": [] + } + ], + "supportsRawSearch": false, + "searchParams": [ + "q", + "q" + ], + "tvSearchParams": [], + "movieSearchParams": [ + "q", + "imdbId" + ], + "musicSearchParams": [], + "bookSearchParams": [] + }, + "priority": 25, + "added": "2023-06-03T19:06:01Z", + "sortName": "yts", + "name": "YTS", + "fields": [ + { + "order": 0, + "name": "definitionFile", + "value": "yts", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 1, + "name": "baseUrl", + "label": "Base Url", + "helpText": "Select which baseurl Prowlarr will use for requests to the site", + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "getUrls" + }, + { + "order": 2, + "name": "baseSettings.queryLimit", + "label": "Query Limit", + "helpText": "The number of queries within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 3, + "name": "baseSettings.grabLimit", + "label": "Grab Limit", + "helpText": "The number of grabs within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 4, + "name": "torrentBaseSettings.appMinimumSeeders", + "label": "Apps Minimum Seeders", + "helpText": "Minimum seeders required by the Applications for the indexer to grab, empty is Sync profile's default", + "type": "number", + "advanced": true + }, + { + "order": 5, + "name": "torrentBaseSettings.seedRatio", + "label": "Seed Ratio", + "helpText": "The ratio a torrent should reach before stopping, empty is app's default", + "type": "textbox", + "advanced": true + }, + { + "order": 6, + "name": "torrentBaseSettings.seedTime", + "label": "Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 7, + "name": "torrentBaseSettings.packSeedTime", + "label": "Pack Seed Time", + "unit": "minutes", + "helpText": "The time a pack (season or discography) torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + } + ], + "implementationName": "Cardigann", + "implementation": "Cardigann", + "configContract": "CardigannSettings", + "infoLink": "https://wiki.servarr.com/prowlarr/supported-indexers#yts", + "tags": [], + "id": 60 + }, + { + "indexerUrls": [ + "https://www.zetorrents.pw/", + "https://zetorrents.mrunblock.bond/", + "https://zetorrents.nocensor.cloud/" + ], + "legacyUrls": [ + "https://www.zetorrents.co/", + "https://www.zetorrents.io/", + "https://wvw.zetorrents.io/", + "https://vww.zetorrents.io/", + "https://wwv.zetorrents.io/", + "https://ww1.zetorrents.io/", + "https://www.zetorrents.org/", + "https://wvw.zetorrents.org/", + "https://www.zetorrents.cc/", + "https://www.zetorrents.tv/", + "https://www.zetorrents.bz/", + "https://www.zetorrents.nl/", + "https://zetorrents.nocensor.world/", + "https://www.zetorrents.biz/", + "https://zetorrents.nocensor.lol/", + "https://zetorrents.nocensor.art/", + "https://www.zetorrents.ch/", + "https://zetorrents.mrunblock.guru/", + "https://zetorrents.mrunblock.life/", + "https://zetorrents.nocensor.click/" + ], + "definitionName": "zetorrents", + "description": "zetorrents is a FRENCH Public site for MOVIES / TV / GENERAL", + "language": "fr-FR", + "encoding": "Unicode (UTF-8)", + "enable": true, + "redirect": false, + "supportsRss": true, + "supportsSearch": true, + "supportsRedirect": false, + "supportsPagination": false, + "appProfileId": 1, + "protocol": "torrent", + "privacy": "public", + "capabilities": { + "limitsMax": 100, + "limitsDefault": 100, + "categories": [ + { + "id": 0, + "name": "Other", + "subCategories": [] + } + ], + "supportsRawSearch": true, + "searchParams": [ + "q", + "q" + ], + "tvSearchParams": [ + "q", + "season", + "ep" + ], + "movieSearchParams": [ + "q" + ], + "musicSearchParams": [], + "bookSearchParams": [] + }, + "priority": 25, + "added": "2023-06-03T18:53:49Z", + "sortName": "zetorrents", + "name": "zetorrents", + "fields": [ + { + "order": 0, + "name": "definitionFile", + "value": "zetorrents", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 1, + "name": "baseUrl", + "label": "Base Url", + "helpText": "Select which baseurl Prowlarr will use for requests to the site", + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "getUrls" + }, + { + "order": 2, + "name": "baseSettings.queryLimit", + "label": "Query Limit", + "helpText": "The number of queries within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 3, + "name": "baseSettings.grabLimit", + "label": "Grab Limit", + "helpText": "The number of grabs within a rolling 24 hour period Prowlarr will allow to the site", + "type": "number", + "advanced": true + }, + { + "order": 4, + "name": "torrentBaseSettings.appMinimumSeeders", + "label": "Apps Minimum Seeders", + "helpText": "Minimum seeders required by the Applications for the indexer to grab, empty is Sync profile's default", + "type": "number", + "advanced": true + }, + { + "order": 5, + "name": "torrentBaseSettings.seedRatio", + "label": "Seed Ratio", + "helpText": "The ratio a torrent should reach before stopping, empty is app's default", + "type": "textbox", + "advanced": true + }, + { + "order": 6, + "name": "torrentBaseSettings.seedTime", + "label": "Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 7, + "name": "torrentBaseSettings.packSeedTime", + "label": "Pack Seed Time", + "unit": "minutes", + "helpText": "The time a pack (season or discography) torrent should be seeded before stopping, empty is app's default", + "type": "number", + "advanced": true + }, + { + "order": 0, + "name": "info_8000", + "label": "About zetorrents Categories", + "value": "zetorrents does not return categories in its search results.
To add to your Apps' Torznab indexer, replace all categories with 8000(Other).", + "type": "info", + "advanced": false + }, + { + "order": 1, + "name": "multilang", + "label": "Replace MULTi by another language in release name", + "value": false, + "type": "checkbox", + "advanced": false + }, + { + "order": 2, + "name": "multilanguage", + "label": "Replace MULTi by this language", + "value": 1, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "ENGLISH", + "order": 0 + }, + { + "value": 1, + "name": "FRENCH", + "order": 0 + }, + { + "value": 2, + "name": "MULTi ENGLISH", + "order": 0 + }, + { + "value": 3, + "name": "MULTi FRENCH", + "order": 0 + }, + { + "value": 4, + "name": "MULTi VOSTFR", + "order": 0 + }, + { + "value": 5, + "name": "VOSTFR", + "order": 0 + } + ] + }, + { + "order": 3, + "name": "vostfr", + "label": "Replace VOSTFR and SUBFRENCH with ENGLISH", + "value": false, + "type": "checkbox", + "advanced": false + } + ], + "implementationName": "Cardigann", + "implementation": "Cardigann", + "configContract": "CardigannSettings", + "infoLink": "https://wiki.servarr.com/prowlarr/supported-indexers#zetorrents", + "tags": [], + "id": 1 + } +] diff --git a/prowlarr_radarr_app.json b/prowlarr_radarr_app.json new file mode 100644 index 0000000..407d0e4 --- /dev/null +++ b/prowlarr_radarr_app.json @@ -0,0 +1,63 @@ +{ + "syncLevel": "fullSync", + "name": "Radarr", + "fields": [ + { + "order": 0, + "name": "prowlarrUrl", + "label": "Prowlarr Server", + "helpText": "Prowlarr server URL as Radarr sees it, including http(s)://, port, and urlbase if needed", + "value": "http://prowlarr:9696", + "type": "textbox", + "advanced": false, + "placeholder": "http://localhost:9696", + "isFloat": false + }, + { + "order": 1, + "name": "baseUrl", + "label": "Radarr Server", + "helpText": "URL used to connect to Radarr server, including http(s)://, port, and urlbase if required", + "value": "http://radarr:7878", + "type": "textbox", + "advanced": false, + "placeholder": "http://radarr:7878", + "isFloat": false + }, + { + "order": 2, + "name": "apiKey", + "label": "API Key", + "helpText": "The ApiKey generated by Radarr in Settings/General", + "value" : "RADARR_API_KEY", + "type": "textbox", + "advanced": false, + "isFloat": false + }, + { + "order": 3, + "name": "syncCategories", + "label": "Sync Categories", + "helpText": "Only Indexers that support these categories will be synced", + "value": [ + 2000, + 2010, + 2020, + 2030, + 2040, + 2045, + 2050, + 2060, + 2070, + 2080, + 2090 + ] + } + ], + "implementationName": "Radarr", + "implementation": "Radarr", + "configContract": "RadarrSettings", + "infoLink": "https://wiki.servarr.com/prowlarr/supported#radarr", + "tags": [], + "presets": [] + } diff --git a/prowlarr_sonarr_app.json b/prowlarr_sonarr_app.json new file mode 100644 index 0000000..2de391d --- /dev/null +++ b/prowlarr_sonarr_app.json @@ -0,0 +1,79 @@ +{ + "name" : "Sonarr", + "syncLevel": "fullSync", + "fields": [ + { + "order": 0, + "name": "prowlarrUrl", + "label": "Prowlarr Server", + "helpText": "Prowlarr server URL as Sonarr sees it, including http(s)://, port, and urlbase if needed", + "value": "http://prowlarr:9696", + "type": "textbox", + "advanced": false, + "placeholder": "http://localhost:9696", + "isFloat": false + }, + { + "order": 1, + "name": "baseUrl", + "label": "Sonarr Server", + "helpText": "URL used to connect to Sonarr server, including http(s)://, port, and urlbase if required", + "value": "http://sonarr:8989", + "type": "textbox", + "advanced": false, + "placeholder": "http://localhost:8989", + "isFloat": false + }, + { + "order": 2, + "name": "apiKey", + "label": "API Key", + "helpText": "The ApiKey generated by Sonarr in Settings/General", + "type": "textbox", + "value" : "SONARR_API_KEY", + "advanced": false, + "isFloat": false + }, + { + "order": 3, + "name": "syncCategories", + "label": "Sync Categories", + "helpText": "Only Indexers that support these categories will be synced", + "value": [ + 5000, + 5010, + 5020, + 5030, + 5040, + 5045, + 5050, + 5090 + ] + }, + { + "order": 4, + "name": "animeSyncCategories", + "label": "Anime Sync Categories", + "helpText": "Only Indexers that support these categories will be synced", + "value": [ + 5070 + ] + }, + { + "order": 5, + "name": "syncAnimeStandardFormatSearch", + "label": "Sync Anime Standard Format Search", + "helpText": "Sync also searching for anime using the standard numbering", + "value": false, + "type": "checkbox", + "advanced": true, + "isFloat": false + } + ], + "implementationName": "Sonarr", + "implementation": "Sonarr", + "configContract": "SonarrSettings", + "infoLink": "https://wiki.servarr.com/prowlarr/supported#sonarr", + "tags": [], + "presets": [] + } diff --git a/transmission.json b/transmission.json new file mode 100644 index 0000000..c3f5ada --- /dev/null +++ b/transmission.json @@ -0,0 +1,154 @@ +{ + "enable": true, + "protocol": "torrent", + "priority": 1, + "removeCompletedDownloads": true, + "removeFailedDownloads": true, + "name": "Transmission", + "fields": [ + { + "order": 0, + "name": "host", + "label": "Host", + "value": "transmission", + "type": "textbox", + "advanced": false, + "privacy": "normal", + "isFloat": false + }, + { + "order": 1, + "name": "port", + "label": "Port", + "value": 9091, + "type": "textbox", + "advanced": false, + "privacy": "normal", + "isFloat": false + }, + { + "order": 2, + "name": "useSsl", + "label": "Use SSL", + "helpText": "Use secure connection when connection to Transmission", + "value": false, + "type": "checkbox", + "advanced": false, + "privacy": "normal", + "isFloat": false + }, + { + "order": 3, + "name": "urlBase", + "label": "URL Base", + "helpText": "Adds a prefix to the transmission rpc url, eg http://[host]:[port]/[urlBase]/rpc, defaults to '/transmission/'", + "value": "/transmission/", + "type": "textbox", + "advanced": true, + "privacy": "normal", + "isFloat": false + }, + { + "order": 4, + "name": "username", + "label": "Username", + "value": "TRANSMISSION_USER", + "type": "textbox", + "advanced": false, + "privacy": "userName", + "isFloat": false + }, + { + "order": 5, + "name": "password", + "label": "Password", + "type": "password", + "value": "TRANSMISSION_PASSWORD", + "advanced": false, + "privacy": "password", + "isFloat": false + }, + { + "order": 6, + "name": "tvCategory", + "label": "Category", + "helpText": "Adding a category specific to Sonarr avoids conflicts with unrelated non-Sonarr downloads. Using a category is optional, but strongly recommended. Creates a [category] subdirectory in the output directory.", + "type": "textbox", + "advanced": false, + "privacy": "normal", + "isFloat": false + }, + { + "order": 7, + "name": "tvDirectory", + "label": "Directory", + "helpText": "Optional location to put downloads in, leave blank to use the default Transmission location", + "type": "textbox", + "advanced": true, + "privacy": "normal", + "isFloat": false + }, + { + "order": 8, + "name": "recentTvPriority", + "label": "Recent Priority", + "helpText": "Priority to use when grabbing episodes that aired within the last 14 days", + "value": 0, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "Last", + "order": 0 + }, + { + "value": 1, + "name": "First", + "order": 1 + } + ], + "privacy": "normal", + "isFloat": false + }, + { + "order": 9, + "name": "olderTvPriority", + "label": "Older Priority", + "helpText": "Priority to use when grabbing episodes that aired over 14 days ago", + "value": 0, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "Last", + "order": 0 + }, + { + "value": 1, + "name": "First", + "order": 1 + } + ], + "privacy": "normal", + "isFloat": false + }, + { + "order": 10, + "name": "addPaused", + "label": "Add Paused", + "value": false, + "type": "checkbox", + "advanced": false, + "privacy": "normal", + "isFloat": false + } + ], + "implementationName": "Transmission", + "implementation": "Transmission", + "configContract": "TransmissionSettings", + "infoLink": "https://wiki.servarr.com/sonarr/supported#transmission", + "tags": [], + "presets": [] +}