update: jackett fetching for trackers2.json
HDVinnie unit3d@protonmail.com
Fri, 29 Aug 2025 13:40:42 -0400
6 files changed,
1773 insertions(+),
238 deletions(-)
M
.github/workflows/update-jackett.yml
→
.github/workflows/update-jackett.yml
@@ -3,9 +3,12 @@ on:
schedule: - cron: '0 0 * * 0' # weekly workflow_dispatch: +permissions: + contents: write jobs: update-jackett: runs-on: ubuntu-latest + timeout-minutes: 20 steps: - name: Checkout repository uses: actions/checkout@v4@@ -13,17 +16,27 @@ - name: Set up Node.js
uses: actions/setup-node@v4 with: node-version: '20' + cache: 'npm' - name: Install dependencies - run: npm install + run: npm ci - name: Run Jackett fetch script run: node read.js + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + - name: Check for changes + id: diff + run: | + if git diff --quiet -- trackers2.json; then + echo "changed=false" >> $GITHUB_OUTPUT + else + echo "changed=true" >> $GITHUB_OUTPUT + fi - name: Commit and push changes + if: ${{ steps.diff.outputs.changed == 'true' }} run: | - git config --global user.name 'github-actions[bot]' - git config --global user.email 'github-actions[bot]@users.noreply.github.com' + git config user.name 'github-actions[bot]' + git config user.email 'github-actions[bot]@users.noreply.github.com' git add trackers2.json git commit -m 'update: Jackett trackers2.json' git push - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
M
README.md
→
README.md
@@ -5,7 +5,7 @@ [](https://hdvinnie.github.io/Private-Trackers-Spreadsheet/)
[](https://github.com/hdvinnie/Private-Trackers-Spreadsheet/stargazers) [](https://github.com/hdvinnie/Private-Trackers-Spreadsheet/network) -*A interactive database of private BitTorrent tracker statistics with sorting and filtering capabilities. Built using AlpineJS, HTML5 and CSS3* +*"A interactive database of private BitTorrent tracker statistics with sorting and filtering capabilities. Built using AlpineJS, HTML5 and CSS3"* </div>@@ -39,10 +39,20 @@ npm install
# Update Jackett tracker data (optional) node read.js - -# Serve locally (any static server) -npx serve . +# or via npm script +npm run update:jackett ``` + +> Optional: to increase GitHub API rate limits, set an access token: +> +> macOS/Linux +> ```bash +> export GITHUB_TOKEN=ghp_yourtoken +> ``` +> Windows (PowerShell) +> ```powershell +> $Env:GITHUB_TOKEN = "ghp_yourtoken" +> ``` ---
M
package-lock.json
→
package-lock.json
@@ -7,6 +7,9 @@ "packages": {
"": { "name": "private-trackers-spreadsheet", "version": "1.0.0", + "dependencies": { + "undici": "^6.19.8" + }, "devDependencies": { "js-yaml": "^3.13.1" }@@ -51,6 +54,15 @@ "version": "1.0.3",
"resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", "dev": true + }, + "node_modules/undici": { + "version": "6.21.3", + "resolved": "https://registry.npmjs.org/undici/-/undici-6.21.3.tgz", + "integrity": "sha512-gBLkYIlEnSp8pFbT64yFgGE6UIB9tAkhukC23PmMDCe5Nd+cRqKxSjw5y54MK2AZMgZfJWMaNE4nYUHgi1XEOw==", + "license": "MIT", + "engines": { + "node": ">=18.17" + } } } }
M
package.json
→
package.json
@@ -2,9 +2,13 @@ {
"name": "private-trackers-spreadsheet", "version": "1.0.0", "description": "[Private Trackers Spreadsheet](https://hdvinnie.github.io/Private-Trackers-Spreadsheet/) - This comparative table of torrent trackers originates from discussions on [Reddit](https://www.reddit.com/r/trackers/comments/ehd7oy/new_private_trackers_spreadsheet/).", - "dependencies": {}, + "dependencies": { + "undici": "^6.19.8" + }, "devDependencies": { "js-yaml": "^3.13.1" }, - "scripts": {} + "scripts": { + "update:jackett": "node read.js" + } }
M
read.js
→
read.js
@@ -1,10 +1,14 @@
const path = require('path'); const fs = require('fs'); const yaml = require('js-yaml'); +const { fetch } = require('undici'); -// joining path of directory -const directoryPath = path.join(__dirname, 'Jackett/src/Jackett.Common/Definitions'); -// passsing directoryPath and callback function +const OWNER = 'Jackett'; +const REPO = 'Jackett'; +const BRANCH = 'master'; +const GITHUB_API = 'https://api.github.com'; +const RAW_BASE = 'https://raw.githubusercontent.com'; +const GITHUB_TOKEN = process.env.GITHUB_TOKEN || ''; let trackers = {}; trackers.trackers = []@@ -14,254 +18,358 @@ const mainJson = JSON.parse(fs.readFileSync('trackers.json'));
const mainIgnore = []; mainJson.trackers.forEach(function(obj) { - mainIgnore.push(obj.Name.toLowerCase()); + mainIgnore.push(obj.Name.toLowerCase()); }); const customIgnore = [ - 'beyond-hd (oneurl)', - 'efecto doppler', - 'empornium2fa', - 'hdbits (api)', - 'hon3y hd', - 'insane tracker', - 'jptv', - 'm-team - tp', - 'mteamtp2fa', - 'racing4everyone (r4e)', - 'snowpt', - 'the geeks', - 'the place', - 'the vault', - 'totheglorycookie', - 'xwtorrents', + 'beyond-hd (oneurl)', + 'efecto doppler', + 'empornium2fa', + 'hdbits (api)', + 'hon3y hd', + 'insane tracker', + 'jptv', + 'm-team - tp', + 'mteamtp2fa', + 'racing4everyone (r4e)', + 'snowpt', + 'the geeks', + 'the place', + 'the vault', + 'totheglorycookie', + 'xwtorrents', ] const jackettIgnoreList = mainIgnore.concat(customIgnore); - -/*const categoriesPath = path.join(__dirname, 'Jackett/src/Jackett.Common/Models/TorznabCatType.generated.cs'); - -try { - const fileContents = fs.readFileSync(path.join(categoriesPath, file), 'utf8'); - // SubCategories -} catch (err) { - // -}*/ // clean up duplicate types // see Jackett/src/Jackett.Common/Models/TorznabCatType.generated.cs const cleanTypes = { - "audioaudiobook": "Audiobooks", - "audioforeign": "Audio", - "audiolossless": "Audio", - "audiomp3": "Audio", - "audioother": "Audio", - "audiovideo": "Audio", - "bookscomics": "Comics", - "booksebook": "Books", - "booksforeign": "Books", - "booksmagazines": "Magazines", - "booksmags": "Magazines", - "booksother": "Books", - "bookstechnical": "Books", - "console3ds": "Console", - "consolends": "Console", - "consoleother": "Console", - "consoleps3": "Console", - "consoleps4": "Console", - "consolepsp": "Console", - "consolepsvita": "Console", - "consolewii": "Console", - "consolewiiu": "Console", - "consolewiiwarevc": "Console", - "consolexbox": "Console", - "consolexbox360": "Console", - "consolexbox360dlc": "Console", - "consolexboxone": "Console", - "movies3d": "Movies", - "moviesbluray": "Movies", - "moviesdvd": "Movies", - "moviesforeign": "Movies", - "movieshd": "Movies", - "moviesother": "Movies", - "moviessd": "Movies", - "moviesuhd": "Movies", - "movieswebdl": "Movies", - "other": "General", - "otherhashed": "General", - "othermisc": "General", - "pc0day": "PC", - "pcgames": "Games", - "pciso": "PC", - "pcmac": "Mac Software", - "pcmobileandroid": "Android", - "pcmobileios": "iOS", - "pcmobileother": "Phone", - "pcphoneandroid": "Android", - "pcphoneios": "iOS", - "pcphoneother": "Phone", - "tvanime": "Anime", - "tvdocumentary": "TV", - "tvforeign": "TV", - "tvhd": "TV", - "tvother": "TV", - "tvsd": "TV", - "tvsport": "Sports", - "tvuhd": "TV", - "tvwebdl": "TV", - "xxxdvd": "XXX", - "xxximageset": "XXX", - "xxxother": "XXX", - "xxxpack": "XXX", - "xxxpacks": "XXX", - "xxxsd": "XXX", - "xxxuhd": "XXX", - "xxxwmv": "XXX", - "xxxx264": "XXX", - "xxxxvid": "XXX", + "audioaudiobook": "Audiobooks", + "audioforeign": "Audio", + "audiolossless": "Audio", + "audiomp3": "Audio", + "audioother": "Audio", + "audiovideo": "Audio", + "bookscomics": "Comics", + "booksebook": "Books", + "booksforeign": "Books", + "booksmagazines": "Magazines", + "booksmags": "Magazines", + "booksother": "Books", + "bookstechnical": "Books", + "console3ds": "Console", + "consolends": "Console", + "consoleother": "Console", + "consoleps3": "Console", + "consoleps4": "Console", + "consolepsp": "Console", + "consolepsvita": "Console", + "consolewii": "Console", + "consolewiiu": "Console", + "consolewiiwarevc": "Console", + "consolexbox": "Console", + "consolexbox360": "Console", + "consolexbox360dlc": "Console", + "consolexboxone": "Console", + "movies3d": "Movies", + "moviesbluray": "Movies", + "moviesdvd": "Movies", + "moviesforeign": "Movies", + "movieshd": "Movies", + "moviesother": "Movies", + "moviessd": "Movies", + "moviesuhd": "Movies", + "movieswebdl": "Movies", + "other": "General", + "otherhashed": "General", + "othermisc": "General", + "pc0day": "PC", + "pcgames": "Games", + "pciso": "PC", + "pcmac": "Mac Software", + "pcmobileandroid": "Android", + "pcmobileios": "iOS", + "pcmobileother": "Phone", + "pcphoneandroid": "Android", + "pcphoneios": "iOS", + "pcphoneother": "Phone", + "tvanime": "Anime", + "tvdocumentary": "TV", + "tvforeign": "TV", + "tvhd": "TV", + "tvother": "TV", + "tvsd": "TV", + "tvsport": "Sports", + "tvuhd": "TV", + "tvwebdl": "TV", + "xxxdvd": "XXX", + "xxximageset": "XXX", + "xxxother": "XXX", + "xxxpack": "XXX", + "xxxpacks": "XXX", + "xxxsd": "XXX", + "xxxuhd": "XXX", + "xxxwmv": "XXX", + "xxxx264": "XXX", + "xxxxvid": "XXX", } function cleanTypeDefinition(type) { - let types = new Map([ - ['Other', 'General'], - ]) + let types = new Map([ + ['Other', 'General'], + ]) - return types.get(type) || type + return types.get(type) || type } -fs.readdir(directoryPath, function (err, files) { - // handling error - if (err) { - return console.log('Unable to scan directory: ' + err); - } - // listing all files using forEach - files.forEach(function (file) { - // Do whatever you want to do with the file - try { - let fileContents = fs.readFileSync(path.join(directoryPath, file), 'utf8'); - // "json: true" helps with duplicated keys - let data = yaml.safeLoad(fileContents, {skipInvalid: true, json: true}); +function authHeaders(extra) { + const headers = { + 'User-Agent': 'private-trackers-spreadsheet/1.0', + 'Accept': 'application/vnd.github+json' + }; + if (GITHUB_TOKEN) { + headers['Authorization'] = `Bearer ${GITHUB_TOKEN}`; + } + return Object.assign(headers, extra || {}); +} - if (data.type === 'private') { - let tracker = { - name: '', - description: '', - type: '' - } - tracker.name = data.name - tracker.description = data.description - let type = [] +function sleep(ms) { + return new Promise((r) => setTimeout(r, ms)); +} - if (data.caps && data.caps.categorymappings) { - data.caps.categorymappings.forEach(function(category) { - type.push(cleanTypeDefinition(category.cat.split("/")[0])) - }) - // remove duplicates - type = Array.from(new Set(type)) - tracker.type = type.join(", ") - } else if (data.caps.categories && data.caps.categorymappings) { - data.caps.categorymappings.forEach(function(category) { - //console.log(category) - type.push(cleanTypeDefinition(category.cat.split("/")[0])) - }) - console.log(type) - // remove duplicates - type = Array.from(new Set(type)) - tracker.type = type.join(", ") - //console.log(tracker.type) - } - //console.log(tracker) - trackers.trackers.push(tracker) - } - } catch (err) { - // YAMLException - console.log(err); - } - }); +async function fetchWithRetry(url, options = {}, maxAttempts = 6) { + let attempt = 0; + let lastError; + while (attempt < maxAttempts) { + attempt++; + const res = await fetch(url, options); + if (res.ok) { + return res; + } + const status = res.status; + const body = await res.text(); + // Respect Retry-After header if present + const retryAfter = parseInt(res.headers.get('retry-after') || '0', 10); + if (status === 429 || status === 502 || status === 503 || status === 504 || (status === 403 && body.includes('abuse detection'))) { + const baseDelay = retryAfter > 0 ? retryAfter * 1000 : Math.min(60000, 500 * Math.pow(2, attempt)); + const jitter = Math.floor(Math.random() * 250); + await sleep(baseDelay + jitter); + continue; + } + lastError = new Error(`HTTP ${status}: ${body}`); + break; + } + if (!lastError) { + lastError = new Error('Max retry attempts exceeded'); + } + throw lastError; +} - console.log('Without indexers: ' + trackers.trackers.length); +async function githubJson(url) { + const res = await fetchWithRetry(url, { headers: authHeaders() }); + return res.json(); +} - const indexersPath = path.join(__dirname, 'Jackett/src/Jackett.Common/Indexers'); +async function githubRawByPath(owner, repo, branch, filePath) { + const url = `${RAW_BASE}/${owner}/${repo}/${branch}/${filePath}`; + // raw host ignores GitHub API Accept headers; send a UA only + const res = await fetchWithRetry(url, { headers: { 'User-Agent': 'private-trackers-spreadsheet/1.0' } }); + return res.text(); +} - fs.readdir(indexersPath, function (err, files) { - // handling error - if (err) { - return console.log('Unable to scan directory: ' + err); - } - // listing all files using forEach - files.forEach(function (file) { - // Skip directories - if (!file.endsWith('.cs')) { - return; - } - // Do whatever you want to do with the file - try { - const fileContents = fs.readFileSync(path.join(indexersPath, file), 'utf8'); - const typePrivate = /Type\s+=\s+"private"/i - const typeAvistaz = /AvistazTracker/i - const isPrivate = typePrivate.test(fileContents) || typeAvistaz.test(fileContents) - if (isPrivate) { - let tracker = { - name: '', - description: '', - type: '' - } +async function getBranchSha(owner, repo, branch) { + const url = `${GITHUB_API}/repos/${owner}/${repo}/branches/${encodeURIComponent(branch)}`; + const data = await githubJson(url); + if (!data || !data.commit || !data.commit.sha) { + throw new Error('Invalid branch response from GitHub'); + } + return data.commit.sha; +} - const res = fileContents.match(/:\s+base\([^{]*"/s) - if (res !== null) { - const lines = res[0].match(/[^\r\n]+/g); - for (const line of lines) { - const name = line.match(/.*name:\s+"([\w\s.\-()]+)"/i) - if (name) { - tracker.name = name[1] - } - else { - let name2 = line.match(/.*base\("([\w\s.\-()]+)"/i) - if (name2) { - tracker.name = name2[1] - } - } +async function getRepoTreeRecursive(owner, repo, branch) { + const branchSha = await getBranchSha(owner, repo, branch); + const url = `${GITHUB_API}/repos/${owner}/${repo}/git/trees/${branchSha}?recursive=1`; + const data = await githubJson(url); + if (!data || !data.tree) { + throw new Error('Invalid tree response from GitHub'); + } + return data.tree; +} - const description = line.match(/.*(?:desc|description):\s+"([^"]+)"/i) - if (description) { - tracker.description = description[1] - } - } - } +async function mapWithConcurrency(items, limit, mapper) { + const results = new Array(items.length); + let index = 0; + let active = 0; + return new Promise((resolve, reject) => { + const next = () => { + if (index >= items.length && active === 0) { + resolve(results); + return; + } + while (active < limit && index < items.length) { + const current = index++; + active++; + Promise.resolve() + .then(() => mapper(items[current], current)) + .then((value) => { results[current] = value; }) + .catch(reject) + .finally(() => { active--; next(); }); + } + }; + next(); + }); +} - let type = [] - const fileLines = fileContents.match(/[^\r\n]+/g) - for (const line of fileLines) { - if (line && line.includes("AddCategoryMapping")) { - const category = line.match(/TorznabCatType\.([^,]+),/i) - if (category) { - const toReplace = cleanTypes.hasOwnProperty(category[1].toLowerCase()) - if (toReplace) { - type.push(cleanTypes[category[1].toLowerCase()]) - } else { - type.push(category[1]) - } - } - } - } - // remove duplicates - type = Array.from(new Set(type)) - tracker.type = type.join(", ") +async function main() { + try { + console.log('Fetching Jackett repository tree…'); + const tree = await getRepoTreeRecursive(OWNER, REPO, BRANCH); - trackers.trackers.push(tracker) - } - } catch (err) { - console.log(err); - } - }); + const definitions = tree.filter((t) => t.type === 'blob' && + t.path.startsWith('src/Jackett.Common/Definitions/') && + (t.path.endsWith('.yml') || t.path.endsWith('.yaml'))); - console.log('With indexers: ' + trackers.trackers.length); + const indexers = tree.filter((t) => t.type === 'blob' && + t.path.startsWith('src/Jackett.Common/Indexers/') && + t.path.endsWith('.cs')); - trackers.trackers = trackers.trackers.filter((t) => !jackettIgnoreList.includes(t.name.toLowerCase())) - trackers.trackers.sort(function(a, b) { - return a.name.localeCompare(b.name) - }); + console.log(`Found ${definitions.length} definitions and ${indexers.length} indexers`); - let data = JSON.stringify(trackers); - fs.writeFileSync('trackers2.json', data); - }) -}); + let defsProcessed = 0; + // Parse Definitions YAML (low concurrency to avoid throttling) + await mapWithConcurrency(definitions, 3, async (entry) => { + try { + const content = await githubRawByPath(OWNER, REPO, BRANCH, entry.path); + let data = yaml.safeLoad(content, {skipInvalid: true, json: true}); + if (data && data.type === 'private') { + let tracker = { + name: '', + description: '', + type: '' + } + tracker.name = data.name + tracker.description = data.description + let type = [] + if (data.caps && data.caps.categorymappings) { + data.caps.categorymappings.forEach(function(category) { + type.push(cleanTypeDefinition(category.cat.split("/")[0])) + }) + type = Array.from(new Set(type)) + tracker.type = type.join(", ") + } else if (data.caps && data.caps.categories && data.caps.categorymappings) { + data.caps.categorymappings.forEach(function(category) { + type.push(cleanTypeDefinition(category.cat.split("/")[0])) + }) + type = Array.from(new Set(type)) + tracker.type = type.join(", ") + } + if (tracker.name && tracker.name.trim().length) { + trackers.trackers.push(tracker) + } + } + } catch (err) { + console.log(err); + } finally { + defsProcessed++; + if (defsProcessed % 25 === 0 || defsProcessed === definitions.length) { + console.log(`Definitions processed: ${defsProcessed}/${definitions.length}`); + } + } + }); + + console.log('Without indexers: ' + trackers.trackers.length); + + let idxProcessed = 0; + // Parse Indexers C# files (low concurrency) + await mapWithConcurrency(indexers, 2, async (entry) => { + try { + const fileContents = await githubRawByPath(OWNER, REPO, BRANCH, entry.path); + const typePrivate = /Type\s+=\s+"private"/i + const typeAvistaz = /AvistazTracker/i + const isPrivate = typePrivate.test(fileContents) || typeAvistaz.test(fileContents) + if (isPrivate) { + let tracker = { + name: '', + description: '', + type: '' + } + const res = fileContents.match(/:\s+base\([^{}]*"/s) + if (res !== null) { + const lines = res[0].match(/[^\r\n]+/g); + for (const line of lines) { + const name = line.match(/.*name:\s+"([\w\s.\-()]+)"/i) + if (name) { + tracker.name = name[1] + } + else { + let name2 = line.match(/.*base\("([\w\s.\-()]+)"/i) + if (name2) { + tracker.name = name2[1] + } + } + const description = line.match(/.*(?:desc|description):\s+"([^"]+)"/i) + if (description) { + tracker.description = description[1] + } + } + } + let type = [] + const fileLines = fileContents.match(/[^\r\n]+/g) + for (const line of fileLines) { + if (line && line.includes("AddCategoryMapping")) { + const category = line.match(/TorznabCatType\.([^,]+),/i) + if (category) { + const toReplace = cleanTypes.hasOwnProperty(category[1].toLowerCase()) + if (toReplace) { + type.push(cleanTypes[category[1].toLowerCase()]) + } else { + type.push(category[1]) + } + } + } + } + type = Array.from(new Set(type)) + tracker.type = type.join(", ") + if (tracker.name && tracker.name.trim().length) { + trackers.trackers.push(tracker) + } + } + } catch (err) { + console.log(err); + } finally { + idxProcessed++; + if (idxProcessed % 25 === 0 || idxProcessed === indexers.length) { + console.log(`Indexers processed: ${idxProcessed}/${indexers.length}`); + } + } + }); + + console.log('With indexers: ' + trackers.trackers.length); + + trackers.trackers = trackers.trackers.filter((t) => t.name && t.name.trim().length && !jackettIgnoreList.includes(t.name.toLowerCase())) + trackers.trackers.sort(function(a, b) { + return a.name.localeCompare(b.name) + }); + + const newJson = JSON.stringify(trackers, null, 2) + '\n'; + let oldJson = null; + try { + oldJson = fs.readFileSync('trackers2.json', 'utf8'); + } catch {} + if (oldJson === newJson) { + console.log('No changes; trackers2.json is up to date.'); + } else { + fs.writeFileSync('trackers2.json', newJson); + console.log('Updated trackers2.json'); + } + } catch (e) { + console.log('Unable to fetch from GitHub API: ' + e.message); + if (!GITHUB_TOKEN) { + console.log('Hint: set GITHUB_TOKEN to increase rate limits and avoid 403 errors.'); + } + process.exitCode = 1; + } +} + +main();
M
trackers2.json
→
trackers2.json
@@ -1,1 +1,1389 @@
-{"trackers":[{"name":"0day.kiev","description":"0day.kiev.ua is a UKRAINIAN Private Torrent Tracker for MOVIES / TV / GENERAL","type":"Movies, TV, PC, Audio, General"},{"name":"1ptbar","description":"1ptbar is a CHINESE Private Torrent Tracker for MOVIES / TV / E-LEARNING","type":"Movies, TV, Audio, PC, Books, General, XXX"},{"name":"3D Torrents","description":"3D Torrents (3DT) is a Private Torrent Tracker for 3D HD / BLURAY MOVIES","type":"Movies, PC, XXX, General, Audio"},{"name":"4thD","description":"4th Dimension is a Private Torrent Tracker for MOVIES / TV / GENERAL","type":"Movies, TV, PC, Audio, Books"},{"name":"52PT","description":"52PT is a CHINESE Private Torrent Tracker for HD MOVIES / TV","type":"Movies, TV, Audio, General, XXX"},{"name":"720pier","description":"720pier is a RUSSIAN Private Torrent Tracker for HD SPORTS","type":"TV"},{"name":"Abnormal","description":"General French Private Tracker","type":"TV, Movies, PC, Books"},{"name":"Across The Tasman","description":"ATT is a torrent site for Rugby and other sports played in Australia","type":""},{"name":"Aftershock","description":"Aftershock is a HUNGARIAN Private Torrent Tracker for MOVIES / GENERAL","type":"Movies, Books, Audio, XXX, PC, Console, General, TV"},{"name":"AGSVPT","description":"AGSVPT (Arctic Global Seed Vault) is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL","type":"Movies, TV, Audio, PC, Books, General"},{"name":"Aither (API)","description":"Aither is a Private Torrent Tracker for HD MOVIES / TV","type":"Movies, TV, Audio"},{"name":"Amigos Share Club","description":"Amigos Share Club is a Brazilian Private site for TV / MOVIES / GENERAL","type":"XXX, TV, PC, General, Books, Audio, Movies, Console"},{"name":"AnimeLovers (API)","description":"AnimeLovers is a Private tracker for ANIME / MANGA / DOUNGUA / MANHWA","type":"Movies, TV, XXX, Books, Audio"},{"name":"AnimeTorrents.ro","description":"AnimeTorrents.ro (Anime Torrents Romania) is a ROMANIAN Private Torrent Tracker for ANIME / MANGA","type":"TV, Movies, Books"},{"name":"AnimeWorld (API)","description":"AnimeWorld (AW) is a GERMAN Private site for ANIME / MANGA / HENTAI","type":"Movies, TV, Audio, PC, XXX, General, Books"},{"name":"Anthelion (API)","description":"Anthelion is a Private MOVIES tracker","type":"Movies, General"},{"name":"ArabaFenice","description":"Araba Fenice (Phoenix) is an ITALIAN Private site for TV / MOVIES / GENERAL","type":"Movies, TV, XXX, General, Audio, Books, Console, PC"},{"name":"ArabP2P","description":"ArabP2P is an ARABIC Private Torrent Tracker for MOVIES / TV / GENERAL","type":"Movies, TV, Audio, PC, Console, Books, General"},{"name":"ArabTorrents","description":"ArabTorrents is an ARABIC Private Torrent Tracker for MOVIES / TV / GENERAL","type":"Movies, TV, General, Audio, PC"},{"name":"AsianDVDClub","description":"AsianDVDClub (ADC) is a Private Torrent Tracker for Asian DVD and BluRay","type":"TV, Movies, General, Audio"},{"name":"Audiences","description":"Audiences is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL","type":"Movies, TV, Audio, Books, PC, General"},{"name":"Aussierul.es","description":"Aussierul.es is a torrent site for Aussie Rules Football played in Australia","type":""},{"name":"Azusa (梓喵)","description":"Azusa (梓喵) is a CHINESE Private Torrent Tracker focusing on Comics","type":"PC, Books, General, Audio"},{"name":"Back-ups","description":"Back-Ups is a Private Torrent Tracker for MOVIES / TV / GENERAL","type":"PC, TV, Audio, Console, Movies, Books, XXX"},{"name":"Beload","description":"Beload is a HUNGARIAN Private Torrent Tracker for MOVIES / TV / GENERAL","type":"Movies, Audio, PC, Books, TV, XXX"},{"name":"Best-Core","description":"Best-Core is a HUNGARIAN Private Tracker for MOVIES / TV","type":"Movies, Books, Audio, PC, General, Console, TV, XXX"},{"name":"Bit-Bázis","description":"Bit-Bázis is a HUNGARIAN Private Tracker for MOVIES / TV","type":"Movies, TV, Audio, Books, PC, XXX, General"},{"name":"Bitded","description":"Bitded is a THAI Private Torrent Tracker for MOVIES / TV / GENERAL","type":"General, TV, Books, Movies, Audio, PC, Console"},{"name":"Bithorlo","description":"Bithorlo (BHO) is a HUNGARIAN Private Torrent Tracker for MOVIES / GENERAL","type":"Books, Console, PC, Movies, TV, Audio, General, XXX"},{"name":"BitHUmen","description":"BitHUmen is a Hungarian Private site for TV / MOVIES / GENERAL","type":"Movies, XXX, TV, Books, Audio, PC, Console, General"},{"name":"Bitpalace","description":"Bitpalace is a Hungarian Private Torrent Tracker for MOVIES / TV / GENERAL","type":"Movies, Books, General, TV, PC, Console, XXX, Audio"},{"name":"BitPorn","description":"BitPorn is a HUNGARIAN Private Torrent Tracker for 3X","type":"XXX"},{"name":"BiTTuRK","description":"BiTTuRK is a Turkish Private Torrent Tracker for HD MOVIES / TV / GENERAL. This Indexer is for English only.","type":"Movies, XXX, TV, General, Audio, Console, PC, Books"},{"name":"BlueBird","description":"BlueBird is a RUSSIAN Private Torrent Tracker for HD MOVIES","type":"Movies, TV, Audio, XXX, General"},{"name":"BlurayTracker","description":"BlurayTracker is a CZECH Private Torrent Tracker for MOVIES / TV / GENERAL","type":"Movies, TV, PC, Audio, Console, Books, General"},{"name":"Blutopia (API)","description":"Blutopia (BLU) is a Private Torrent Tracker for HD MOVIES / TV","type":"Movies, General, TV, Audio"},{"name":"Boxing Torrents","description":"Boxing Torrents is a Private Torrent Tracker for BOXING","type":"TV"},{"name":"BTArg","description":"BTArg is an ARGENTINIAN Private Torrent Tracker for MOVIES / TV / GENERAL","type":"Movies, TV, XXX, Audio, PC, General"},{"name":"BTNext","description":"BTNext (BTNT) is a PORTUGUESE Private Torrent Tracker for 0DAY / GENERAL","type":"General, Movies, Console, TV, Audio, PC, Books, XXX"},{"name":"BTSCHOOL","description":"BTSCHOOL is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL","type":"Movies, TV, PC, Audio, General"},{"name":"BYRBT","description":"BYRBT is a CHINESE Private Torrent Tracker for HD MOVIES / TV / GENERAL","type":"Movies, TV, Audio, General, Console, PC"},{"name":"CapybaraBR (API)","description":"CapybaraBR is a BRAZILIAN Private Torrent Tracker for MOVIES / TV / GENERAL","type":"Movies, TV, Console, PC, Books, General"},{"name":"Carp-Hunter","description":"Carp-Hunter is a HUNGARIAN Private Torrent Tracker for MOVIES / TV / GENERAL","type":"Movies, Audio, PC, General, Books, TV, XXX"},{"name":"Carpathians","description":"Carpathians is a HUNGARIAN Private Torrent Tracker for 0DAY / GENERAL","type":"Books, Movies, Console, PC, Audio, TV, XXX"},{"name":"CarPT","description":"CarPT is a CHINESE Private Torrent Tracker for HD MOVIES / TV","type":"Movies, TV, Audio, General"},{"name":"CD File","description":"CD File is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL","type":"Movies, Audio, TV, General"},{"name":"CeskeForum","description":"CeskeForum is a CZECH Private Torrent Tracker for MOVIES / TV / GENERAL","type":"Movies, TV, Books, Audio, PC, General"},{"name":"CHDBits","description":"CHDBits is a CHINESE Private Torrent Tracker for HD MOVIES / TV","type":"Movies, TV, Audio, General"},{"name":"ChileBT (API)","description":"ChileBT is a CHILEAN Private Torrent Tracker for MOVIES / TV / GENERAL","type":"Movies, TV, Audio, General, PC, Books, XXX"},{"name":"Cinemageddon","description":"B-movie tracker","type":"Movies"},{"name":"CinemaMovieS_ZT","description":"CinemaMovieS_ZT is a POLISH Private Torrent Tracker for MOVIES / TV / GENERAL","type":"Movies, TV, PC, General, Audio, Books"},{"name":"Cinematik (API)","description":"A tracker for full BD and DVD discs of non-mainstream movies, niche cinema and arthouse.","type":"Movies, TV"},{"name":"Coastal-Crew","description":"Coastal-Crew is a GERMAN Private Torrent Tracker for MOVIES / TV / GENERAL","type":"TV, Movies, Audio, PC, Books, General, Console, XXX"},{"name":"ConCen","description":"ConCen (Conspiracy Central) is a Private conspiracy related torrent index","type":""},{"name":"CrabPT (蟹黄堡)","description":"CrabPT (蟹黄堡) is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL","type":"Movies, TV, Audio, General, Books, Console"},{"name":"CrazySpirits","description":"Crazy Spirits is a FRENCH Private Torrent Tracker for MOVIES / TV / GENERAL","type":"Movies, XXX, TV, PC, Console, Audio, Books"},{"name":"CrnaBerza","description":"Crna Berza is a BALKAN Private Torrent Tracker for MOVIES / TV / GENERAL","type":"Movies, PC, TV, Books, Audio, General, XXX"},{"name":"CRT2FA","description":"Cathode-Ray.Tube (CRT) is a Private Torrent Tracker for CLASSIC MOVIES / TV. This indexer uses cookie login for 2FA.","type":"PC, General, Movies, TV"},{"name":"cyanbug (大青虫)","description":"cyanbug (大青虫) is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL","type":"General, Audio, TV, Movies"},{"name":"Dajiao (打胶)","description":"Dajiao (打胶) is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL","type":"Console, Audio, General, Books, TV, Movies"},{"name":"DanishBytes (API)","description":"DanishBytes is a Private Danish Tracker","type":"Movies, TV, PC, Audio, Books"},{"name":"Das Unerwartete","description":"Das Unerwartete (D-U) is a GERMAN Private Torrent Tracker for MOVIES / TV / GENERAL","type":"Movies, TV, Audio, PC, Console, Books, XXX, General"},{"name":"DataScene (API)","description":"DataScene (DS) is a ROMANIAN Private Torrent Tracker for MOVIES / TV / GENERAL","type":"Movies, TV, PC, Audio, Books, XXX"},{"name":"DesiTorrents (API)","description":"Desitorrents is a Private Torrent Tracker for BOLLYWOOD / TOLLYWOOD / MUSIC","type":"Movies, TV, Audio"},{"name":"Diablo Torrent","description":"Diablo Torrent is a Hungarian Private site for TV / MOVIES / GENERAL","type":"Movies, TV, XXX, PC, Console, Audio, General, Books"},{"name":"DigitalCore","description":"DigitalCore is a Private Torrent Tracker for MOVIES / TV / GENERAL","type":"Movies, TV, General, PC, Audio, Console, XXX, Books"},{"name":"DimeADozen","description":"DimeADozen (EzTorrent) is a Private Torrent Tracker for BOOTLEG MUSIC","type":"Audio"},{"name":"DiscFan","description":"DiscFan is a CHINESE Private Torrent Tracker for MOVIES / TV","type":"Movies, TV, Audio"},{"name":"DivTeam","description":"DivTeam is a SPANISH Private Torrent Tracker for MOVIES / GENERAL","type":"Movies, TV, Books, Audio, General"},{"name":"DocsPedia","description":"DocsPedia is a Private Torrent Tracker for E-learning","type":"PC, Books, Audio, TV, General"},{"name":"Drugari","description":"Drugari is a CROATIAN Private Torrent Tracker for MOVIES / TV / GENERAL","type":"TV, PC, Movies, Console, Books, Audio, General, XXX"},{"name":"Ebooks-Shares","description":"Ebooks-Shares is a Private Torrent Tracker for EBOOKS / AUDIOBOOKS","type":"Audio, Books"},{"name":"eMuwarez (API)","description":"eMuwarez is a SPANISH Private Torrent Tracker for MOVIES / TV","type":"Movies, TV"},{"name":"Enthralled","description":"Enthralled is a Private Torrent Tracker for FETISH 3X","type":"XXX"},{"name":"Enthralled2FA","description":"Enthralled is a Private Torrent Tracker for FETISH 3X. Cookie Login for 2FA use.","type":"XXX"},{"name":"eStone","description":"eStone (BigTorrent) is a HUNGARIAN Private Torrent Tracker for 0DAY / GENERAL","type":"Movies, TV, Audio, PC, Console, Books, General, XXX"},{"name":"exitorrent.org","description":"exitorrent.org is a POLISH Private Torrent Tracker for MOVIES / TV / GENERAL","type":"PC, Audio, Movies, Books, TV, General, XXX"},{"name":"F1Carreras (API)","description":"F1Carreras is a Spanish Private Torrent Tracker for Motor Racing TV Releases","type":"TV"},{"name":"FANO.IN","description":"Fano.in is a LATVIAN Private Torrent Tracker for 0DAY / GENERAL","type":"Movies, TV, PC, Audio, Books, Console, General, XXX"},{"name":"Fappaizuri","description":"Fappaizuri is a Private Torrent Tracker for HENTAI / JAV","type":"TV, Console, XXX, Books"},{"name":"FinElite","description":"FinElite (FE) is a FINNISH Private Torrent Tracker for MOVIES / TV / GENERAL","type":"Audio, TV, Books, Console, PC, Movies"},{"name":"FinVip","description":"FinVip is a FINNISH Private Torrent Tracker for MOVIES / TV / GENERAL","type":"TV, Books, Audio, Movies, PC, Console, XXX, General"},{"name":"Flux-Zone","description":"Flux-Zone is a ROMANIAN Private Torrent Tracker for MOVIES / TV / GENERAL","type":"PC, TV, Movies, Console, Audio, XXX"},{"name":"Free Farm (自由农场)","description":"Free Farm (自由农场) is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL","type":"Movies, TV, Audio, General, Books, PC"},{"name":"FSM","description":"FSM is a CHINESE Private Torrent Tracker for 3X","type":"XXX"},{"name":"FunkyTorrents","description":"FunkyTorrents (FT) is a Private Torrent Tracker for MUSIC","type":"PC, Books, Movies, Audio"},{"name":"FutureTorrent","description":"FutureTorrent is an ITALIAN Private Torrent Tracker for MOVIES / TV / GENERAL","type":"PC, Movies, Books, TV, Audio, General, Console"},{"name":"Fuzer","description":"Fuzer is a private torrent website with israeli torrents.","type":"Movies, TV, PC, XXX, Console, Audio, Books, General"},{"name":"gay-torrents.org","description":"Gay-Torrents.org is a Private Torrent Tracker for GAY 3X","type":"XXX, Movies, TV, General, PC, Books"},{"name":"GAYtorrent.ru","description":"GayTorrent.ru is a Private Torrent Tracker for GAY 3X","type":"XXX, Books, PC, Movies, TV"},{"name":"Generation-Free (API)","description":"Generation-Free (GF-Free) is a FRENCH Private Torrent Tracker for MOVIES / TV / GENERAL","type":"Movies, TV, Audio, Console, PC, Books"},{"name":"GGPT","description":"GGPT is a CHINESE Private Torrent Tracker for GAMES","type":"PC, Console, Books, XXX"},{"name":"GigaTorrents","description":"Giga Torrents is a Hungarian Private site for TV / MOVIES / GENERAL","type":"Movies, PC, General, XXX, Audio, Books, Console, TV"},{"name":"GimmePeers","description":"GimmePeers (formerly ILT) is a Paid Private Torrent Tracker for MOVIES / TV / GENERAL","type":"TV, PC, Audio, Books, General, Console, Movies, XXX"},{"name":"Girotorrent","description":"Girotorrent is an ITALIAN Private site for TV / MOVIES / GENERAL","type":"Books, Audio, Movies, TV, PC, Console, General"},{"name":"HaiDan","description":"HaiDan is a CHINESE Private Torrent Tracker for HD MOVIES / TV","type":"TV, Movies, Audio, General"},{"name":"Hǎitáng (海棠PT)","description":"Hǎitáng (海棠PT) is a CHINESE Private Torrent Tracker for OPERA / CROSSTALK","type":"Audio, TV"},{"name":"HappyFappy2FA","description":"HappyFappy is a Private Torrent Tracker for 3X. This indexer uses cookie login for 2FA.","type":"XXX"},{"name":"HD Dolby","description":"HD Dolby is a CHINESE Private Torrent Tracker for HD MOVIES / TV / GENERAL","type":"Movies, TV, Audio, PC, General"},{"name":"HD-CLUB","description":"HD-CLUB is a CZECH Private site for TV / MOVIES / GENERAL","type":"Movies, TV, XXX, PC, Audio, Console"},{"name":"HD-Olimpo (API)","description":"HD-Olimpo is a SPANISH site for HD content","type":"Movies, TV, Audio"},{"name":"HD-Only (API)","description":"HD-Only (HD-O) is a FRENCH Private Torrent Tracker for HD MOVIES / TV","type":"Movies, TV, Audio, General"},{"name":"HD-UNiT3D (API)","description":"HD-UNiT3D is a Private Torrent Tracker for HD MOVIES / TV","type":"Movies, TV, Audio"},{"name":"HDAtmos","description":"HDAtmos is a CHINESE Private Torrent Tracker for HD MOVIES / TV / GENERAL","type":"Movies, TV, Audio"},{"name":"HDCiTY","description":"HDCiTY (HDC) is a CHINESE Private Torrent Tracker for HD MOVIES / TV / GENERAL","type":"Movies, TV, Audio, XXX, General, PC"},{"name":"HDClone","description":"HDClone is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL","type":"Movies, TV, Audio, General"},{"name":"HDFans","description":"HDFans is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL","type":"Movies, TV, Audio, General, PC, Books"},{"name":"HDHome","description":"HDHome (HDBiger) is a CHINESE Private Torrent Tracker for HD MOVIES / TV","type":"Movies, TV, Audio, General"},{"name":"HDKylin (麒麟)","description":"HDKylin (麒麟) is a Private CHINESE tracker for MOVIES / TV / GENERAL","type":"Movies, TV, General, Audio, PC, Console, Books"},{"name":"HDRoute","description":"HDRoute is a CHINESE Private Torrent Tracker for HD MOVIES / TV","type":"Movies, TV, Audio, General"},{"name":"HDSky","description":"HDSky is a CHINESE Private Torrent Tracker for HD MOVIES / TV","type":"Movies, TV, Audio, General"},{"name":"HDT-LaFenice","description":"HDT-LaFenice is an ITALIAN Private Torrent Tracker for MOVIES / TV / GENERAL","type":"Movies, TV, Audio, PC, Books, General"},{"name":"HDtime","description":"HDtime is a CHINESE Private Torrent Tracker for HD MOVIES / TV / GENERAL","type":"Movies, TV, PC, Audio, Books, General"},{"name":"HDTorrents.it (API)","description":"HDTorrents.it is an ITALIAN Private PAY2DL site for TV / MOVIES","type":"Movies, TV, Audio, Console, PC"},{"name":"HDTurk","description":"HDTurk is a TURKISH Private Torrent Tracker for MOVIES / TV / GENERAL","type":"General, Books, TV, Movies, Audio, Console, PC, XXX"},{"name":"HDU","description":"HDU is a CHINESE Private Torrent Tracker for HD MOVIES / TV / GENERAL","type":"Movies, TV, Audio, General, PC"},{"name":"HDVIDEO","description":"HDVIDEO is a CHINESE Private torrent tracker for MOVIES / TV / GENERAL","type":"Movies, TV, Audio, PC"},{"name":"HDZero (API)","description":"HD Zero is a SPANISH Private Torrent Tracker for MOVIES / TV / GENERAL","type":"Movies, TV, General"},{"name":"HellasHut","description":"HellasHut is a GREEK Private Torrent Tracker for MOVIES / TV / GENERAL","type":"TV, PC, Books, Audio, Movies, Console, General"},{"name":"HellasHut (API)","description":"HellasHut is a GREEK Private Torrent Tracker for MOVIES / TV / GENERAL","type":"TV, PC, Books, Audio, Movies, Console, General"},{"name":"HHanClub","description":"HHanClub is a CHINESE Private Torrent Tracker for HD MOVIES / TV","type":"General, TV, Movies, Audio"},{"name":"HHD (API)","description":"HHD is a Private Torrent Tracker for MOVIES / TV / GAMES","type":"Movies, TV, Audio, Console, PC, Books, XXX"},{"name":"HomePornTorrents","description":"HomePornTorrents (HPT) is a Private Torrent Tracker for Amateur 3X","type":"XXX"},{"name":"HUDBT (蝴蝶)","description":"HUDBT (蝴蝶) is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL","type":"Movies, PC, TV, Audio, General, Books, Console"},{"name":"ICC2022 (冰淇淋)","description":"ICC2022 (冰淇淋) is a CHINESE Private Torrent Tracker for HD MOVIES / TV / GENERAL","type":"Audio, General, TV, Movies"},{"name":"ilolicon PT","description":"ilolicon PT is a CHINESE Private torrent tracker for LOLICON / MOVIES / 3X","type":"Movies, TV, Audio, Console, PC, General, XXX"},{"name":"INFINITY (API)","description":"INFINITY is a Private Torrent Tracker for MOVIES / TV","type":"Movies, TV"},{"name":"Infire","description":"Infire is a SLOVENIAN Private Torrent Tracker for MOVIES / TV / GENERAL","type":"Movies, TV, PC, Console, Audio, XXX, Books, General"},{"name":"IrishTV","description":"IrishTV (ITV) is an IRISH Private Torrent Tracker for MOVIES / TV / GENERAL","type":"TV, Audio, Movies"},{"name":"ItaTorrents","description":"ItaTorrents is an ITALIAN Private tracker for MOVIES / TV / GENERAL","type":"Movies, TV, Audio, Console, PC, Books, General"},{"name":"JME-REUNIT3D (API)","description":"JME-REUNIT3D is a GERMAN Private Torrent Tracker for MOVIES / TV / GENERAL","type":"Movies, TV, XXX, Audio, PC, Console, Books"},{"name":"JoyHD","description":"JoyHD (JHD) is a CHINESE Private Torrent Tracker for HD MOVIES / TV / GENERAL","type":"Movies, TV, Audio, PC, General"},{"name":"JPTV (API)","description":"JPTV is a JAPANESE Private Torrent Tracker for JAPANESE TV / MOVIES / GENERAL","type":"Movies, TV, Audio, Books"},{"name":"KamePT","description":"KamePT is a CHINESE Private Torrent Tracker for 3X","type":"XXX"},{"name":"Kelu","description":"Kelu is a CHINESE Private Torrent Tracker for GAY 3X","type":"XXX, PC"},{"name":"Korsar","description":"Korsar is a RUSSIAN Private Torrent Tracker for MOVIES / TV / GENERAL","type":"Movies, TV, Audio, Books, General, PC, Console"},{"name":"KrazyZone","description":"KrazyZone is a Private Torrent Tracker for MOVIES / TV / GENERAL","type":"Audio, Movies, TV, Books, PC, General"},{"name":"Kufei (库非)","description":"Kufei (库非) is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL","type":"Console, Books, Audio, PC, TV, General, Movies"},{"name":"Kufirc","description":"Kufirc is a HUNGARIAN Private tracker for 3X","type":"XXX, Books, PC"},{"name":"LaidBackManor (API)","description":"LaidBackManor (LBM) is a Private site for MOVIES / TV / GENERAL","type":"Movies, TV, Audio, Console, PC, Books"},{"name":"LastFiles","description":"LastFiles (LF) is a ROMANIAN Private Torrent Tracker for MOVIES / TV / GENERAL","type":"TV, Movies, General, PC, XXX, Audio, Books"},{"name":"Lat-Team (API)","description":"Lat-Team is a SPANISH Private Torrent Tracker for MOVIES / TV","type":"Movies, TV, Audio, PC, XXX, Books, Console, General"},{"name":"Le-Cinephile","description":"Le-Cinephile is a FRENCH Private Torrent Tracker for MOVIES / TV / GENERAL","type":"Movies, TV, PC, Books, XXX, Audio, Console"},{"name":"LearnBits","description":"LearnBits is a Private Torrent Tracker for E-LEARNING","type":"TV, General, Books"},{"name":"LearnFlakes","description":"LearnFlakes is a Private Torrent Tracker for CERTIFICATE / TRAINING E-LEARNING","type":"Books"},{"name":"LemonHD","description":"LemonHD is a CHINESE Private Torrent Tracker for HD MOVIES / TV","type":"Movies, Audio, TV"},{"name":"LeSaloon","description":"Le Saloon is a FRENCH Private Torrent Tracker for MOVIES / TV / GENERAL","type":"Movies, TV, Audio, PC, Console, Books, General"},{"name":"Lesbians4u","description":"Lesbians4u is a Private Torrent Tracker for 3X","type":"XXX"},{"name":"LibraNet","description":"LibraNet (LN) is a HUNGARIAN Private Torrent Tracker for EBOOKS / LOSSLESS MUSIC","type":"Movies, Audio, Books"},{"name":"Locadora (API)","description":"Locadora is a BRAZILIAN Private Tracker for MOVIES, TV and ANIME","type":"Movies, TV, Audio"},{"name":"LosslessClub","description":"LosslessClub is a RUSSIAN Private site for High Quality Music","type":""},{"name":"Majomparádé","description":"Majomparádé (TurkDepo) is a HUNGARIAN Private Torrent Tracker for 0DAY / GENERAL","type":"Movies, TV, Audio, Books, PC, Console, XXX"},{"name":"Making Off","description":"Making Off is a BRAZILIAN Private Torrent Tracker for MOVIES / TV / GENERAL","type":"Movies, TV, Audio"},{"name":"Malayabits (API)","description":"Malayabits is a MALAYSIAN Private Torrent Tracker for MOVIES / TV / MUSIC","type":"Movies, TV, Audio"},{"name":"MDAN","description":"Mansão dos Animes (MDAN) is a BRAZILIAN Private Torrent Tracker for ANIME","type":"TV, Movies, Books, Audio"},{"name":"MegamixTracker","description":"MegamixTracker is a HUNGARIAN Private Tracker for MOVIES / TV","type":"TV, Books, Movies, Console, PC, General, XXX, Audio"},{"name":"MeseVilág","description":"MeseVilág (Fairytale World) is a Hungarian Private site for fairy tales, family movies and comedies","type":"TV, Movies, Audio, PC, Console, Books"},{"name":"MetalGuru","description":"MetalGuru is a Private Torrent Tracker for General with focus on Music","type":"Audio, TV, PC, Books, Movies, Console, General, XXX"},{"name":"MMA-torrents","description":"MMA-Torrents is a Private Torrent Tracker for MMA (Mixed Martial Arts)","type":"Audio, TV, Movies, Books, General"},{"name":"MNV","description":"MNV (Max-New-Vision) is a Private GERMAN tracker","type":"TV, PC, Books, Audio, Movies, General, XXX"},{"name":"MOJBLiNK","description":"MOJBLiNK is a Private SLOVENIAN Torrent Tracker for MOVIES / TV / GENERAL","type":"Movies, Audio, Books, PC, Console, General, TV, XXX"},{"name":"MonikaDesign (API)","description":"MonikaDesign is a CHINESE Private Torrent Tracker for MOVIES / TV / ANIME","type":"TV, Movies, Audio, PC"},{"name":"MouseBits","description":"MouseBits is a Private Torrent Tracker for all things Disney","type":"TV, Audio, General"},{"name":"New Heaven","description":"New Heaven is a GERMAN Private tracker for MOVIES / AUDIO / TV / GENERAL","type":"PC, Console, Movies, Audio, TV, Books, General"},{"name":"NicePT","description":"NicePT is a CHINESE Private Torrent Tracker for 3X","type":"XXX"},{"name":"Nirvana (API)","description":"Nirvana is a Private RUSSIAN Tracker for MOVIES / TV","type":"Movies, TV, General"},{"name":"NordicQuality (API)","description":"NordicQuality is a Private Torrent Tracker for MOVIES / TV / GENERAL","type":"Audio, Books, Console, Movies, PC, TV, XXX"},{"name":"Ntelogo (API)","description":"Ntelogo is a GREEK Private Torrent Tracker for MOVIES / TV / GENERAL","type":"Movies, TV, Audio, PC, Console, XXX, Books"},{"name":"Nusanta(RA.RE)","description":"Nusanta(RA.RE) is a MALAYSIAN Private Torrent Tracker for MOVIES / TV","type":"Movies, TV, Audio, Books, PC"},{"name":"OKPT","description":"OKPT is a CHINESE Private site for MOVIES / TV / MUSIC / GENERAL","type":"Movies, TV, Books, Audio, Console, PC, General, XXX"},{"name":"Old Greek Tracker","description":"Old Greek Tracker is a GREEK Private Torrent Tracker for PRE-2020 MOVIES / TV / GENERAL","type":"PC, Books, Audio, Console, Movies, TV"},{"name":"Oldtoons (API)","description":"Oldtoons is a Private Torrent Tracker for Cartoon MOVIES / TV / GENERAL","type":"Movies, TV, Books, Audio, PC"},{"name":"OnlyEncodes+ (API)","description":"OnlyEncodes+ is a Private Tracker for MOVIES / TV","type":"Movies, TV"},{"name":"OpenCD","description":"OpenCD is a CHINESE Private Torrent Tracker for MUSIC","type":"Audio"},{"name":"OshenPT","description":"OshenPT is a CHINESE Private Torrent Tracker for HD MOVIES / TV / GENERAL","type":"Movies, TV, Audio, General, Console"},{"name":"Ostwiki","description":"Ostwiki is a Private Torrent Tracker for Soundtracks releases.","type":"Audio"},{"name":"P2PBG","description":"P2PBG is a BULGARIAN Private Torrent Tracker for 0DAY / GENERAL","type":"Movies, TV, Audio, PC, Console, Books, General, XXX"},{"name":"Panda","description":"Panda is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL","type":"Movies, TV, PC, Console, Books, Audio, General"},{"name":"Party-Tracker","description":"Party-Tracker is a HUNGARIAN private tracker for MOVIES / TV / GENERAL","type":"Console, PC, Movies, Books, TV, XXX, General, Audio"},{"name":"Peeratiko","description":"Peeratiko is a GREEK Private Torrent Tracker for MOVIES / TV / GENERAL","type":"PC, Books, Console, Movies, Audio, General, TV"},{"name":"Peers.FM","description":"Peers.FM is a RUSSIAN Private Torrent Tracker for MOVIES / TV / GENERAL","type":"TV, PC, Movies, General, XXX, Audio, Books"},{"name":"PigNetwork (猪猪网)","description":"PigNetwork (猪猪网) is a CHINESE Private Torrent Tracker for HD MOVIES / TV / GENERAL","type":"Movies, TV, Audio, General, Books"},{"name":"PixelCove2FA","description":"PixelCove2FA (Ultimate Gamer) is a Private Torrent Tracker for GAMES. Cookie Login for 2FA use.","type":"PC, Console, Books, Audio, General"},{"name":"Polish Torrent (API)","description":"Polish Torrent (PTT) is a POLISH Private Torrent Tracker for MOVIES / TV / GENERAL","type":"Movies, PC, TV, Console, General, Audio, Books, XXX"},{"name":"PolishTracker (API)","description":"PolishTracker is a POLISH Private site for 0DAY / MOVIES / GENERAL","type":"PC, Audio, Console, Books, Movies, TV, XXX"},{"name":"Portugas (API)","description":"Portugas is a Private PORTUGUESE Tracker","type":"Movies, TV, Audio, PC, XXX, Books"},{"name":"PrivateSilverScreen (API)","description":"PrivateSilverScreen (PSS) is a Private tracker for MOVIES / TV / MUSIC","type":"Movies, TV, Audio"},{"name":"ProAudioTorrents","description":"ProAudioTorrents (PAT) is a Private Torrent Tracker for AUDIO SOFTWARE / SAMPLES / TUTORIALS / ETC","type":"PC, Books, General, TV, Audio"},{"name":"PT GTK","description":"PT GTK is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL","type":"Movies, TV, Audio, General, Books"},{"name":"PTCafe (咖啡)","description":"PTCafe (咖啡) is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL","type":"Movies, TV, Audio, General"},{"name":"PTChina (铂金学院)","description":"PTChina (铂金学院) is a CHINESE Private site for MOVIES / TV","type":"Movies, TV"},{"name":"PTerClub (PT之友俱乐部)","description":"PTerClub (PT之友俱乐部) is a CHINESE Private Torrent Tracker for HD MUSIC VIDEOS, MOVIES, TV & ANIME","type":"Movies, TV, Audio, Books, Console, PC, General"},{"name":"PTFans","description":"PTFans is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL","type":"Movies, TV, PC, Audio, General, Books, XXX"},{"name":"PThome","description":"PThome is a CHINESE Private Torrent Tracker for 0DAY / GENERAL","type":"Movies, TV, Audio, Console, PC, Books, General"},{"name":"PTSBAO (烧包)","description":"PTSBAO (烧包) is a CHINESE Private Torrent Tracker for HD MOVIES / TV","type":"Movies, TV, Audio, General"},{"name":"PTTime","description":"PTTime is a ratioless CHINESE Private Torrent Tracker for HD MOVIES / TV / GENERAL","type":"Movies, TV, PC, Audio, General, XXX"},{"name":"PTVicomo","description":"PTVicomo is a CHINESE Private torrent tracker for MOVIES / TV / GENERAL","type":"Movies, TV, Audio"},{"name":"PT分享站 (itzmx)","description":"PT分享站 (itzmx) is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL","type":"TV, Books, Audio, Movies, PC, Console"},{"name":"Punk's Horror Tracker","description":"Punk's Horror Tracker is a HUNGARIAN Private Tracker for Horror MOVIES / TV","type":"Movies, TV, Books, PC, XXX"},{"name":"PuntoTorrent","description":"PuntoTorrent is a SPANISH site for General content","type":"TV, Movies, XXX, Audio, General, Books, PC, Console"},{"name":"PuTao (葡萄)","description":"PuTao (葡萄) is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL","type":"Movies, TV, Audio, Console, PC, General"},{"name":"PWTorrents","description":"PWTorrents (PWT) is a Private Torrent Tracker for PROFESSIONAL WRESTLING","type":"TV"},{"name":"Qingwa (青蛙)","description":"Qingwa (青蛙) is a CHINESE Private torrent tracker for MOVIES / TV / GENERAL","type":"Movies, TV, Audio, General"},{"name":"R3V WTF!","description":"R3V WTF! is a Private site for MOVIES / TV / GENERAL","type":"PC, General, Movies, Audio, Books, TV, XXX"},{"name":"Racing4Everyone (API)","description":"Racing4Everyone (R4E) is a Private Torrent Tracker for RACING","type":"TV"},{"name":"Rain (雨)","description":"Rain (雨) is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL","type":"Audio, General, TV, Movies"},{"name":"RareShare2 (API)","description":"RareShare2 is a Private Torrent Tracker for TV","type":"TV, Console, PC, Audio"},{"name":"Red Leaves (红叶)","description":"Red Leaves (红叶) is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL","type":"Audio, General, TV, Movies"},{"name":"Red Star Torrent","description":"Red Star Torrent (RST) is a POLISH Private Torrent Tracker for TV","type":"PC, Movies, TV, Books, General, Audio, XXX"},{"name":"ReelFLiX (API)","description":"ReelFLiX (HD4Free,LegacyHD) is a Private Torrent Tracker for HD MOVIES","type":"Movies"},{"name":"RocketHD (API)","description":"RocketHD is a GERMAN Private Torrent Tracker for MOVIES / TV","type":"Movies, TV"},{"name":"Romanian Metal Torrents","description":"Romanian Metal Torrents (RMT) is a Private site dedicated to METAL MUSIC. This definition is for the English site.","type":"Audio"},{"name":"RoTorrent","description":"RoTorrent is a ROMANIAN Private Torrent Tracker for MOVIES / TV / GENERAL","type":"PC, TV, General, Movies, XXX, Audio"},{"name":"Rousi","description":"Rousi is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL","type":"Movies, TV, Console, Audio, General, Books, PC, XXX"},{"name":"SAMARITANO (API)","description":"SAMARITANO is a BRAZILIAN Private tracker for MOVIES / TV / GENERAL","type":"Movies, TV, General, Console, Books, Audio, PC"},{"name":"SceneRush","description":"SceneRush is a PORTUGUESE Private Torrent Tracker for 0DAY / GENERAL","type":"Console, PC, Movies, Audio, TV, XXX, Books, General"},{"name":"SeedFile","description":"SeedFile (SF) is a ROMANIAN Private Torrent Tracker for 0DAY / GENERAL","type":"Books, General, Movies, Console, PC, Audio, TV, XXX"},{"name":"seedpool (API)","description":"seedpool is a Private Torrent Tracker for 0-day MOVIES / TV / GENERAL","type":"TV, Movies, PC, Audio, Console, Books, General"},{"name":"SFP","description":"SFP (Share Friends Projekt) is a GERMAN Private Torrent Tracker for MOVIES / TV / GENERAL","type":"TV, PC, XXX, Movies, Audio, General, Books, Console"},{"name":"Shareisland (API)","description":"A general italian tracker","type":"Movies, TV, Books, XXX, Audio, PC, General"},{"name":"SiamBIT","description":"SiamBIT is a THAI Private Torrent Tracker for GENERAL","type":"General, PC, TV, Audio, Movies, Books, XXX"},{"name":"SoulVoice (聆音Club)","description":"SoulVoice (聆音Club) is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL","type":"General, Movies, TV, Audio"},{"name":"Speedmaster HD","description":"Speedmaster HD is a German Time based tracker for MOVIES / TV","type":"Movies, TV, XXX, Audio, General, Books"},{"name":"Swarmazon (API)","description":"Swarmazon is a Private Torrent Tracker for MOVIES / TV / GENERAL","type":"Movies, TV, General, Audio, PC, Books"},{"name":"Tapochek","description":"Tapochek is a RUSSIAN Private Torrent Tracker for 0DAY / GENERAL","type":"PC, Console, Movies, TV, Audio, Books, General"},{"name":"Team CT Game","description":"Team CT Game (TCTG) is a FRENCH Private Torrent Tracker for MOVIES / TV / GENERAL","type":"Books, Audio, Movies, TV, Console, PC, General, XXX"},{"name":"TeamHD","description":"TeamHD is a RUSSIAN Private Torrent Tracker for HD MOVIES / TV","type":"Movies, TV, Audio, General"},{"name":"TeamOS","description":"Team OS is a Private Torrent Tracker for SOFTWARE","type":"PC, Books, General"},{"name":"TEKNO3D","description":"TEKNO3D is a Private Torrent Tracker for MOVIES / TV","type":"Audio, Movies, TV, General"},{"name":"teracod","description":"teracod (Movie Zone) is a HUNGARIAN Private Torrent Tracker for 0DAY / GENERAL","type":"Movies, PC, Console, Audio, Books, TV, XXX"},{"name":"The Crazy Ones","description":"The Crazy Ones is a Private GERMAN tracker for MOVIES / TV / GENERAL","type":"TV, Movies, PC, Console, Audio, Books, General, XXX"},{"name":"The Empire","description":"TheEmpire (TE) is a Private Torrent Tracker for COMMONWEALTH TV / RADIO","type":"TV"},{"name":"The Kitchen","description":"TheKitchen (TK) is a Private Torrent Tracker for Cooking / Cuisines / Recipes","type":"General, TV"},{"name":"The Occult","description":"Cult E-Learning","type":"General"},{"name":"The Old School (API)","description":"The Old School is a FRENCH Private Torrent Tracker for MOVIES / TV / GENERAL","type":"Movies, TV, Books, Console, PC"},{"name":"The Show","description":"Entertainment E-Learning","type":"General"},{"name":"TheLeachZone (API)","description":"The Leach Zone (TLZ) is a Private Torrent Tracker for MOVIES / TV / GENERAL","type":"TV, Movies, Audio, Books, Console, PC, General"},{"name":"ThePiratedShip","description":"ThePiratedShip is a Private tracker for MOVIES / TV / GENERAL","type":"Movies, TV, Audio, PC, Console, General, Books"},{"name":"TJUPT (北洋园PT)","description":"TJUPT (北洋园PT) is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL","type":"Movies, TV, Audio, PC, Console, Books, General"},{"name":"TLFBits","description":"TLFBits is a CHINESE Private Torrent Tracker for HD MOVIES / TV","type":"Movies, TV, Audio, PC, General"},{"name":"TmGHuB","description":"TmGHuB (TH) is an INDIAN Private Torrent Tracker for MOVIES / TV / GENERAL","type":"Movies, Audio, TV, Books, General"},{"name":"Toca Share (API)","description":"Toca Share is a PORTUGUESE Private Torrent Tracker for MOVIES / TV / GENERAL","type":"Movies, TV, Audio, Console, PC, Books, General, XXX"},{"name":"Tormac","description":"Tormac is a RUSSIAN Private Torrent Tracker for MOVIES / TV / GENERAL for Apple products","type":"PC, Books, General, Audio, Movies, TV"},{"name":"Tornado","description":"Tornado is a SLOVENIAN Private Torrent Tracker for MOVIES / TV / GENERAL","type":"Movies, TV, Audio, PC, Console, Books, XXX, General"},{"name":"Torrent Heaven","description":"Torrent Heaven is a DUTCH Private Torrent Tracker for MOVIES / TV / GENERAL","type":"Movies, TV, Books, Audio, PC, General, XXX"},{"name":"Torrent-Explosiv","description":"Torrent-Explosiv (T-E) is a German Private Torrent Tracker for TV / MOVIES / GENERAL","type":"Movies, TV, Audio, PC, Console, XXX, Books"},{"name":"TOrrent-tuRK","description":"TOrrent-tuRK (TORK) is a Turkish Private Torrent Tracker for HD MOVIES / TV / GENERAL","type":"Movies, TV, Audio, PC, General, Books, Console"},{"name":"Torrent.LT","description":"Torrent.LT is a LITHUANIAN Private Torrent Tracker for 0DAY / GENERAL","type":"Movies, TV, PC, Console, Audio, Books, General, XXX"},{"name":"TorrentCCF","description":"TorrentCCF (TCCF) is a CHINESE Private Torrent Tracker for HD MOVIES / TV","type":"Movies, TV, PC, Audio, General, Books"},{"name":"TorrentDD","description":"TorrentDD is a THAI Private Torrent Tracker for MOVIES / TV / GENERAL","type":"General, TV, Console, PC, Books, Audio, Movies, XXX"},{"name":"Torrenteros (API)","description":"Torrenteros (TTR) is a SPANISH site for MOVIES / TV / GENERAL","type":"Movies, TV"},{"name":"TorrentHR","description":"TorrentHR is a ratioless CROATIAN Private Torrent Tracker for 0DAY / GENERAL","type":"TV, Movies, PC, Console, Books, Audio, XXX, General"},{"name":"Torrenting","description":"Torrenting (TT) is a Private site for MOVIES / TV / GENERAL","type":"Movies, XXX, TV, Console, Audio, Books, PC"},{"name":"Torrentland","description":"Torrentland is a SPANISH Private Torrent Tracker for MOVIES / TV / GENERAL","type":"Movies, TV, Audio, XXX, General"},{"name":"Torrentland (API)","description":"Torrentland is a SPANISH Private Torrent Tracker for MOVIES / TV / GENERAL","type":"Movies, TV, Audio, XXX, General"},{"name":"TorrentSeeds (API)","description":"TorrentSeeds is a Private Torrent Tracker for MOVIES / TV / MUSIC / GENERAL","type":"PC, Movies, Audio, TV, XXX, Books"},{"name":"ToTheGlory2FA","description":"ToTheGlory (TTG) is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL. This indexer uses cookie login for 2FA.","type":""},{"name":"TrackerMK","description":"TrackerMK is a MACEDONIAN Private Torrent Tracker for MOVIES / TV / GENERAL","type":"Movies, PC, Audio, TV, Books, Console, General, XXX"},{"name":"TranceTraffic","description":"TranceTraffic is a Private site for MUSIC","type":""},{"name":"Trellas","description":"Trellas (Magico) is a GREEK Private Torrent Tracker for MOVIES / TV / GENERAL","type":"Movies, TV, Audio, Books, PC, General"},{"name":"TreZzoR","description":"TreZzoR is a CZECH Private site for TV / MOVIES / GENERAL","type":"Movies, TV, Audio, XXX, PC, Books, General, Console"},{"name":"TreZzoRCookie","description":"TreZzoR is a CZECH Private site for TV / MOVIES / GENERAL. This uses the cookie method for access","type":"Movies, TV, Audio, XXX, PC, Books, General, Console"},{"name":"TurkSeed (API)","description":"TurkSeed is a TURKISH Private Torrent Tracker for MOVIES / TV / GENERAL","type":"Movies, TV, Console, General, PC, Audio"},{"name":"TurkTorrent","description":"TurkTorrent (TT) is a TURKISH Private Torrent Tracker for MOVIES / TV / GENERAL","type":"Movies, General, TV, Books, PC, Audio, Console"},{"name":"TVChaosUK","description":"TV Chaos UK (TVCUK) is a Private Torrent Tracker for UK TV","type":"TV, Movies, Audio"},{"name":"UBits","description":"UBits is a CHINESE Private torrent tracker for MOVIES / TV / GENERAL","type":"Movies, TV, Audio, General"},{"name":"UltraHD","description":"UltraHD is a CHINESE Private Torrent Tracker for UHD MOVIES / TV / GENERAL","type":"Movies, TV, Audio, General"},{"name":"UnionGang","description":"UnionGang is a RUSSIAN Private Torrent Tracker for MOVIES / TV / GENERAL","type":"Movies, TV, PC, Audio"},{"name":"UnionGangCookie","description":"UnionGang is a RUSSIAN Private Torrent Tracker for MOVIES / TV / GENERAL. This indexer uses cookie login.","type":"Movies, TV, PC, Audio"},{"name":"Unlimitz","description":"Unlimitz is a THAI Private Torrent Tracker for GENERAL","type":"Audio, TV, General, Console, PC, Movies, Books, XXX"},{"name":"upload.cx (API)","description":"upload.cx (ULCX) is a Private Torrent Tracker for MOVIES / TV","type":"Movies, TV"},{"name":"Upscale Vault (API)","description":"Upscale Vault is a Private Torrent Tracker for AI upscaled and remastered MOVIES / TV","type":"Movies, TV, Audio"},{"name":"UTOPIA (API)","description":"UTOPIA is a UKRAINIAN Private Tracker for HD MOVIES and TV","type":"Movies, TV"},{"name":"Vault network","description":"Vault network is a Private Torrent Tracker for MOVIES / TV / GENERAL","type":"PC, Audio, Books, General, Movies, TV, Console"},{"name":"WDT","description":"Wrestling Desires Torrents (Ultimate Wrestling Torrents) is a Private Torrent Tracker for PROFESSIONAL WRESTLING / MMA","type":"Audio, Books, TV, PC, Movies"},{"name":"White Angel","description":"White Angel is a HUNGARIAN Private Tracker for MOVIES / TV","type":"Books, XXX, TV, Movies, Audio, PC, Console, General"},{"name":"WinterSakura","description":"WinterSakura is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL","type":"General, TV, Audio, Movies, PC, Books"},{"name":"World-In-HD","description":"Your world in HD","type":"Movies, TV, PC, Audio"},{"name":"Wukong (悟空问道)","description":"Wukong (悟空问道) is a CHINESE Private Torrent Tracker for E-LEARNING","type":"General, Books"},{"name":"x-ite.me","description":"Tracker for LGBTQ movies, TV, books, magazines, anime, PC and 3X.","type":"TV, PC, Audio, Books, XXX, Movies, General"},{"name":"Xider-Torrent","description":"Xider-Torrent is a HUNGARIAN Private Tracker for MOVIES / TV","type":"TV, Movies, Audio, General, PC, Books, XXX"},{"name":"Xthor (API)","description":"General French Private Tracker","type":"Movies, TV, Audio, XXX, Books, PC, Console"},{"name":"xTorrenty","description":"xTorrenty is a POLISH Private Torrent Tracker for MOVIES / TV / GENERAL","type":"Movies, PC, Console, Audio, TV, XXX, Books, General"},{"name":"Xtreme Bytes","description":"Xtreme Bytes (TorrentSurf) is a Private Torrent Tracker for MOVIES / TV / GENERAL","type":"TV, PC, Books, Console, General, Movies, Audio, XXX"},{"name":"XWT-Classics","description":"XWT-Classics is a Private Torrent Tracker for CLASSIC PROFESSIONAL WRESTLING","type":"TV"},{"name":"YGG cookie","description":"YggTorrent (YGG) is a FRENCH Private Torrent Tracker for MOVIES / TV / GENERAL. This indexer uses cookie login.","type":"TV, Movies, Audio, PC, Console, Books, General, XXX"},{"name":"YOiNKED (API)","description":"YOiNKED is a Private Torrent Tracker for MOVIES / TV / MUSIC","type":"Movies, TV, Audio, Books"},{"name":"YUSCENE (API)","description":"YUSCENE is a Private Tracker for MOVIES / TV","type":"Movies, TV, Console, Audio, PC"},{"name":"Zamunda.net","description":"Zamunda is a BULGARIAN Private Torrent Tracker for 0DAY / GENERAL","type":"Movies, TV, Audio, PC, Console, General, Books, XXX"},{"name":"Zelka.org","description":"Zelka (Zamunda) is a BULGARIAN Private Torrent Tracker for 0DAY / GENERAL","type":"Movies, PC, TV, XXX, General, Console, Audio, Books"},{"name":"ZmPT (织梦)","description":"ZmPT (织梦) is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL","type":"General, TV, Audio, Movies, PC, Console"}]} +{ + "trackers": [ + { + "name": "0day.kiev", + "description": "0day.kiev.ua is a UKRAINIAN Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, TV, PC, Audio, General" + }, + { + "name": "13City", + "description": "13City is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, TV, Audio, Books" + }, + { + "name": "1ptbar", + "description": "1ptbar is a CHINESE Private Torrent Tracker for MOVIES / TV / E-LEARNING", + "type": "Movies, TV, Audio, PC, Books, General, XXX" + }, + { + "name": "3D Torrents", + "description": "3D Torrents (3DT) is a Private Torrent Tracker for 3D HD / BLURAY MOVIES", + "type": "Movies, PC, XXX, General, Audio" + }, + { + "name": "4thD", + "description": "4th Dimension is a Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, TV, PC, Audio, Books" + }, + { + "name": "52PT", + "description": "52PT is a CHINESE Private Torrent Tracker for HD MOVIES / TV", + "type": "Movies, TV, Audio, General, XXX" + }, + { + "name": "720pier", + "description": "720pier is a RUSSIAN Private Torrent Tracker for HD SPORTS", + "type": "TV" + }, + { + "name": "Across The Tasman", + "description": "ATT is a Private torrent site for Rugby and other sports played in Australia", + "type": "" + }, + { + "name": "Aftershock", + "description": "Aftershock is a HUNGARIAN Private Torrent Tracker for MOVIES / GENERAL", + "type": "Movies, Books, Audio, XXX, PC, Console, General, TV" + }, + { + "name": "AFUN", + "description": "AFUN is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "TV, Audio, General, Movies" + }, + { + "name": "AGSVPT", + "description": "AGSVPT (Arctic Global Seed Vault) is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, TV, Audio, PC, Books, General" + }, + { + "name": "Aither (API)", + "description": "Aither is a Private Torrent Tracker for HD MOVIES / TV", + "type": "Movies, TV" + }, + { + "name": "Amigos Share Club", + "description": "Amigos Share Club (ASC) is a BRAZILIAN Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "XXX, TV, PC, General, Books, Audio, Movies, Console" + }, + { + "name": "AnimeLovers (API)", + "description": "AnimeLovers is a Private tracker for ANIME / MANGA / DOUNGUA / MANHWA", + "type": "Movies, TV, XXX, Books, Audio" + }, + { + "name": "AnimeTorrents.ro", + "description": "AnimeTorrents.ro (Anime Torrents Romania) is a ROMANIAN Private Torrent Tracker for ANIME / MANGA", + "type": "TV, Movies, Books" + }, + { + "name": "AnimeWorld (API)", + "description": "AnimeWorld (AW) is a GERMAN Private Torrent Tracker for ANIME / MANGA / HENTAI", + "type": "Movies, TV, Audio, PC, XXX, General, Books" + }, + { + "name": "Anthelion (API)", + "description": "Anthelion (ANT) is a Private Torrent Tracker for MOVIES", + "type": "Movies, General" + }, + { + "name": "ArabaFenice", + "description": "Araba Fenice (Phoenix) is an ITALIAN Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, TV, XXX, General, Audio, Books, Console, PC" + }, + { + "name": "ArabP2P", + "description": "ArabP2P is an ARABIC Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, TV, Audio, PC, Books, General" + }, + { + "name": "ArabTorrents", + "description": "ArabTorrents is an ARABIC Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, TV, General, Audio, PC" + }, + { + "name": "AsianDVDClub", + "description": "AsianDVDClub (ADC) is a Private Torrent Tracker for ASIAN DVD and BluRay", + "type": "TV, Movies, General, Audio" + }, + { + "name": "Audiences", + "description": "Audiences is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, TV, Audio, Books, PC, General" + }, + { + "name": "Aussierul.es", + "description": "AussieRul.es is a Private Torrent Tracker for AUSTRALIAN RULES FOOTBALL", + "type": "" + }, + { + "name": "Azusa (梓喵)", + "description": "Azusa (梓喵) is a CHINESE Private Torrent Tracker focusing on COMICS", + "type": "PC, Books, General, Audio" + }, + { + "name": "Back-ups", + "description": "Back-Ups is a Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "PC, TV, Audio, Console, Movies, Books, XXX" + }, + { + "name": "Beload", + "description": "Beload is a HUNGARIAN Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, Audio, PC, Books, TV, XXX" + }, + { + "name": "Best-Core", + "description": "Best-Core is a HUNGARIAN Private Tracker for MOVIES / TV / GENERAL", + "type": "Movies, Books, Audio, PC, General, Console, TV, XXX" + }, + { + "name": "BigCore", + "description": "BigCore is a HUNGARIAN Private Tracker for MOVIES / TV / GENERAL", + "type": "Movies, TV, PC, Audio, Books, XXX" + }, + { + "name": "Bit-Bázis", + "description": "Bit-Bázis is a HUNGARIAN Private Tracker for MOVIES / TV", + "type": "Movies, TV, Audio, Books, PC, XXX, General" + }, + { + "name": "Bitded", + "description": "Bitded is a THAI Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "General, TV, Books, Movies, Audio, PC, Console" + }, + { + "name": "bitGAMER", + "description": "bitGAMER is a Private Torrent Tracker for GAMES", + "type": "XXX, PC, Books, Movies, Audio, Console" + }, + { + "name": "Bithorlo", + "description": "Bithorlo (BHO) is a HUNGARIAN Private Torrent Tracker for MOVIES / GENERAL", + "type": "Books, Console, PC, Movies, TV, Audio, General, XXX" + }, + { + "name": "BitHUmen", + "description": "BitHUmen is a HUNGARIAN Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, XXX, TV, Books, Audio, PC, Console, General" + }, + { + "name": "Bitpalace", + "description": "Bitpalace is a HUNGARIAN Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, Books, General, TV, PC, Console, XXX, Audio" + }, + { + "name": "BitPorn (API)", + "description": "BitPorn (Malacka) is a HUNGARIAN Private Torrent Tracker for 3X", + "type": "XXX" + }, + { + "name": "BitSexy (API)", + "description": "BitSexy is a Private Torrent Tracker for 3X", + "type": "XXX, Console, Books" + }, + { + "name": "BiTTuRK", + "description": "BiTTuRK is a TURKISH Private Torrent Tracker for HD MOVIES / TV / GENERAL. This Indexer is for English only.", + "type": "Movies, XXX, TV, Audio, Console, Books" + }, + { + "name": "BlueBird", + "description": "BlueBird is a RUSSIAN Private Torrent Tracker for HD MOVIES", + "type": "Movies, TV, Audio, XXX, General" + }, + { + "name": "BlurayTracker", + "description": "BlurayTracker is a CZECH Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, TV, PC, Audio, Console, Books, General" + }, + { + "name": "Blutopia (API)", + "description": "Blutopia (BLU) is a Private Torrent Tracker for HD MOVIES / TV", + "type": "Movies, General, TV, Audio" + }, + { + "name": "Boxing Torrents", + "description": "Boxing Torrents is a Private Torrent Tracker for BOXING", + "type": "TV" + }, + { + "name": "BTArg", + "description": "BTArg is an ARGENTINIAN Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, TV, XXX, Audio, PC, General" + }, + { + "name": "BTNext", + "description": "BTNext (BTNT) is a PORTUGUESE Private Torrent Tracker for 0DAY / GENERAL", + "type": "General, Movies, Console, TV, Audio, PC, Books, XXX" + }, + { + "name": "BYRBT", + "description": "BYRBT is a CHINESE Private Torrent Tracker for HD MOVIES / TV / GENERAL", + "type": "Movies, TV, Audio, General, Console, PC" + }, + { + "name": "Caishen (财神)", + "description": "Caishen (财神) is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Audio, General, TV, Movies" + }, + { + "name": "CapybaraBR (API)", + "description": "CapybaraBR is a BRAZILIAN Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, TV, Console, PC, Books, General" + }, + { + "name": "Carp-Hunter", + "description": "Carp-Hunter is a HUNGARIAN Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, Audio, PC, General, Books, TV, XXX" + }, + { + "name": "Carpathians", + "description": "Carpathians is a HUNGARIAN Private Torrent Tracker for 0DAY / GENERAL", + "type": "Books, Movies, Console, PC, Audio, TV, XXX" + }, + { + "name": "CarPT", + "description": "CarPT is a CHINESE Private Torrent Tracker for HD MOVIES / TV", + "type": "Movies, TV, Audio, General" + }, + { + "name": "CD File", + "description": "CD File is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, Audio, TV, General" + }, + { + "name": "CeskeForum", + "description": "CeskeForum is a CZECH Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, TV, Books, Audio, PC, General" + }, + { + "name": "CHDBits", + "description": "CHDBits is a CHINESE Private Torrent Tracker for HD MOVIES / TV", + "type": "Movies, TV, Audio, General" + }, + { + "name": "ChileBT (API)", + "description": "ChileBT is a CHILEAN Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, TV, Audio, General, PC, Books, XXX" + }, + { + "name": "Cinemageddon", + "description": "Cinemageddon is a Private Torrent Tracker for B-movies", + "type": "Movies" + }, + { + "name": "CinemaMovieS_ZT", + "description": "CinemaMovieS_ZT is a POLISH Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, TV, PC, General, Audio, Books" + }, + { + "name": "Cinematik (API)", + "description": "Cinematik is a Private tracker for full BD and DVD discs of non-mainstream movies, niche cinema and arthouse.", + "type": "Movies, TV" + }, + { + "name": "ClearJAV (API)", + "description": "ClearJAV is a Private Torrent Tracker for Japanese Adult Video (JAV) content from official JAV studios only.", + "type": "XXX" + }, + { + "name": "Coastal-Music-Crew", + "description": "Coastal-Music-Crew (C-M-C) is a GERMAN Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, TV, PC, Console, Audio, General, Books, XXX" + }, + { + "name": "ConCen", + "description": "ConCen (Conspiracy Central) is a Private conspiracy related torrent index", + "type": "" + }, + { + "name": "CrabPT (蟹黄堡)", + "description": "CrabPT (蟹黄堡) is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, TV, Audio, General, Books, Console" + }, + { + "name": "CrazySpirits", + "description": "Crazy Spirits is a FRENCH Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, XXX, TV, PC, Console, Audio, Books" + }, + { + "name": "CrnaBerza", + "description": "Crna Berza is a BALKAN Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, PC, TV, Books, Audio, General, XXX" + }, + { + "name": "CRT2FA", + "description": "Cathode-Ray.Tube (CRT) is a Private Torrent Tracker for CLASSIC MOVIES / TV. This indexer uses cookie login for 2FA.", + "type": "PC, General, Movies, TV" + }, + { + "name": "cyanbug (大青虫)", + "description": "cyanbug (大青虫) is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "General, Audio, TV, Movies" + }, + { + "name": "DanishBytes (API)", + "description": "DanishBytes is a Private Danish Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, TV, PC, Audio, Books" + }, + { + "name": "Darkpeers (API)", + "description": "Darkpeers is a NORDIC Private Torrent Tracker for MOVIES / TV", + "type": "Movies, TV, Audio, Console, PC, XXX" + }, + { + "name": "Das Unerwartete", + "description": "Das Unerwartete (D-U) is a GERMAN Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, TV, Audio, PC, Console, Books, XXX, General" + }, + { + "name": "DataScene (API)", + "description": "DataScene (DS) is a ROMANIAN Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, TV, PC, Audio, Books, XXX" + }, + { + "name": "DesiTorrents (API)", + "description": "DesiTorrents is an INDIAN Private Torrent Tracker for MOVIES / TV", + "type": "Movies, TV, Audio" + }, + { + "name": "Diablo Torrent", + "description": "Diablo Torrent is a HUNGARIAN Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, TV, XXX, PC, Console, Audio, General, Books" + }, + { + "name": "DigitalCore (API)", + "description": "DigitalCore (DC) is a Private Torrent Tracker for 0DAY / GENERAL", + "type": "Movies, TV, General, PC, Audio, Console, XXX, Books" + }, + { + "name": "DimeADozen", + "description": "DimeADozen (EzTorrent) is a Private Torrent Tracker for BOOTLEG MUSIC", + "type": "Audio" + }, + { + "name": "DiscFan", + "description": "DiscFan is a CHINESE Private Torrent Tracker for MOVIES / TV", + "type": "Movies, TV, Audio" + }, + { + "name": "DocsPedia", + "description": "DocsPedia is a Private Torrent Tracker for E-LEARNING", + "type": "PC, Books, Audio, TV, General" + }, + { + "name": "Drugari", + "description": "Drugari is a CROATIAN Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "TV, PC, Movies, Console, Books, Audio, General, XXX" + }, + { + "name": "Ebooks-Shares", + "description": "Ebooks-Shares is a Private Torrent Tracker for EBOOKS / AUDIOBOOKS", + "type": "Audio, Books" + }, + { + "name": "eMuwarez (API)", + "description": "eMuwarez is a SPANISH Private Torrent Tracker for MOVIES / TV", + "type": "Movies, TV, Audio, Console, PC" + }, + { + "name": "eStone", + "description": "eStone (BigTorrent) is a HUNGARIAN Private Torrent Tracker for 0DAY / GENERAL", + "type": "Movies, TV, Audio, PC, Console, Books, General, XXX" + }, + { + "name": "exitorrent.org", + "description": "exitorrent.org is a POLISH Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "PC, Audio, Movies, Books, TV, General, XXX" + }, + { + "name": "Explosiv-World", + "description": "Explosiv-World (E-W) is a GERMAN Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, TV, Audio, PC, Console, Books, XXX" + }, + { + "name": "F1Carreras (API)", + "description": "F1Carreras is a SPANISH Private Torrent Tracker for Motor Racing TV Releases", + "type": "TV" + }, + { + "name": "F1GP", + "description": "F1GP is a Private Torrent Tracker for F1 Racing", + "type": "TV" + }, + { + "name": "FANO.IN", + "description": "Fano.in is a LATVIAN Private Torrent Tracker for 0DAY / GENERAL", + "type": "Movies, TV, PC, Audio, Books, Console, General, XXX" + }, + { + "name": "Fappaizuri", + "description": "Fappaizuri is a Private Torrent Tracker for HENTAI / JAV", + "type": "TV, Console, XXX, Books" + }, + { + "name": "FinElite", + "description": "FinElite (FE) is a FINNISH Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Audio, TV, Books, Console, PC, Movies" + }, + { + "name": "Flux-Zone", + "description": "Flux-Zone is a ROMANIAN Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "PC, TV, Movies, Console, Audio, XXX" + }, + { + "name": "Free Farm (自由农场)", + "description": "Free Farm (自由农场) is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, TV, Audio, General, Books, PC" + }, + { + "name": "FunkyTorrents", + "description": "FunkyTorrents (FT) is a Private Torrent Tracker for MUSIC", + "type": "PC, Books, Movies, Audio" + }, + { + "name": "FutureTorrent", + "description": "FutureTorrent is an ITALIAN Private PAY2DL Torrent Tracker for MOVIES / TV / GENERAL", + "type": "PC, Movies, Books, TV, Audio, General, Console" + }, + { + "name": "Fuzer", + "description": "Fuzer (FZ) is an ISRAELI Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, TV, PC, XXX, Console, Audio, Books, General" + }, + { + "name": "gay-torrents.org", + "description": "Gay-Torrents.org is a Private Torrent Tracker for GAY 3X", + "type": "XXX, Movies, TV, General, PC, Books" + }, + { + "name": "GAYtorrent.ru", + "description": "GayTorrent.ru is a Private Torrent Tracker for GAY 3X", + "type": "XXX, Books, PC, Movies, TV" + }, + { + "name": "Generation-Free (API)", + "description": "Generation-Free (GF-Free) is a FRENCH Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, TV, Books, Console, PC, Audio" + }, + { + "name": "GigaTorrents", + "description": "GigaTorrents is a HUNGARIAN Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, PC, General, XXX, Audio, Books, Console, TV" + }, + { + "name": "GimmePeers", + "description": "GimmePeers (formerly ILT) is a Private PAY2DL Torrent Tracker for MOVIES / TV / GENERAL", + "type": "TV, PC, Audio, Books, General, Console, Movies, XXX" + }, + { + "name": "Girotorrent", + "description": "Girotorrent is an ITALIAN Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Books, Audio, Movies, TV, PC, Console, General" + }, + { + "name": "HaiDan", + "description": "HaiDan is a CHINESE Private Torrent Tracker for HD MOVIES / TV", + "type": "TV, Movies, Audio, General" + }, + { + "name": "Hǎitáng (海棠PT)", + "description": "Hǎitáng (海棠PT) is a CHINESE Private Torrent Tracker for OPERA / CROSSTALK", + "type": "Audio, TV" + }, + { + "name": "HappyFappy2FA", + "description": "HappyFappy (HF) is a Private Torrent Tracker for 3X. This indexer uses cookie login for 2FA.", + "type": "XXX" + }, + { + "name": "HD Dolby", + "description": "HD Dolby is a CHINESE Private Torrent Tracker for HD MOVIES / TV / GENERAL", + "type": "Movies, TV, Audio, PC, General" + }, + { + "name": "HD-CLUB", + "description": "HD-CLUB is a CZECH Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, TV, XXX, PC, Audio, Console" + }, + { + "name": "HD-Olimpo (API)", + "description": "HD-Olimpo is a SPANISH Private Torrent Tracker for HD MOVIES / TV", + "type": "Movies, TV, Audio" + }, + { + "name": "HD-Only (API)", + "description": "HD-Only (HD-O) is a FRENCH Private Torrent Tracker for HD MOVIES / TV", + "type": "Movies, TV, Audio, General" + }, + { + "name": "HD-UNiT3D (API)", + "description": "HD-UNiT3D is a Private Torrent Tracker for HD MOVIES / TV", + "type": "Movies, TV, Audio" + }, + { + "name": "HDBao", + "description": "HDBao is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "TV, Movies, Audio, Books, General" + }, + { + "name": "HDCiTY", + "description": "HDCiTY (HDC) is a CHINESE Private Torrent Tracker for HD MOVIES / TV / GENERAL", + "type": "Movies, TV, Audio, XXX, General, PC" + }, + { + "name": "HDClone", + "description": "HDClone is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, TV, Audio, General" + }, + { + "name": "HDFans", + "description": "HDFans is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, TV, Audio, General, PC, Books" + }, + { + "name": "HDHome", + "description": "HDHome is a CHINESE Private Torrent Tracker for HD MOVIES / TV", + "type": "Movies, TV, Audio, General" + }, + { + "name": "HDKylin (麒麟)", + "description": "HDKylin (麒麟) is a CHINESE Private tracker for MOVIES / TV / GENERAL", + "type": "Movies, TV, General, Audio, PC, Console, Books" + }, + { + "name": "HDRoute", + "description": "HDRoute is a CHINESE Private Torrent Tracker for HD MOVIES / TV", + "type": "Movies, TV, Audio, General" + }, + { + "name": "HDSky", + "description": "HDSky is a CHINESE Private Torrent Tracker for HD MOVIES / TV", + "type": "Movies, TV, Audio, General" + }, + { + "name": "HDtime", + "description": "HDtime is a CHINESE Private Torrent Tracker for HD MOVIES / TV / GENERAL", + "type": "Movies, TV, PC, Audio, Books, General" + }, + { + "name": "HDTorrents.it (API)", + "description": "HDTorrents.it is an ITALIAN Private PAY2DL site for MOVIES / TV", + "type": "Movies, TV, Audio, Console, PC" + }, + { + "name": "HDTurk", + "description": "HDTurk is a TURKISH Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "General, Books, TV, Movies, Audio, Console, PC, XXX" + }, + { + "name": "HDU", + "description": "HDU is a CHINESE Private Torrent Tracker for HD MOVIES / TV / GENERAL", + "type": "Movies, TV, Audio, General, PC" + }, + { + "name": "HDZero (API)", + "description": "HD Zero is a SPANISH Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, TV, General" + }, + { + "name": "HellasHut", + "description": "HellasHut is a GREEK Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "TV, PC, Books, Audio, Movies, Console, General" + }, + { + "name": "HellasHut (API)", + "description": "HellasHut is a GREEK Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "TV, PC, Books, Audio, Movies, Console, General" + }, + { + "name": "HHanClub", + "description": "HHanClub is a CHINESE Private Torrent Tracker for HD MOVIES / TV", + "type": "General, TV, Movies, Audio" + }, + { + "name": "HHD (API)", + "description": "HHD is a Private Torrent Tracker for MOVIES / TV / GAMES", + "type": "Movies, TV, Audio, Console, PC, Books, XXX" + }, + { + "name": "HomePornTorrents", + "description": "HomePornTorrents (HPT) is a Private Torrent Tracker for Amateur 3X", + "type": "XXX" + }, + { + "name": "HUDBT (蝴蝶)", + "description": "HUDBT (蝴蝶) is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, PC, TV, Audio, General, Books, Console" + }, + { + "name": "ilolicon PT", + "description": "ilolicon PT is a CHINESE Private Torrent Tracker for LOLICON / MOVIES / 3X", + "type": "Movies, TV, Audio, Console, PC, General, XXX" + }, + { + "name": "INFINITY (API)", + "description": "INFINITY is a Private PAY2DL Torrent Tracker for MOVIES / TV", + "type": "Movies, TV" + }, + { + "name": "Infire", + "description": "Infire is a SLOVENIAN Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, TV, PC, Console, Audio, XXX, Books, General" + }, + { + "name": "JME-REUNIT3D (API)", + "description": "JME-REUNIT3D is a GERMAN Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, TV, XXX, Audio, PC, Console, Books" + }, + { + "name": "JoyHD", + "description": "JoyHD (JHD) is a CHINESE Private Torrent Tracker for HD MOVIES / TV / GENERAL", + "type": "Movies, TV, Audio, PC, General" + }, + { + "name": "KamePT", + "description": "KamePT is a CHINESE Private Torrent Tracker for 3X", + "type": "XXX" + }, + { + "name": "Kelu", + "description": "Kelu is a CHINESE Private Torrent Tracker for GAY 3X", + "type": "XXX, PC" + }, + { + "name": "Korsar", + "description": "Korsar is a RUSSIAN Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, TV, Audio, Books, General, PC, Console" + }, + { + "name": "KrazyZone", + "description": "KrazyZone is a Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Audio, Movies, TV, Books, PC, General" + }, + { + "name": "Kufei (库非)", + "description": "Kufei (库非) is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Console, Books, Audio, PC, TV, General, Movies" + }, + { + "name": "Kufirc", + "description": "Kufirc is a HUNGARIAN Private tracker for 3X", + "type": "XXX, Books, PC" + }, + { + "name": "Kufirc2FA", + "description": "Kufirc is a HUNGARIAN Private tracker for 3X. This indexer uses cookie login for 2FA.", + "type": "XXX, Books, PC" + }, + { + "name": "LastFiles", + "description": "LastFiles (LF) is a ROMANIAN Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "TV, Movies, General, PC, XXX, Audio, Books" + }, + { + "name": "Lat-Team (API)", + "description": "Lat-Team is a SPANISH Private Torrent Tracker for MOVIES / TV", + "type": "Movies, TV, Audio, PC, XXX, Books, Console, General" + }, + { + "name": "leech24", + "description": "leech24 is a Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "TV, PC, Console, Movies, Audio, Books, General" + }, + { + "name": "LemonHD", + "description": "LemonHD is a CHINESE Private Torrent Tracker for HD MOVIES / TV", + "type": "Movies, Audio, TV" + }, + { + "name": "LeSaloon", + "description": "Le Saloon is a FRENCH Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, TV, Audio, PC, Console, Books, General" + }, + { + "name": "Lesbians4u", + "description": "Lesbians4u is a Private Torrent Tracker for 3X", + "type": "XXX" + }, + { + "name": "LetSeed", + "description": "LetSeed is a TURKISH Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "TV, Books, Movies, Audio, PC, Console, General" + }, + { + "name": "LibraNet", + "description": "LibraNet (LN) is a HUNGARIAN Private Torrent Tracker for EBOOKS / LOSSLESS MUSIC", + "type": "Movies, Audio, Books" + }, + { + "name": "Locadora (API)", + "description": "Locadora is a BRAZILIAN Private Torrent Tracker for MOVIES / TV / ANIME", + "type": "Movies, TV, Audio" + }, + { + "name": "LosslessClub", + "description": "LosslessClub is a RUSSIAN Private Torrent Tracker for High Quality Music", + "type": "" + }, + { + "name": "Majomparádé", + "description": "Majomparádé (TurkDepo) is a HUNGARIAN Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, TV, Audio, Books, PC, Console, XXX" + }, + { + "name": "Making Off", + "description": "Making Off is a BRAZILIAN Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, TV, Audio" + }, + { + "name": "Malayabits (API)", + "description": "Malayabits is a MALAYSIAN Private Torrent Tracker for MOVIES / TV / MUSIC", + "type": "Movies, TV, Audio" + }, + { + "name": "Matrix", + "description": "M.A.T.R.I.X is a HUNGARIAN Private Tracker for MOVIES / TV / GENERAL", + "type": "Movies, Books, PC, Audio, TV, XXX" + }, + { + "name": "MDAN", + "description": "Mansão dos Animes (MDAN) is a BRAZILIAN Private Torrent Tracker for ANIME", + "type": "TV, Movies, Books, Audio" + }, + { + "name": "MegamixTracker", + "description": "MegamixTracker is a HUNGARIAN Private Tracker for MOVIES / TV", + "type": "TV, Books, Movies, Console, PC, General, XXX, Audio" + }, + { + "name": "MeseVilág", + "description": "MeseVilág (Fairytale World) is a HUNGARIAN Private Torrent Tracker for ANIMATED MOVIES / TV", + "type": "TV, Movies, Audio, PC, Console, Books" + }, + { + "name": "MetalGuru", + "description": "MetalGuru is a Private Torrent Tracker for GENERAL with focus on MUSIC", + "type": "Audio, TV, PC, Books, Movies, Console, General, XXX" + }, + { + "name": "MMA-torrents", + "description": "MMA-Torrents is a Private Torrent Tracker for MMA (Mixed Martial Arts)", + "type": "Audio, TV, Movies, Books, General" + }, + { + "name": "MNV", + "description": "MNV (Max-New-Vision) is a Private GERMAN Torrent Tracker for MOVIES / TV / GENERAL", + "type": "TV, PC, Books, Audio, Movies, General, XXX" + }, + { + "name": "MOJBLiNK", + "description": "MOJBLiNK is a SLOVENIAN Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, Audio, Books, PC, Console, General, TV, XXX" + }, + { + "name": "MonikaDesign (API)", + "description": "MonikaDesign is a CHINESE Private Torrent Tracker for MOVIES / TV / ANIME", + "type": "TV, Movies, Audio, PC" + }, + { + "name": "MouseBits", + "description": "MouseBits is a Private Torrent Tracker for all things Disney", + "type": "TV, Audio, General" + }, + { + "name": "New Heaven", + "description": "New Heaven is a GERMAN Private tracker for MOVIES / AUDIO / TV / GENERAL", + "type": "PC, Console, Movies, Audio, TV, Books, General" + }, + { + "name": "NicePT", + "description": "NicePT is a CHINESE Private Torrent Tracker for 3X", + "type": "XXX" + }, + { + "name": "NordicQuality (API)", + "description": "NordicQuality is a NORDIC Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Audio, Books, Console, Movies, PC, TV, XXX" + }, + { + "name": "Nusanta(RA.RE)", + "description": "Nusanta(RA.RE) is a MALAYSIAN Private Torrent Tracker for MOVIES / TV", + "type": "Movies, TV, Audio, Books, PC" + }, + { + "name": "OKPT", + "description": "OKPT is a CHINESE Private Torrent Tracker for MOVIES / TV / MUSIC / GENERAL", + "type": "Movies, TV, Books, Audio, Console, PC, General, XXX" + }, + { + "name": "Old Greek Tracker (OGT)", + "description": "Old Greek Tracker (OGT) is a GREEK Private Torrent Tracker for PRE-2020 MOVIES / TV / GENERAL", + "type": "PC, Books, Audio, Console, Movies, TV" + }, + { + "name": "OldToonsWorld (API)", + "description": "Old Toons World (OTW) is a Private Torrent Tracker for ANIMATED MOVIES / TV", + "type": "Movies, TV, Books, Audio, PC" + }, + { + "name": "OnlyEncodes+ (API)", + "description": "OnlyEncodes+ is a Private Tracker for MOVIES / TV", + "type": "Movies, TV" + }, + { + "name": "OpenCD", + "description": "OpenCD is a CHINESE Private Torrent Tracker for LOSSLESS ASIAN MUSIC", + "type": "Audio" + }, + { + "name": "OshenPT", + "description": "OshenPT is a CHINESE Private Torrent Tracker for HD MOVIES / TV / GENERAL", + "type": "Movies, TV, Audio, General, Console" + }, + { + "name": "Ostwiki", + "description": "Ostwiki is a Private Torrent Tracker for Soundtracks releases.", + "type": "Audio" + }, + { + "name": "P2PBG", + "description": "P2PBG is a BULGARIAN Private Torrent Tracker for 0DAY / GENERAL", + "type": "Movies, TV, Audio, PC, Console, Books, General, XXX" + }, + { + "name": "Panda", + "description": "Panda is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, TV, PC, Console, Books, Audio, General" + }, + { + "name": "Party-Tracker", + "description": "Party-Tracker is a HUNGARIAN private tracker for MOVIES / TV / GENERAL", + "type": "Console, PC, Movies, Books, TV, XXX, General, Audio" + }, + { + "name": "Peeratiko", + "description": "Peeratiko is a GREEK Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "PC, Books, Console, Movies, Audio, General, TV" + }, + { + "name": "Peers.FM", + "description": "Peers.FM is a RUSSIAN Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "TV, PC, Movies, General, XXX, Audio, Books" + }, + { + "name": "PigNetwork (猪猪网)", + "description": "PigNetwork (猪猪网) is a CHINESE Private Torrent Tracker for HD MOVIES / TV / GENERAL", + "type": "Movies, TV, Audio, General, Books" + }, + { + "name": "PixelCove2FA", + "description": "PixelCove2FA (Ultimate Gamer) is a Private Torrent Tracker for GAMES. Cookie Login for 2FA use.", + "type": "PC, Console, Books, Audio, General" + }, + { + "name": "Polish Torrent (API)", + "description": "Polish Torrent (PTT) is a POLISH Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, TV, PC, Audio, Books, Console, General, XXX" + }, + { + "name": "PolishTracker (API)", + "description": "PolishTracker is a POLISH Private Torrent Tracker for 0DAY / MOVIES / GENERAL", + "type": "PC, Audio, Console, Books, Movies, TV, XXX" + }, + { + "name": "Portugas (API)", + "description": "Portugas is a PORTUGUESE Private Torrent Tracker for 0DAY / GENERAL", + "type": "Movies, TV, Audio, PC, XXX, Books" + }, + { + "name": "ProAudioTorrents", + "description": "ProAudioTorrents (PAT) is a Private Torrent Tracker for AUDIO SOFTWARE / SAMPLES / TUTORIALS / ETC", + "type": "PC, Books, General, TV, Audio" + }, + { + "name": "PT GTK", + "description": "PT GTK is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, TV, Audio, General, Books" + }, + { + "name": "PTCafe (咖啡)", + "description": "PTCafe (咖啡) is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, TV, Audio, General" + }, + { + "name": "PTChina (铂金学院)", + "description": "PTChina (铂金学院) is a CHINESE Private Torrent Tracker for MOVIES / TV", + "type": "Movies, TV" + }, + { + "name": "PTerClub (PT之友俱乐部)", + "description": "PTerClub (PT之友俱乐部) is a CHINESE Private Torrent Tracker for HD MUSIC VIDEOS / MOVIES / TV / ANIME", + "type": "Movies, TV, Audio, Books, Console, PC, General" + }, + { + "name": "PTFans", + "description": "PTFans is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, TV, PC, Audio, General, Books, XXX" + }, + { + "name": "PThome", + "description": "PTHome is a CHINESE Private Torrent Tracker for HD MOVIES / TV", + "type": "Movies, TV, Audio, Console, PC, Books, General" + }, + { + "name": "PTSBAO (烧包)", + "description": "PTSBAO (烧包) is a CHINESE Private Torrent Tracker for HD MOVIES / TV", + "type": "Movies, TV, Audio, General" + }, + { + "name": "PTSKIT", + "description": "PTSKIT is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "TV, Movies, Audio, General, XXX" + }, + { + "name": "PTTime", + "description": "PTTime is a ratioless CHINESE Private Torrent Tracker for HD MOVIES / TV / GENERAL", + "type": "Movies, TV, PC, Audio, General, XXX" + }, + { + "name": "PTVicomo", + "description": "PTVicomo is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, TV, Audio" + }, + { + "name": "PT分享站 (itzmx)", + "description": "PT分享站 (itzmx) is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "TV, Books, Audio, Movies, PC, Console" + }, + { + "name": "Punk's Horror Tracker", + "description": "Punk's Horror Tracker is a HUNGARIAN Private Tracker for Horror MOVIES / TV", + "type": "Movies, TV, Books, PC, XXX" + }, + { + "name": "PuntoTorrent", + "description": "PuntoTorrent is a SPANISH Private Torrent Tracker for 0DAY / GENERAL", + "type": "TV, Movies, XXX, Audio, General, Books, PC, Console" + }, + { + "name": "PuTao (葡萄)", + "description": "PuTao (葡萄) is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, TV, Audio, Console, PC, General" + }, + { + "name": "PWTorrents", + "description": "PWTorrents (PWT) is a Private Torrent Tracker for PROFESSIONAL WRESTLING", + "type": "TV" + }, + { + "name": "Qingwa (青蛙)", + "description": "Qingwa (青蛙) is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, TV, Audio, General" + }, + { + "name": "R3V WTF!", + "description": "R3V WTF! is a Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "PC, General, Movies, Audio, Books, TV, XXX" + }, + { + "name": "Racing4Everyone (API)", + "description": "Racing4Everyone (R4E) is a Private Torrent Tracker for RACING", + "type": "TV" + }, + { + "name": "RailgunPT", + "description": "RailgunPT is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Audio, General, TV, Books, Console, PC, Movies" + }, + { + "name": "Rain (雨)", + "description": "Rain (雨) is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Audio, General, TV, Movies" + }, + { + "name": "Rastastugan (API)", + "description": "Rastastugan is a NORDIC Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, TV, Audio, PC, Console, Books, XXX" + }, + { + "name": "Red Star Torrent", + "description": "Red Star Torrent (RST) is a POLISH Private Torrent Tracker for MOVIES / TV", + "type": "PC, Movies, TV, Books, General, Audio, XXX" + }, + { + "name": "ReelFLiX (API)", + "description": "ReelFLiX (HD4Free,LegacyHD) is a Private Torrent Tracker for HD MOVIES", + "type": "Movies" + }, + { + "name": "RocketHD (API)", + "description": "RocketHD is a GERMAN Private Torrent Tracker for MOVIES / TV", + "type": "Movies, TV" + }, + { + "name": "Romanian Metal Torrents", + "description": "Romanian Metal Torrents (RMT) is a Private Torrent Tracker dedicated to METAL MUSIC. This definition is for the English site.", + "type": "Audio" + }, + { + "name": "Rousi", + "description": "Rousi is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, TV, Console, Audio, General, Books, PC, XXX" + }, + { + "name": "SAMARITANO (API)", + "description": "SAMARITANO is a BRAZILIAN Private tracker for MOVIES / TV / GENERAL", + "type": "Movies, TV, General, Console, Books, Audio, PC" + }, + { + "name": "SceneRush", + "description": "SceneRush is a PORTUGUESE Private Torrent Tracker for 0DAY / GENERAL", + "type": "Console, PC, Movies, Audio, TV, XXX, Books, General" + }, + { + "name": "SeedFile", + "description": "SeedFile (SF) is a ROMANIAN Private Torrent Tracker for 0DAY / GENERAL", + "type": "Books, General, Movies, Console, PC, Audio, TV, XXX" + }, + { + "name": "seedpool (API)", + "description": "seedpool is a Private Torrent Tracker for 0-DAY MOVIES / TV / GENERAL", + "type": "TV, Movies, Audio, Books, General, PC, Console" + }, + { + "name": "SewerPT", + "description": "SewerPT (下水道) is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, TV, Audio, General" + }, + { + "name": "SFP", + "description": "SFP (Share Friends Projekt) is a GERMAN Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "TV, PC, XXX, Movies, Audio, General, Books, Console" + }, + { + "name": "Shareisland (API)", + "description": "Shareisland is a ITALIAN Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, TV, Books, XXX, Audio, PC, General" + }, + { + "name": "SiamBIT", + "description": "SiamBIT is a THAI Private Torrent Tracker for GENERAL", + "type": "General, PC, TV, Audio, Movies, Books, XXX" + }, + { + "name": "SkipTheCommercials (API)", + "description": "SkipTheCommercials (STC) is a Private Torrent Tracker for TV", + "type": "Movies, TV" + }, + { + "name": "SoulVoice (聆音Club)", + "description": "SoulVoice (聆音Club) is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "General, Movies, TV, Audio" + }, + { + "name": "Speedmaster HD", + "description": "Speedmaster HD is a GERMAN Time based Torrent Tracker for MOVIES / TV", + "type": "Movies, TV, XXX, Audio, General, Books" + }, + { + "name": "Swarmazon (API)", + "description": "Swarmazon is a Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, TV, General, Audio, PC, Books" + }, + { + "name": "Tapochek", + "description": "Tapochek is a RUSSIAN Private Torrent Tracker for 0DAY / GENERAL", + "type": "PC, Console, Movies, TV, Audio, Books, General" + }, + { + "name": "Team CT Game", + "description": "Team CT Game (TCTG) is a FRENCH Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Books, Audio, Movies, TV, Console, PC, General, XXX" + }, + { + "name": "TeamHD", + "description": "TeamHD is a RUSSIAN Private Torrent Tracker for HD MOVIES / TV", + "type": "Movies, TV, Audio, General" + }, + { + "name": "TeamOS", + "description": "Team OS is a Private Torrent Tracker for SOFTWARE", + "type": "PC, Books, General" + }, + { + "name": "TEKNO3D", + "description": "TEKNO3D is a Private Torrent Tracker for UHD MOVIES / TV", + "type": "Audio, Movies, TV, General" + }, + { + "name": "The Crazy Ones", + "description": "The Crazy Ones is a Private GERMAN Torrent Tracker for MOVIES / TV / GENERAL", + "type": "TV, Movies, PC, Console, Audio, Books, General, XXX" + }, + { + "name": "The Empire", + "description": "TheEmpire (TE) is a Private Torrent Tracker for COMMONWEALTH TV / RADIO", + "type": "TV" + }, + { + "name": "The Kitchen", + "description": "TheKitchen (TK) is a Private Torrent Tracker for COOKING / CUISINES / RECIPES", + "type": "General, TV" + }, + { + "name": "The Occult", + "description": "TheOccult (TO) is a Private Torrent Tracker for CULT / MYTHOLOGY E-LEARNING", + "type": "General" + }, + { + "name": "The Old School (API)", + "description": "The Old School (TOS) is a FRENCH Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, TV, Books, Console, PC" + }, + { + "name": "The Show", + "description": "TheShow (TSBZ) is a Private Torrent Tracker for ENTERTAINMENT-INDUSTRY E-LEARNING", + "type": "General" + }, + { + "name": "TheLeachZone (API)", + "description": "The Leach Zone (TLZ) is a Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "TV, Movies, Audio, Books, Console, PC, General" + }, + { + "name": "ThePiratedShip", + "description": "ThePiratedShip is a Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, TV, Audio, PC, Console, Books, General" + }, + { + "name": "TJUPT (北洋园PT)", + "description": "TJUPT (北洋园PT) is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, TV, Audio, PC, Console, Books, General" + }, + { + "name": "TLFBits", + "description": "TLFBits is a CHINESE Private Torrent Tracker for HD MOVIES / TV", + "type": "Movies, TV, Audio, PC, General" + }, + { + "name": "TmGHuB", + "description": "TmGHuB (TH) is an INDIAN Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, Audio, TV, Books, General" + }, + { + "name": "Toca Share (API)", + "description": "Toca Share is a PORTUGUESE Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, TV, Audio, Console, PC, Books, General, XXX" + }, + { + "name": "Tormac", + "description": "Tormac is a RUSSIAN Private Torrent Tracker for MAC SOFTWARE", + "type": "PC, Books, General, Audio, Movies, TV" + }, + { + "name": "Tornado", + "description": "Tornado is a SLOVENIAN Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, TV, Audio, PC, Console, Books, XXX, General" + }, + { + "name": "Torrent Heaven", + "description": "Torrent Heaven is a DUTCH Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, TV, Books, Audio, PC, General, XXX" + }, + { + "name": "TOrrent-tuRK", + "description": "TOrrent-tuRK (TORK) is a TURKISH Private Torrent Tracker for HD MOVIES / TV / GENERAL", + "type": "Movies, TV, Audio, PC, General, Books, Console" + }, + { + "name": "Torrent.LT", + "description": "Torrent.LT is a LITHUANIAN Private Torrent Tracker for 0DAY / GENERAL", + "type": "Movies, TV, PC, Console, Audio, Books, General, XXX" + }, + { + "name": "TorrentCCF", + "description": "TorrentCCF (TCCF) is a CHINESE Private Torrent Tracker for HD MOVIES / TV", + "type": "Movies, TV, PC, Audio, General, Books" + }, + { + "name": "TorrentDD", + "description": "TorrentDD (TodayBit) is a THAI Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "General, TV, Console, PC, Books, Audio, Movies, XXX" + }, + { + "name": "Torrenteros (API)", + "description": "Torrenteros (TTR) is a SPANISH Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, TV" + }, + { + "name": "TorrentHR", + "description": "TorrentHR is a ratioless CROATIAN Private Torrent Tracker for 0DAY / GENERAL", + "type": "TV, Movies, PC, Console, Books, Audio, XXX, General" + }, + { + "name": "Torrenting", + "description": "Torrenting (TT) is a Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, XXX, TV, Console, Audio, Books, PC" + }, + { + "name": "ToTheGlory2FA", + "description": "ToTheGlory (TTG) is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL. This indexer uses cookie login for 2FA.", + "type": "" + }, + { + "name": "TrackerMK", + "description": "TrackerMK is a MACEDONIAN Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, PC, Audio, TV, Books, Console, General, XXX" + }, + { + "name": "TranceTraffic", + "description": "TranceTraffic is a Private Torrent Tracker for MUSIC", + "type": "" + }, + { + "name": "Trellas", + "description": "Trellas (Magico) is a GREEK Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, TV, Audio, Books, PC, General" + }, + { + "name": "TreZzoR", + "description": "TreZzoR is a CZECH Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, TV, Audio, XXX, PC, Books, General, Console" + }, + { + "name": "TreZzoRCookie", + "description": "TreZzoR is a CZECH Private Torrent Tracker for MOVIES / TV / GENERAL. This uses the cookie method for access", + "type": "Movies, TV, Audio, XXX, PC, Books, General, Console" + }, + { + "name": "TurkSeed (API)", + "description": "TurkSeed (Aturk) is a TURKISH Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, TV, Console, General, PC, Audio" + }, + { + "name": "TurkTorrent", + "description": "TurkTorrent (TT) is a TURKISH Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, General, TV, Books, PC, Audio, Console" + }, + { + "name": "TVChaosUK", + "description": "TV Chaos UK (TVCUK) is a Private Torrent Tracker for UK TV", + "type": "TV, Movies, Audio" + }, + { + "name": "UBits", + "description": "UBits is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, TV, Audio, General" + }, + { + "name": "UltraHD", + "description": "UltraHD is a CHINESE Private Torrent Tracker for UHD MOVIES / TV / GENERAL", + "type": "Movies, TV, Audio, General" + }, + { + "name": "Unlimitz", + "description": "Unlimitz is a THAI Private Torrent Tracker for GENERAL", + "type": "Audio, TV, General, Console, PC, Movies, Books, XXX" + }, + { + "name": "upload.cx (API)", + "description": "upload.cx (ULCX) is a Private Torrent Tracker for MOVIES / TV", + "type": "Movies, TV" + }, + { + "name": "Upscale Vault (API)", + "description": "Upscale Vault is a Private Torrent Tracker for AI upscaled and remastered MOVIES / TV", + "type": "Movies, TV, Audio" + }, + { + "name": "UTOPIA (API)", + "description": "UTOPIA is a UKRAINIAN Private Tracker for HD MOVIES and TV", + "type": "Movies, TV" + }, + { + "name": "Vault network", + "description": "Vault network is a Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "PC, Audio, Books, General, Movies, TV, Console" + }, + { + "name": "WDT", + "description": "Wrestling Desires Torrents (Ultimate Wrestling Torrents) is a Private Torrent Tracker for PROFESSIONAL WRESTLING / MMA", + "type": "Audio, Books, TV, PC, Movies" + }, + { + "name": "White Angel", + "description": "White Angel is a HUNGARIAN Private Tracker for MOVIES / TV", + "type": "Books, XXX, TV, Movies, Audio, PC, Console, General" + }, + { + "name": "WinterSakura", + "description": "WinterSakura is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "General, TV, Audio, Movies, PC, Books" + }, + { + "name": "World-In-HD", + "description": "World-In-HD is a Private Torrent Tracker. Your world in HD", + "type": "Movies, TV, PC, Audio" + }, + { + "name": "x-ite.me", + "description": "X-ite.me (XM) is a Private Torrent Tracker for LGBTQ MOVIES / GENERAL / 3X", + "type": "TV, PC, Audio, Books, XXX, Movies, General" + }, + { + "name": "Xthor (API)", + "description": "Xthor is a FRENCH Private Torrent Tracker for MOVIES / GENERAL", + "type": "Movies, TV, Audio, XXX, Books, PC, Console" + }, + { + "name": "xTorrenty", + "description": "xTorrenty is a POLISH Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "Movies, PC, Console, Audio, TV, XXX, Books, General" + }, + { + "name": "Xtreme Bytes", + "description": "Xtreme Bytes (TorrentSurf) is a Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "TV, PC, Books, Console, General, Movies, Audio, XXX" + }, + { + "name": "XWT-Classics", + "description": "XWT-Classics is a Private Torrent Tracker for CLASSIC PROFESSIONAL WRESTLING", + "type": "TV" + }, + { + "name": "YGG cookie", + "description": "YggTorrent (YGG) is a FRENCH Private Torrent Tracker for MOVIES / TV / GENERAL. This indexer uses cookie login.", + "type": "TV, Movies, Audio, PC, Console, Books, General, XXX" + }, + { + "name": "YOiNKED (API)", + "description": "YOiNKED is a Private Torrent Tracker for MOVIES / TV / MUSIC", + "type": "Movies, TV, Audio, Books, Console" + }, + { + "name": "YUSCENE (API)", + "description": "YUSCENE is a Private Tracker for MOVIES / TV", + "type": "Movies, TV, Console, Audio, PC, Books" + }, + { + "name": "Zamunda.net", + "description": "Zamunda is a BULGARIAN Private Torrent Tracker for 0DAY / GENERAL", + "type": "Movies, TV, Audio, PC, Console, General, Books, XXX" + }, + { + "name": "Zappateers", + "description": "Zappateers is a Private Torrent Tracker for Frank Zappa MUSIC", + "type": "Audio, General" + }, + { + "name": "Zelka.org", + "description": "Zelka (Zamunda) is a BULGARIAN Private Torrent Tracker for 0DAY / GENERAL", + "type": "Movies, PC, TV, XXX, General, Console, Audio, Books" + }, + { + "name": "ZmPT (织梦)", + "description": "ZmPT (织梦) is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", + "type": "General, TV, Audio, Movies, PC, Console" + } + ] +}