-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmethods.json
75 lines (75 loc) · 2.16 KB
/
methods.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"/infos/formats": {
"url": "/infos/formats",
"method": "GET"
},
"/infos/user": {
"opts": {
"auth": true
},
"url": "/infos/user",
"method": "GET"
},
"infos/languages": {
"url": "/infos/languages",
"method": "GET"
},
"/user/login": {
"url": "/login",
"method": "POST",
"body": {
"username": null,
"password": null
}
},
"/user/logout": {
"url": "/logout",
"method": "DELETE"
},
"/discover/popular": {
"url": "/discover/popular?languages=&type=",
"optional": ["languages", "type"],
"method": "GET"
},
"/discover/latest": {
"url": "/discover/latest?languages=&type=",
"optional": ["languages", "type"],
"method": "GET"
},
"/discover/most_downloaded": {
"url": "/discover/most_downloaded?languages=&type=",
"optional": ["languages", "type"],
"method": "GET"
},
"/download": {
"opts": {
"auth": true
},
"url": "/download",
"method": "POST",
"body": {
"file_id": null,
"sub_format": null,
"file_name": null,
"in_fps": null,
"out_fps": null,
"timeshift": null,
"force_download": null
}
},
"/subtitles": {
"url": "/subtitles?ai_translated=&episode_number=&foreign_parts_only=&hearing_impaired=&id=&imdb_id=&languages=&machine_translated=&moviehash=&moviehash_match=&order_by=&order_direction=&page=&parent_feature_id=&parent_imdb_id=&parent_tmdb_id=&query=&season_number=&tmdb_id=&trusted_sources=&type=&user_id=&year=",
"optional": ["ai_translated", "episode_number", "foreign_parts_only", "hearing_impaired", "id", "imdb_id", "languages", "machine_translated", "moviehash", "moviehash_match", "order_by", "order_direction", "page", "parent_feature_id", "parent_imdb_id", "parent_tmdb_id", "query", "season_number", "tmdb_id", "trusted_sources", "type", "user_id", "year"],
"method": "GET"
},
"/features": {
"url": "/features?query=&feature_id=&imdb_id=&tmdb_id=&type=&year=",
"optional": ["feature_id", "imdb_id", "tmdb_id", "type", "year"],
"method": "GET"
},
"/guessit": {
"url": "/guessit?filename=",
"optional": ["filename"],
"method": "GET"
}
}