fasffaff commited on
Commit
4e93ad0
·
verified ·
1 Parent(s): 71c0902

Upload tmdb.json

Browse files
Files changed (1) hide show
  1. tmdb.json +728 -0
tmdb.json ADDED
@@ -0,0 +1,728 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "query": "give me the number of movies directed by Sofia Coppola",
4
+ "solution": [
5
+ "GET /search/person",
6
+ "GET /person/{person_id}/movie_credits"
7
+ ]
8
+ },
9
+ {
10
+ "query": "Who was the lead actor in the movie The Dark Knight?",
11
+ "solution": [
12
+ "GET /search/movie",
13
+ "GET /movie/{movie_id}/credits"
14
+ ]
15
+ },
16
+ {
17
+ "query": "Who directed the top-1 rated movie?",
18
+ "solution": [
19
+ "GET /movie/top_rated",
20
+ "GET /movie/{movie_id}/credits"
21
+ ]
22
+ },
23
+ {
24
+ "query": "give me a image for the collection Star Wars",
25
+ "solution": [
26
+ "GET /search/collection",
27
+ "GET /collection/{collection_id}/images"
28
+ ]
29
+ },
30
+ {
31
+ "query": "What is the logo of the Walt Disney?",
32
+ "solution": [
33
+ "GET /search/company",
34
+ "GET /company/{company_id}/images"
35
+ ]
36
+ },
37
+ {
38
+ "query": "What dose the lead actor of Titanic look like?",
39
+ "solution": [
40
+ "GET /search/movie",
41
+ "GET /movie/{movie_id}/credits",
42
+ "GET /person/{person_id}/images"
43
+ ]
44
+ },
45
+ {
46
+ "query": "give me some reviews of the first movie that is similar to Titanic",
47
+ "solution": [
48
+ "GET /search/movie",
49
+ "GET /movie/{movie_id}/similar",
50
+ "GET /movie/{movie_id}/reviews"
51
+ ]
52
+ },
53
+ {
54
+ "query": "I just finished watching Titanic and I want some other movie recommendations",
55
+ "solution": [
56
+ "GET /search/movie",
57
+ "GET /movie/{movie_id}/recommendations"
58
+ ]
59
+ },
60
+ {
61
+ "query": "What is the latest movie directed by Christopher Nolan?",
62
+ "solution": [
63
+ "GET /search/person",
64
+ "GET /person/{person_id}/movie_credits"
65
+ ]
66
+ },
67
+ {
68
+ "query": "tell me the highest rated movie directed by Martin Scorsese",
69
+ "solution": [
70
+ "GET /search/person",
71
+ "GET /person/{person_id}/movie_credits"
72
+ ]
73
+ },
74
+ {
75
+ "query": "Who is the director of Leonardo DiCaprio's latest movie?",
76
+ "solution": [
77
+ "GET /search/person",
78
+ "GET /person/{person_id}/movie_credits",
79
+ "GET /movie/{movie_id}/credits"
80
+ ]
81
+ },
82
+ {
83
+ "query": "tell me a TV show recently directed by Catherine Hardwicke",
84
+ "solution": [
85
+ "GET /search/person",
86
+ "GET /person/{person_id}/tv_credits"
87
+ ]
88
+ },
89
+ {
90
+ "query": "Please recommend me some TV shows similar to Breaking Bad",
91
+ "solution": [
92
+ "GET /search/tv",
93
+ "GET /tv/{tv_id}/recommendations"
94
+ ]
95
+ },
96
+ {
97
+ "query": "Who is the director of today's most trending movie?",
98
+ "solution": [
99
+ "GET /trending/{media_type}/{time_window}",
100
+ "GET /movie/{movie_id}/credits"
101
+ ]
102
+ },
103
+ {
104
+ "query": "Who is the director of the movie \"Twilight\"?",
105
+ "solution": [
106
+ "GET /search/movie",
107
+ "GET /movie/{movie_id}/credits"
108
+ ]
109
+ },
110
+ {
111
+ "query": "give me a photo belong to the second episode of the first season of the Witcher",
112
+ "solution": [
113
+ "GET /search/tv",
114
+ "GET /tv/{tv_id}/season/{season_number}/episode/{episode_number}/images"
115
+ ]
116
+ },
117
+ {
118
+ "query": "What is top-1 rated movie?",
119
+ "solution": [
120
+ "GET /movie/top_rated"
121
+ ]
122
+ },
123
+ {
124
+ "query": "What is the release date of the movie \"The Matrix\"?",
125
+ "solution": [
126
+ "GET /search/movie",
127
+ "GET /movie/{movie_id}/release_dates"
128
+ ]
129
+ },
130
+ {
131
+ "query": "Who is the most popular person?",
132
+ "solution": [
133
+ "GET /person/popular"
134
+ ]
135
+ },
136
+ {
137
+ "query": "Give me some cover images of movies directed by Christopher Nolan.",
138
+ "solution": [
139
+ "GET /search/person",
140
+ "GET /person/{person_id}/movie_credits",
141
+ "GET /movie/{movie_id}/images"
142
+ ]
143
+ },
144
+ {
145
+ "query": "What are some common keywords associated with movie \"Titanic\"?",
146
+ "solution": [
147
+ "GET /search/movie",
148
+ "GET /movie/{movie_id}/keywords"
149
+ ]
150
+ },
151
+ {
152
+ "query": "Give me a show that is currently on the air",
153
+ "solution": [
154
+ "GET /tv/on_the_air"
155
+ ]
156
+ },
157
+ {
158
+ "query": "When is Clint Eastwood's latest movie scheduled to be released?",
159
+ "solution": [
160
+ "GET /search/person",
161
+ "GET /person/{person_id}/movie_credits",
162
+ "GET /movie/{movie_id}/release_dates"
163
+ ]
164
+ },
165
+ {
166
+ "query": "Give me some movie reviews about The Dark Knight",
167
+ "solution": [
168
+ "GET /search/movie",
169
+ "GET /movie/{movie_id}/reviews"
170
+ ]
171
+ },
172
+ {
173
+ "query": "What are some movies that are similar to one of the movies directed by Francis Ford Coppola?",
174
+ "solution": [
175
+ "GET /search/person",
176
+ "GET /person/{person_id}/movie_credits",
177
+ "GET /movie/{movie_id}/similar"
178
+ ]
179
+ },
180
+ {
181
+ "query": "Who is the lead actor in the latest released movie?",
182
+ "solution": [
183
+ "GET /movie/latest",
184
+ "GET /movie/{movie_id}/credits"
185
+ ]
186
+ },
187
+ {
188
+ "query": "give me one image of the movie that is currently showing in theaters",
189
+ "solution": [
190
+ " GET /movie/now_playing",
191
+ "GET /movie/{movie_id}/images"
192
+ ]
193
+ },
194
+ {
195
+ "query": "What is the most popular movie right now and what is its keywords?",
196
+ "solution": [
197
+ "GET /movie/popular",
198
+ "GET /movie/{movie_id}/keywords"
199
+ ]
200
+ },
201
+ {
202
+ "query": "What are the keywords of the most popular movie right now",
203
+ "solution": [
204
+ " GET /movie/popular",
205
+ "GET /movie/{movie_id}/keywords"
206
+ ]
207
+ },
208
+ {
209
+ "query": "Who has starred in a movie \"Titanic\"",
210
+ "solution": [
211
+ "GET /search/movie ",
212
+ "GET /movie/{movie_id}/credits"
213
+ ]
214
+ },
215
+ {
216
+ "query": "What do the logo looks like for Paramount Pictures?",
217
+ "solution": [
218
+ "GET /company/{company_id}",
219
+ "GET /company/{company_id}/images"
220
+ ]
221
+ },
222
+ {
223
+ "query": "tell me where the company \"universal pictures\" was founded?",
224
+ "solution": [
225
+ "GET /search/company",
226
+ "GET /company/{company_id}"
227
+ ]
228
+ },
229
+ {
230
+ "query": "When is the movie \"Titanic\" released?",
231
+ "solution": [
232
+ "GET /search/movie ",
233
+ "GET /movie/{movie_id}/release_dates"
234
+ ]
235
+ },
236
+ {
237
+ "query": "Who has starred in the first movie of Star Wars collection?",
238
+ "solution": [
239
+ "GET /search/collection",
240
+ "GET /collection/{collection_id}",
241
+ "GET /movie/{movie_id}/credits"
242
+ ]
243
+ },
244
+ {
245
+ "query": "give me a movie cover of a movie from the collection Harry Potter",
246
+ "solution": [
247
+ "GET /search/collection",
248
+ "GET /collection/{collection_id}",
249
+ "GET /movie/{movie_id}/images"
250
+ ]
251
+ },
252
+ {
253
+ "query": "What are some keywords for a movie of the collection The Hunger Games?",
254
+ "solution": [
255
+ "GET /search/collection",
256
+ "GET /collection/{collection_id}",
257
+ "GET /movie/{movie_id}/keywords"
258
+ ]
259
+ },
260
+ {
261
+ "query": "When are the release dates for the movies of the collection The Hobbit?",
262
+ "solution": [
263
+ "GET /search/collection",
264
+ "GET /collection/{collection_id}"
265
+ ]
266
+ },
267
+ {
268
+ "query": "List movies from The Fast and the Furious collection",
269
+ "solution": [
270
+ "GET /search/collection",
271
+ "GET /collection/{collection_id}"
272
+ ]
273
+ },
274
+ {
275
+ "query": "Give me a review of a movie from the collection The Fast and the Furious.",
276
+ "solution": [
277
+ "GET /search/collection",
278
+ "GET /collection/{collection_id}",
279
+ "GET /movie/{movie_id}/reviews"
280
+ ]
281
+ },
282
+ {
283
+ "query": "When was the first movie of the collection Lord of the Rings released?",
284
+ "solution": [
285
+ "GET /search/collection",
286
+ "GET /collection/{collection_id}"
287
+ ]
288
+ },
289
+ {
290
+ "query": "tell me the directors of the first season of House of Cards",
291
+ "solution": [
292
+ "GET /search/tv",
293
+ "GET /tv/{tv_id}/season/{season_number}/credits"
294
+ ]
295
+ },
296
+ {
297
+ "query": "I want some tv shows that similar to House of Cards",
298
+ "solution": [
299
+ "GET /search/tv",
300
+ "GET /tv/{tv_id}/similar"
301
+ ]
302
+ },
303
+ {
304
+ "query": "When did the most popular TV show currently on the air start?",
305
+ "solution": [
306
+ "GET /tv/on_the_air",
307
+ "GET /tv/{tv_id}"
308
+ ]
309
+ },
310
+ {
311
+ "query": "tell me a few more works directed by the director of Django Unchained",
312
+ "solution": [
313
+ "GET /search/movie",
314
+ "GET /movie/{movie_id}/credits",
315
+ "GET /person/{person_id}/movie_credits"
316
+ ]
317
+ },
318
+ {
319
+ "query": "tell me the cast of a TV show on the air",
320
+ "solution": [
321
+ "GET /tv/on_the_air",
322
+ "GET /tv/{tv_id}/credits"
323
+ ]
324
+ },
325
+ {
326
+ "query": "I need a review for Breaking Bad",
327
+ "solution": [
328
+ "GET /search/tv",
329
+ "GET /tv/{tv_id}/reviews"
330
+ ]
331
+ },
332
+ {
333
+ "query": "I'm watching the tv series The Last Of Us and I need some more recommendations",
334
+ "solution": [
335
+ "GET /search/tv",
336
+ "GET /tv/{tv_id}/recommendations"
337
+ ]
338
+ },
339
+ {
340
+ "query": "I'm watching a TV show called The Last Of Us and I need some more recommendations",
341
+ "solution": [
342
+ "GET /search/tv",
343
+ "GET /tv/{tv_id}/recommendations"
344
+ ]
345
+ },
346
+ {
347
+ "query": "tell me the guest star from season 3, episode 24 of Friends",
348
+ "solution": [
349
+ "GET /search/tv",
350
+ "GET /tv/{tv_id}/season/{season_number}/episode/{episode_number}/credits"
351
+ ]
352
+ },
353
+ {
354
+ "query": "Who is the lead actor in the most popular TV show?",
355
+ "solution": [
356
+ "GET /tv/popular",
357
+ "GET /tv/{tv_id}/credits"
358
+ ]
359
+ },
360
+ {
361
+ "query": "give me a keyword of the top-1 rated TV show",
362
+ "solution": [
363
+ "GET /tv/top_rated",
364
+ "GET /tv/{tv_id}/keywords"
365
+ ]
366
+ },
367
+ {
368
+ "query": "give me a poster of 2 Broke Girls",
369
+ "solution": [
370
+ "GET /search/tv",
371
+ "GET /tv/{tv_id}/images"
372
+ ]
373
+ },
374
+ {
375
+ "query": "How many episodes does 2 Broke Girls have in total?",
376
+ "solution": [
377
+ "GET /search/tv",
378
+ "GET /tv/{tv_id}"
379
+ ]
380
+ },
381
+ {
382
+ "query": "When was the company that produced The Big Bang Theory founded?",
383
+ "solution": [
384
+ "GET /search/tv",
385
+ "GET /tv/{tv_id}",
386
+ "GET /company/{company_id}"
387
+ ]
388
+ },
389
+ {
390
+ "query": "When was the TV show The Big Bang Theory created?",
391
+ "solution": [
392
+ "GET /search/tv",
393
+ "GET /tv/{tv_id}"
394
+ ]
395
+ },
396
+ {
397
+ "query": "give me a keyword of the most popular TV show",
398
+ "solution": [
399
+ "GET /tv/popular",
400
+ "GET /tv/{tv_id}/keywords"
401
+ ]
402
+ },
403
+ {
404
+ "query": "What did the third episode of the second season of Westworld talk about?",
405
+ "solution": [
406
+ "GET /search/tv",
407
+ "GET /tv/{tv_id}/season/{season_number}/episode/{episode_number}"
408
+ ]
409
+ },
410
+ {
411
+ "query": "Tell me the air date of the second season of Game of Thrones",
412
+ "solution": [
413
+ "GET /search/tv",
414
+ "GET /tv/{tv_id}/season/{season_number}"
415
+ ]
416
+ },
417
+ {
418
+ "query": " give me a poster of the third episode of Band of Brothers",
419
+ "solution": [
420
+ "GET /search/tv",
421
+ "GET /tv/{tv_id}/season/{season_number}/episode/{episode_number}/images"
422
+ ]
423
+ },
424
+ {
425
+ "query": "What is the logo of the network that produced Game of Thrones?",
426
+ "solution": [
427
+ "GET /search/tv",
428
+ "GET /tv/{tv_id}",
429
+ "GET /network/{network_id}/images"
430
+ ]
431
+ },
432
+ {
433
+ "query": "give me the homepage of the network that produced Game of Thrones",
434
+ "solution": [
435
+ "GET /search/tv",
436
+ "GET /tv/{tv_id}",
437
+ "GET /network/{network_id}"
438
+ ]
439
+ },
440
+ {
441
+ "query": "give me a keyword of the most popular TV show currently",
442
+ "solution": [
443
+ "GET /tv/popular",
444
+ "GET /tv/{tv_id}/keywords"
445
+ ]
446
+ },
447
+ {
448
+ "query": "Where is the headquarter of the company that produced currently the most popular TV show?",
449
+ "solution": [
450
+ "GET /tv/popular",
451
+ "GET /tv/{tv_id}",
452
+ "GET /company/{company_id}"
453
+ ]
454
+ },
455
+ {
456
+ "query": "What is the genre of The Mandalorian?",
457
+ "solution": [
458
+ "GET /search/tv",
459
+ "GET /tv/{tv_id}"
460
+ ]
461
+ },
462
+ {
463
+ "query": "When is the birthday of the lead actor of today's most trending TV show?",
464
+ "solution": [
465
+ "GET /trending/{media_type}/{time_window}",
466
+ "GET /tv/{tv_id}/credits",
467
+ "GET /person/{person_id}"
468
+ ]
469
+ },
470
+ {
471
+ "query": "What is the homepage of the network that produced today's most trending TV show?",
472
+ "solution": [
473
+ "GET /trending/{media_type}/{time_window}",
474
+ "GET /tv/{tv_id}",
475
+ "GET /network/{network_id}"
476
+ ]
477
+ },
478
+ {
479
+ "query": "give me a review of today's most trending TV show",
480
+ "solution": [
481
+ "GET /trending/{media_type}/{time_window}",
482
+ "GET /tv/{tv_id}/reviews"
483
+ ]
484
+ },
485
+ {
486
+ "query": "I prefer a TV show that similar to today's most trending TV show",
487
+ "solution": [
488
+ "GET /trending/{media_type}/{time_window}",
489
+ "GET /tv/{tv_id}/similar"
490
+ ]
491
+ },
492
+ {
493
+ "query": "I need a poster of today's most trending TV show",
494
+ "solution": [
495
+ "GET /trending/{media_type}/{time_window}",
496
+ "GET /tv/{tv_id}/images"
497
+ ]
498
+ },
499
+ {
500
+ "query": "Who has worked with Jeremy Clarkson in his most popular TV show?",
501
+ "solution": [
502
+ "GET /search/person",
503
+ "GET /person/{person_id}/tv_credits",
504
+ "GET /tv/{tv_id}/credits"
505
+ ]
506
+ },
507
+ {
508
+ "query": "What does the lead actor of the first episode of second season of Black Mirror look like?",
509
+ "solution": [
510
+ "GET /search/tv",
511
+ "GET /tv/{tv_id}/credits",
512
+ "GET /person/{person_id}/images"
513
+ ]
514
+ },
515
+ {
516
+ "query": "When is the lead actor of The Mandalorian born?",
517
+ "solution": [
518
+ "GET /search/tv",
519
+ "GET /tv/{tv_id}/credits",
520
+ "GET /person/{person_id}"
521
+ ]
522
+ },
523
+ {
524
+ "query": "Who is the lead actor of today's most popular TV show?",
525
+ "solution": [
526
+ "GET /tv/popular",
527
+ "GET /tv/{tv_id}/credits"
528
+ ]
529
+ },
530
+ {
531
+ "query": "give me a photo of the lead actor of the most popular TV show of this week",
532
+ "solution": [
533
+ "GET /tv/popular",
534
+ "GET /tv/{tv_id}/credits",
535
+ "GET /person/{person_id}/images"
536
+ ]
537
+ },
538
+ {
539
+ "query": "give me some reviews of Cate Blanchett's latest TV show",
540
+ "solution": [
541
+ "GET /search/person",
542
+ "GET /person/{person_id}/tv_credits",
543
+ "GET /tv/{tv_id}/reviews"
544
+ ]
545
+ },
546
+ {
547
+ "query": "What is David Schwimmer's most popular TV show?",
548
+ "solution": [
549
+ "GET /search/person",
550
+ "GET /person/{person_id}/tv_credits"
551
+ ]
552
+ },
553
+ {
554
+ "query": "Who directed the third episode of the second season of Black Mirror?",
555
+ "solution": [
556
+ "GET /search/tv",
557
+ "GET /tv/{tv_id}/season/{season_number}/credits"
558
+ ]
559
+ },
560
+ {
561
+ "query": "give me some movies that Christopher Nolan known for",
562
+ "solution": [
563
+ "GET /search/person"
564
+ ]
565
+ },
566
+ {
567
+ "query": "Avatar versus Avatar: The Way of Water, which has a higher rating",
568
+ "solution": [
569
+ "GET /search/movie",
570
+ "GET /search/movie"
571
+ ]
572
+ },
573
+ {
574
+ "query": "Show me some English movies rating no less than 7.0 and no earlier than 2021",
575
+ "solution": [
576
+ "GET /discover/movie"
577
+ ]
578
+ },
579
+ {
580
+ "query": "What is the genre of the movie Lord of the Ring?",
581
+ "solution": [
582
+ "GET /search/movie",
583
+ "GET /movie/{movie_id}"
584
+ ]
585
+ },
586
+ {
587
+ "query": "What is the birthday of the most popular person right now?",
588
+ "solution": [
589
+ "GET /person/popular",
590
+ "GET /person/{person_id}"
591
+ ]
592
+ },
593
+ {
594
+ "query": "give me a poster of the second season of Big Bang Theory",
595
+ "solution": [
596
+ "GET /search/tv",
597
+ "GET /tv/{tv_id}/season/{season_number}/images"
598
+ ]
599
+ },
600
+ {
601
+ "query": "What is the name of the third episod of the second season of Mandalorian?",
602
+ "solution": [
603
+ "GET /search/tv",
604
+ "GET /tv/{tv_id}/season/{season_number}/episode/{episode_number}"
605
+ ]
606
+ },
607
+ {
608
+ "query": "When is the bitrhday of the lead actor of the movie The Shawshank Redemptionn?",
609
+ "solution": [
610
+ "GET /search/movie",
611
+ "GET /movie/{movie_id}/credits",
612
+ "GET /person/{person_id}"
613
+ ]
614
+ },
615
+ {
616
+ "query": "When is the birthday of the director of the movie The Shawshank Redemption?",
617
+ "solution": [
618
+ "GET /search/movie",
619
+ "GET /movie/{movie_id}/credits",
620
+ "GET /person/{person_id}"
621
+ ]
622
+ },
623
+ {
624
+ "query": "Where is the headquarter of the company that created the movie The Shawshank Redemption?",
625
+ "solution": [
626
+ "GET /search/movie",
627
+ "GET /movie/{movie_id}",
628
+ "GET /company/{company_id}"
629
+ ]
630
+ },
631
+ {
632
+ "query": "Where is the headquarter of the company that created the collection Star Wars?",
633
+ "solution": [
634
+ "GET /search/collection",
635
+ "GET /collection/{collection_id}",
636
+ "GET /company/{company_id}"
637
+ ]
638
+ },
639
+ {
640
+ "query": "Who has an earlier release date, The Double Life of Veronique or Mulholland Drive?",
641
+ "solution": [
642
+ "GET /search/movie",
643
+ "GET /movie/{movie_id}"
644
+ ]
645
+ },
646
+ {
647
+ "query": "Is the director of Twin Peaks Season 1 and Mulholland Drive the same person?",
648
+ "solution": [
649
+ "GET /search/tv",
650
+ "GET /search/movie",
651
+ "GET /movie/{movie_id}/credits",
652
+ "GET /tv/{tv_id}/season/{season_number}/credits"
653
+ ]
654
+ },
655
+ {
656
+ "query": "Where was the director of Mulholland Drive born?",
657
+ "solution": [
658
+ "GET /search/movie",
659
+ "GET /movie/{movie_id}/credits",
660
+ "GET /person/{person_id}"
661
+ ]
662
+ },
663
+ {
664
+ "query": "Is Mulholland Drive in the Top-10 rated list of the TMDB?",
665
+ "solution": [
666
+ "GET /search/movie",
667
+ "GET /movie/top_rated"
668
+ ]
669
+ },
670
+ {
671
+ "query": "Who directed more movies, Akira Kurosawa or Spielberg?",
672
+ "solution": [
673
+ "GET /search/person",
674
+ "GET /person/{person_id}/movie_credits"
675
+ ]
676
+ },
677
+ {
678
+ "query": "What TV series has the director of Mulholland Drive directed?",
679
+ "solution": [
680
+ "GET /search/movie",
681
+ "GET /person/{person_id}/tv_credits"
682
+ ]
683
+ },
684
+ {
685
+ "query": "Tell me about actor Scarlett Johansson's birthday",
686
+ "solution": [
687
+ "GET /search/person",
688
+ "GET /person/{person_id}"
689
+ ]
690
+ },
691
+ {
692
+ "query": "How many seasons of Sword Art Online are there?",
693
+ "solution": [
694
+ "GET /search/tv",
695
+ "GET /tv/{tv_id}"
696
+ ]
697
+ },
698
+ {
699
+ "query": "Are Yui Aragaki and Gen Hoshino co-starring in We Married as Job?",
700
+ "solution": [
701
+ "GET /search/movie",
702
+ "GET /movie/{movie_id}/credits"
703
+ ]
704
+ },
705
+ {
706
+ "query": "Who is older, by how many years, the director of film Barbie or the lead actor of television DEATH NOTE?",
707
+ "solution": [
708
+ "GET /search/movie",
709
+ "GET /movie/{movie_id}/credits",
710
+ "GET /search/tv",
711
+ "GET /tv/{tv_id}/credits"
712
+ ]
713
+ },
714
+ {
715
+ "query": "Tell me about Katherine LaNasa's latest movie appearance.",
716
+ "solution": [
717
+ "GET /search/person",
718
+ "GET /person/{movie_id}/movie_credits"
719
+ ]
720
+ },
721
+ {
722
+ "query": "Give me one cover image of the movie Oppenheimer.",
723
+ "solution": [
724
+ "GET /search/movie",
725
+ "GET /movie/{movie_id}/images"
726
+ ]
727
+ }
728
+ ]