2022-03-01 07:50:57 +00:00
---
id : danishbytes-api
name : DanishBytes (API)
description : "DanishBytes is a Private Danish Tracker"
language : en-US
type : private
encoding : UTF-8
links :
- https://danishbytes.club/
- https://danishbytes2.org/
- https://dbytes.org/
- https://danishbytes.art/
legacylinks :
- https://danishbytes.org/
caps :
categorymappings :
- {id: 1, cat: Movies, desc : "Movies" }
- {id: 2, cat: TV, desc : "TV" }
- {id: 3, cat: Audio, desc : "Sound" }
- {id: 4, cat: PC/Games, desc : "Games" }
- {id: 5, cat: PC/0day, desc : "Appz" }
- {id: 8, cat: Books, desc : "Bookz" }
modes :
search : [ q]
2022-06-12 07:58:12 +00:00
tv-search : [ q, season, ep, imdbid, tvdbid, tmdbid]
2022-03-01 07:50:57 +00:00
movie-search : [ q, imdbid, tmdbid]
music-search : [ q]
book-search : [ q]
settings :
- name : apikey
type : text
label : APIKey
- name : info_apikey
type : info
label : About your API key
default : "Find or Generate a new API Token by accessing your <a href=\"https://danishbytes.club/\" target =_blank>DanishBytes</a> account <i>My Security</i> page and clicking on the <b>API Token</b> tab."
- name : rsskey
type : text
label : RSSKey
- name : info_rsskey
type : info
label : About your RSS key
default : "Find or Generate a new RSS key by accessing your <a href=\"https://danishbytes.club/\" target =_blank>DanishBytes</a> account <i>My Security</i> page and clicking on the <b>RSS Key (RID)</b> tab."
2022-03-01 18:49:11 +00:00
- name : freeleech
type : checkbox
label : Search freeleech only
default : false
2022-03-01 19:26:37 +00:00
- name : sort
type : select
label : Sort requested from site
default : created_at
options :
created_at : created
seeders : seeders
size : size
name : title
- name : type
type : select
label : Order requested from site
default : desc
options :
desc : desc
asc : asc
2022-03-01 07:50:57 +00:00
login :
path : /api/torrents
method : get
inputs :
api_token : "{{ .Config.apikey }}"
error :
- selector : a[href*="/login"]
message :
text : "The API key was not accepted by {{ .Config.sitelink }}."
search :
paths :
2022-03-01 19:26:37 +00:00
- path : "/api/torrents/v2/filter?api_token={{ .Config.apikey }}&search={{ .Keywords }}{{ if .Query.IMDBIDShort }}&imdb={{ .Query.IMDBIDShort }}{{ else }}{{ end }}{{ if .Query.TMDBID }}&tmdb={{ .Query.TMDBID }}{{ else }}{{ end }}{{ if .Query.TVDBID }}&tvdb={{ .Query.TVDBID }}{{ else }}{{ end }}{{ range .Categories }}&categories[]={{.}}{{end}}{{ if .Config.freeleech }}&freeleech=1{{ else }}{{ end }}&sorting={{ .Config.sort }}&direction={{ .Config.type }}&qty=100&page=1"
2022-03-01 07:50:57 +00:00
response :
type : json
rows :
selector : torrents
count :
selector : $.resultsCount
fields :
2022-07-19 07:18:10 +00:00
_id :
2022-03-01 07:50:57 +00:00
selector : .id
category :
selector : category_id
title :
selector : name
details :
2022-07-19 07:18:10 +00:00
text : "{{ .Config.sitelink }}torrents/{{ .Result._id }}"
2022-03-01 07:50:57 +00:00
download :
2022-07-19 07:18:10 +00:00
text : "{{ .Config.sitelink }}torrent/download/{{ .Result._id }}.{{ .Config.rsskey }}"
2022-06-10 00:48:18 +00:00
infohash :
selector : info_hash
2022-03-01 07:50:57 +00:00
poster :
selector : poster_image
2022-07-29 06:44:45 +00:00
genre :
selector : meta_genres
description :
text : "{{ .Result.genre }}"
2022-03-01 07:50:57 +00:00
imdbid :
selector : imdb
tmdbid :
selector : tmdb
tvdbid :
selector : tvdb
seeders :
selector : seeders
leechers :
selector : leechers
grabs :
selector : times_completed
date :
# 2022-02-28T19:09:44.000000Z
selector : created_at
size :
selector : size
downloadvolumefactor :
# api returns 0=false, 1=true
selector : free
case :
0 : 1 # not free
1 : 0 # freeleech
uploadvolumefactor :
# api returns 0=false, 1=true
selector : doubleup
case :
0 : 1 # normal
1 : 2 # double
minimumratio :
text : 1.0
minimumseedtime :
# 2 day (as seconds = 2 x 24 x 60 x 60)
text : 172800
2022-03-30 21:04:41 +00:00
# json DBy v0.96