-
Notifications
You must be signed in to change notification settings - Fork 1
/
moviebot.html
288 lines (288 loc) · 10.4 KB
/
moviebot.html
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SWAIG Server</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f9;
color: #333;
margin: 0;
padding: 20px;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
h1, h2 {
color: #4a4a8c;
text-align: center;
}
.content {
max-width: 800px;
width: 100%;
padding: 20px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
background-color: #fff;
border-radius: 8px;
}
ul {
list-style-type: none;
padding: 0;
}
li {
margin-bottom: 20px;
}
table {
width: 100%;
border-collapse: collapse;
margin-bottom: 20px;
background-color: #fff;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
th, td {
padding: 12px;
text-align: left;
border-bottom: 1px solid #ddd;
}
th {
background-color: #4a4a8c;
color: #fff;
width: 150px; /* Fixed width for the first column */
}
tr:hover {
background-color: #f1f1f1;
}
a {
color: #4a4a8c;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.function-title {
font-size: 1.2em;
margin-bottom: 5px;
}
.description {
margin-bottom: 10px;
}
</style>
</head>
<body>
<div class="content">
<h1>Welcome to the MovieBot SWAIG Server</h1>
<p>This server provides various endpoints to interact with The Movie Database (TMDb) API.</p>
<h2>Available Functions:</h2>
<ul>
<li>
<div class="function-title">Search for movies by title</div>
<table>
<tr>
<th>Function</th>
<td>search_movie</td>
</tr>
<tr>
<th>Parameters</th>
<td>query (required), language, page, include_adult, region, year, primary_release_year</td>
</tr>
<tr>
<th>Description</th>
<td>Searches for movies using a title query and returns results based on specified criteria.</td>
</tr>
</table>
</li>
<li>
<div class="function-title">Retrieve detailed information about a movie</div>
<table>
<tr>
<th>Function</th>
<td>get_movie_details</td>
</tr>
<tr>
<th>Parameters</th>
<td>movie_id (required), language, append_to_response</td>
</tr>
<tr>
<th>Description</th>
<td>Retrieves comprehensive details about a specific movie using its TMDb ID.</td>
</tr>
</table>
</li>
<li>
<div class="function-title">Discover movies by different criteria</div>
<table>
<tr>
<th>Function</th>
<td>discover_movies</td>
</tr>
<tr>
<th>Parameters</th>
<td>language, region, sort_by, include_adult, include_video, page, primary_release_year, primary_release_date_gte, primary_release_date_lte, with_genres, with_cast, with_crew, with_keywords, with_runtime_gte, with_runtime_lte</td>
</tr>
<tr>
<th>Description</th>
<td>Allows discovery of movies based on various filters and sorting options.</td>
</tr>
</table>
</li>
<li>
<div class="function-title">Get trending movies</div>
<table>
<tr>
<th>Function</th>
<td>get_trending_movies</td>
</tr>
<tr>
<th>Parameters</th>
<td>time_window, language, page</td>
</tr>
<tr>
<th>Description</th>
<td>Retrieves a list of movies that are currently trending within a specified time window.</td>
</tr>
</table>
</li>
<li>
<div class="function-title">Get movie recommendations</div>
<table>
<tr>
<th>Function</th>
<td>get_movie_recommendations</td>
</tr>
<tr>
<th>Parameters</th>
<td>movie_id (required), language, page</td>
</tr>
<tr>
<th>Description</th>
<td>Provides movie recommendations based on a specific movie's TMDb ID.</td>
</tr>
</table>
</li>
<li>
<div class="function-title">Retrieve the list of official genres</div>
<table>
<tr>
<th>Function</th>
<td>get_genre_list</td>
</tr>
<tr>
<th>Parameters</th>
<td>language</td>
</tr>
<tr>
<th>Description</th>
<td>Retrieves a list of official movie genres available in TMDb.</td>
</tr>
</table>
</li>
<li>
<div class="function-title">Get upcoming movies</div>
<table>
<tr>
<th>Function</th>
<td>get_upcoming_movies</td>
</tr>
<tr>
<th>Parameters</th>
<td>language, region, page</td>
</tr>
<tr>
<th>Description</th>
<td>Retrieves a list of movies that are soon to be released.</td>
</tr>
</table>
</li>
<li>
<div class="function-title">Get movies currently playing in theaters</div>
<table>
<tr>
<th>Function</th>
<td>get_now_playing_movies</td>
</tr>
<tr>
<th>Parameters</th>
<td>language, region, page</td>
</tr>
<tr>
<th>Description</th>
<td>Retrieves a list of movies that are currently playing in theaters.</td>
</tr>
</table>
</li>
<li>
<div class="function-title">Retrieve similar movies</div>
<table>
<tr>
<th>Function</th>
<td>get_similar_movies</td>
</tr>
<tr>
<th>Parameters</th>
<td>movie_id (required), language, page</td>
</tr>
<tr>
<th>Description</th>
<td>Retrieves a list of movies similar to a specified movie.</td>
</tr>
</table>
</li>
<li>
<div class="function-title">Search for movies, TV shows, and people in a single request</div>
<table>
<tr>
<th>Function</th>
<td>multi_search</td>
</tr>
<tr>
<th>Parameters</th>
<td>query (required), language, page, include_adult, region</td>
</tr>
<tr>
<th>Description</th>
<td>Performs a search across movies, TV shows, and people using a single query.</td>
</tr>
</table>
</li>
<li>
<div class="function-title">Retrieve cast and crew information for a movie</div>
<table>
<tr>
<th>Function</th>
<td>get_movie_credits</td>
</tr>
<tr>
<th>Parameters</th>
<td>movie_id (required), language</td>
</tr>
<tr>
<th>Description</th>
<td>Retrieves detailed cast and crew information for a specific movie.</td>
</tr>
</table>
</li>
<li>
<div class="function-title">Retrieve detailed information about a person</div>
<table>
<tr>
<th>Function</th>
<td>get_person_details</td>
</tr>
<tr>
<th>Parameters</th>
<td>person_id (required), language, append_to_response</td>
</tr>
<tr>
<th>Description</th>
<td>Retrieves comprehensive details about a person using their TMDb ID.</td>
</tr>
</table>
</li>
</ul>
<p>For more information, visit the <a href="https://github.com/briankwest/moviebot">GitHub repository</a>.</p>
</div>
</body>
</html>