-
Notifications
You must be signed in to change notification settings - Fork 0
/
Anime.json
664 lines (664 loc) · 25.5 KB
/
Anime.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
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
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
{
"anime": [
{
"id": 1,
"title": "Naruto",
"description": "Naruto Uzumaki, a young ninja with a sealed demon fox spirit within him, embarks on a journey to become the Hokage, the leader of his village.",
"genre": ["Action", "Adventure", "Fantasy"],
"release_date": "2002-10-03",
"episodes": 220,
"rating": 8.3,
"studio": "Pierrot",
"image_url": "https://example.com/naruto.jpg"
},
{
"id": 2,
"title": "One Piece",
"description": "Monkey D. Luffy and his crew set sail on the Grand Line in search of the ultimate treasure known as One Piece.",
"genre": ["Action", "Adventure", "Comedy"],
"release_date": "1999-10-20",
"episodes": 1000,
"rating": 9.0,
"studio": "Toei Animation",
"image_url": "https://example.com/one-piece.jpg"
},
{
"id": 3,
"title": "Attack on Titan",
"description": "In a world where humanity is on the brink of extinction due to giant humanoid creatures, a group of young soldiers fights for survival.",
"genre": ["Action", "Drama", "Fantasy"],
"release_date": "2013-04-06",
"episodes": 75,
"rating": 9.0,
"studio": "Wit Studio",
"image_url": "https://example.com/attack-on-titan.jpg"
},
{
"id": 4,
"title": "My Hero Academia",
"description": "In a world where people have superpowers, a young boy with no abilities enrolls in a prestigious hero academy to fulfill his dreams.",
"genre": ["Action", "Superpower", "School"],
"release_date": "2016-04-03",
"episodes": 110,
"rating": 8.5,
"studio": "Bones",
"image_url": "https://example.com/my-hero-academia.jpg"
},
{
"id": 5,
"title": "Fullmetal Alchemist: Brotherhood",
"description": "Two brothers use alchemy in their quest to find the Philosopher's Stone and undo the consequences of a failed alchemical experiment.",
"genre": ["Adventure", "Fantasy", "Drama"],
"release_date": "2009-04-05",
"episodes": 64,
"rating": 9.2,
"studio": "Bones",
"image_url": "https://example.com/fullmetal-alchemist.jpg"
},
{
"id": 6,
"title": "Death Note",
"description": "A high school student gains a notebook that allows him to kill anyone whose name he writes in it, leading to a battle of wits with a detective.",
"genre": ["Mystery", "Psychological", "Supernatural"],
"release_date": "2006-10-04",
"episodes": 37,
"rating": 9.0,
"studio": "Madhouse",
"image_url": "https://example.com/death-note.jpg"
},
{
"id": 7,
"title": "Dragon Ball Z",
"description": "Goku and his friends defend Earth against powerful foes and seek powerful Dragon Balls to make their wishes come true.",
"genre": ["Action", "Adventure", "Superpower"],
"release_date": "1989-04-26",
"episodes": 291,
"rating": 8.7,
"studio": "Toei Animation",
"image_url": "https://example.com/dragon-ball-z.jpg"
},
{
"id": 8,
"title": "Sword Art Online",
"description": "Players trapped in a virtual reality MMORPG must clear the game's levels to escape, but death in the game means death in real life.",
"genre": ["Action", "Adventure", "Romance"],
"release_date": "2012-07-07",
"episodes": 96,
"rating": 7.5,
"studio": "A-1 Pictures",
"image_url": "https://example.com/sword-art-online.jpg"
},
{
"id": 9,
"title": "Cowboy Bebop",
"description": "Bounty hunters travel through space in pursuit of criminals while dealing with their own troubled pasts.",
"genre": ["Action", "Space", "Drama"],
"release_date": "1998-04-03",
"episodes": 26,
"rating": 8.9,
"studio": "Sunrise",
"image_url": "https://example.com/cowboy-bebop.jpg"
},
{
"id": 10,
"title": "Hunter x Hunter",
"description": "A young boy becomes a Hunter to find his missing father and explore the dangerous world of hunters and beasts.",
"genre": ["Adventure", "Action", "Superpower"],
"release_date": "2011-10-02",
"episodes": 148,
"rating": 9.1,
"studio": "Madhouse",
"image_url": "https://example.com/hunter-x-hunter.jpg"
},
{
"id": 11,
"title": "Neon Genesis Evangelion",
"description": "Teenagers pilot giant mechs to protect Earth from mysterious beings known as Angels.",
"genre": ["Mecha", "Psychological", "Science Fiction"],
"release_date": "1995-10-04",
"episodes": 26,
"rating": 8.5,
"studio": "Gainax",
"image_url": "https://example.com/evangelion.jpg"
},
{
"id": 12,
"title": "Fairy Tail",
"description": "A young mage joins the Fairy Tail guild and embarks on various adventures with his magical companions.",
"genre": ["Action", "Adventure", "Fantasy"],
"release_date": "2009-10-12",
"episodes": 328,
"rating": 7.6,
"studio": "A-1 Pictures",
"image_url": "https://example.com/fairy-tail.jpg"
},
{
"id": 13,
"title": "Demon Slayer: Kimetsu no Yaiba",
"description": "A young boy becomes a demon slayer to avenge his family and save his sister from a curse.",
"genre": ["Action", "Supernatural", "Historical"],
"release_date": "2019-04-06",
"episodes": 26,
"rating": 8.7,
"studio": "ufotable",
"image_url": "https://example.com/demon-slayer.jpg"
},
{
"id": 14,
"title": "Dragon Ball",
"description": "Follow the adventures of Goku as he grows into a powerful martial artist and defends the Earth.",
"genre": ["Action", "Adventure", "Comedy"],
"release_date": "1986-02-26",
"episodes": 153,
"rating": 8.5,
"studio": "Toei Animation",
"image_url": "https://example.com/dragon-ball.jpg"
},
{
"id": 15,
"title": "Bleach",
"description": "A teenager gains the powers of a Soul Reaper and is tasked with protecting the living world from evil spirits and Hollows.",
"genre": ["Action", "Supernatural", "Adventure"],
"release_date": "2004-10-05",
"episodes": 366,
"rating": 7.7,
"studio": "Pierrot",
"image_url": "https://example.com/bleach.jpg"
},
{
"id": 16,
"title": "One Punch Man",
"description": "Saitama, a hero who can defeat any opponent with a single punch, seeks a worthy challenge.",
"genre": ["Action", "Comedy", "Superpower"],
"release_date": "2015-10-05",
"episodes": 24,
"rating": 8.7,
"studio": "Madhouse",
"image_url": "https://example.com/one-punch-man.jpg"
},
{
"id": 17,
"title": "Steins;Gate",
"description": "A group of friends accidentally invents a time machine and gets involved in a complex web of time-travel conspiracies.",
"genre": ["Sci-Fi", "Thriller", "Mystery"],
"release_date": "2011-04-06",
"episodes": 24,
"rating": 9.1,
"studio": "White Fox",
"image_url": "https://example.com/steins-gate.jpg"
},
{
"id": 18,
"title": "My Neighbor Totoro",
"description": "Two sisters move to the countryside and discover magical creatures in the nearby forest, including Totoro.",
"genre": ["Fantasy", "Adventure", "Slice of Life"],
"release_date": "1988-04-16",
"episodes": 1,
"rating": 8.2,
"studio": "Studio Ghibli",
"image_url": "https://example.com/totoro.jpg"
},
{
"id": 19,
"title": "Death Parade",
"description": "In a mysterious bar, deceased souls are judged through intense psychological games to determine their afterlife fate.",
"genre": ["Psychological", "Drama", "Supernatural"],
"release_date": "2015-01-09",
"episodes": 12,
"rating": 8.3,
"studio": "Madhouse",
"image_url": "https://example.com/death-parade.jpg"
},
{
"id": 20,
"title": "Mob Psycho 100",
"description": "A middle schooler with powerful psychic abilities must balance his supernatural life with everyday challenges.",
"genre": ["Action", "Comedy", "Supernatural"],
"release_date": "2016-07-11",
"episodes": 25,
"rating": 8.5,
"studio": "Bones",
"image_url": "https://example.com/mob-psycho-100.jpg"
},
{
"id": 21,
"title": "Fullmetal Alchemist",
"description": "Two brothers use alchemy to find the Philosopher's Stone to restore their bodies after a failed experiment.",
"genre": ["Adventure", "Fantasy", "Drama"],
"release_date": "2003-10-04",
"episodes": 51,
"rating": 8.7,
"studio": "Bones",
"image_url": "https://example.com/fullmetal-alchemist-original.jpg"
},
{
"id": 22,
"title": "Attack on Titan: Junior High",
"description": "A comedic take on the Attack on Titan universe, set in a junior high school with quirky versions of the main characters.",
"genre": ["Comedy", "Parody", "School"],
"release_date": "2015-10-04",
"episodes": 12,
"rating": 7.3,
"studio": "Production I.G",
"image_url": "https://example.com/attack-on-titan-junior-high.jpg"
},
{
"id": 23,
"title": "Black Clover",
"description": "A young boy born without magic power aims to become the Wizard King by working hard and never giving up.",
"genre": ["Action", "Magic", "Fantasy"],
"release_date": "2017-10-03",
"episodes": 170,
"rating": 7.5,
"studio": "Pierrot",
"image_url": "https://example.com/black-clover.jpg"
},
{
"id": 24,
"title": "One Piece: Strong World",
"description": "The Straw Hat Pirates encounter an old enemy in a floating island full of powerful creatures.",
"genre": ["Action", "Adventure", "Fantasy"],
"release_date": "2009-12-12",
"episodes": 1,
"rating": 8.0,
"studio": "Toei Animation",
"image_url": "https://example.com/one-piece-strong-world.jpg"
},
{
"id": 25,
"title": "Spirited Away",
"description": "A young girl gets trapped in a mysterious and magical world and must find a way to save her parents.",
"genre": ["Fantasy", "Adventure", "Drama"],
"release_date": "2001-07-20",
"episodes": 1,
"rating": 8.6,
"studio": "Studio Ghibli",
"image_url": "https://example.com/spirited-away.jpg"
},
{
"id": 26,
"title": "Tokyo Revengers",
"description": "A young man discovers he can time-travel and tries to change the past to prevent tragic events in his life.",
"genre": ["Action", "Drama", "Supernatural"],
"release_date": "2021-04-11",
"episodes": 24,
"rating": 8.2,
"studio": "LIDENFILMS",
"image_url": "https://example.com/tokyo-revengers.jpg"
},
{
"id": 27,
"title": "Demon Slayer: Mugen Train",
"description": "Tanjiro and his friends board a demon-infested train to investigate mysterious disappearances.",
"genre": ["Action", "Supernatural", "Adventure"],
"release_date": "2020-10-16",
"episodes": 1,
"rating": 8.4,
"studio": "ufotable",
"image_url": "https://example.com/demon-slayer-mugen-train.jpg"
},
{
"id": 28,
"title": "Attack on Titan: The Final Season",
"description": "The epic battle between humanity and Titans reaches its climax in the final season.",
"genre": ["Action", "Drama", "Fantasy"],
"release_date": "2020-12-07",
"episodes": 16,
"rating": 8.9,
"studio": "MAPPA",
"image_url": "https://example.com/attack-on-titan-final-season.jpg"
},
{
"id": 29,
"title": "Death Note: Relight",
"description": "A recap of the original Death Note series with additional scenes and perspectives.",
"genre": ["Mystery", "Psychological", "Supernatural"],
"release_date": "2007-08-31",
"episodes": 2,
"rating": 8.0,
"studio": "Madhouse",
"image_url": "https://example.com/death-note-relight.jpg"
},
{
"id": 30,
"title": "Cowboy Bebop: The Movie",
"description": "The bounty hunting crew of the Bebop investigates a terrorist threat on Mars.",
"genre": ["Action", "Space", "Drama"],
"release_date": "2001-09-01",
"episodes": 1,
"rating": 8.0,
"studio": "Sunrise",
"image_url": "https://example.com/cowboy-bebop-movie.jpg"
},
{
"id": 31,
"title": "Death Note: Near and Mello",
"description": "A spin-off story focusing on the successors of L as they face a new Kira threat.",
"genre": ["Mystery", "Psychological", "Supernatural"],
"release_date": "2008-08-27",
"episodes": 2,
"rating": 7.8,
"studio": "Madhouse",
"image_url": "https://example.com/death-note-near-mello.jpg"
},
{
"id": 32,
"title": "My Hero Academia: Heroes Rising",
"description": "Class 1-A faces a powerful villain on a remote island during their hero work-studies.",
"genre": ["Action", "Superpower", "School"],
"release_date": "2019-12-20",
"episodes": 1,
"rating": 8.3,
"studio": "Bones",
"image_url": "https://example.com/my-hero-academia-heroes-rising.jpg"
},
{
"id": 33,
"title": "Attack on Titan: No Regrets",
"description": "The backstory of Levi Ackerman and his journey to join the Survey Corps.",
"genre": ["Action", "Drama", "Fantasy"],
"release_date": "2014-12-09",
"episodes": 2,
"rating": 8.4,
"studio": "Wit Studio",
"image_url": "https://example.com/attack-on-titan-no-regrets.jpg"
},
{
"id": 34,
"title": "Hunter x Hunter: Phantom Rouge",
"description": "Gon and his friends seek the Phantom Troupe to retrieve Kurapika's stolen eyes.",
"genre": ["Action", "Adventure", "Superpower"],
"release_date": "2013-01-12",
"episodes": 1,
"rating": 7.8,
"studio": "Madhouse",
"image_url": "https://example.com/hunter-x-hunter-phantom-rouge.jpg"
},
{
"id": 35,
"title": "Neon Genesis Evangelion: The End of Evangelion",
"description": "The climactic conclusion of the Neon Genesis Evangelion series.",
"genre": ["Mecha", "Psychological", "Science Fiction"],
"release_date": "1997-07-19",
"episodes": 1,
"rating": 8.8,
"studio": "Gainax",
"image_url": "https://example.com/evangelion-the-end-of-evangelion.jpg"
},
{
"id": 36,
"title": "Fairy Tail: Dragon Cry",
"description": "The Fairy Tail guild embarks on a mission to recover a stolen magical artifact.",
"genre": ["Action", "Adventure", "Fantasy"],
"release_date": "2017-05-06",
"episodes": 1,
"rating": 7.2,
"studio": "A-1 Pictures",
"image_url": "https://example.com/fairy-tail-dragon-cry.jpg"
},
{
"id": 37,
"title": "Demon Slayer: Kimetsu no Yaiba - Entertainment District Arc",
"description": "Tanjiro and his friends investigate a series of disappearances in the Entertainment District.",
"genre": ["Action", "Supernatural", "Historical"],
"release_date": "2021-12-05",
"episodes": 26,
"rating": 8.9,
"studio": "ufotable",
"image_url": "https://example.com/demon-slayer-entertainment-district-arc.jpg"
},
{
"id": 38,
"title": "Dragon Ball Super",
"description": "Goku faces new powerful foes in his quest for even greater strength.",
"genre": ["Action", "Adventure", "Comedy"],
"release_date": "2015-07-05",
"episodes": 131,
"rating": 7.7,
"studio": "Toei Animation",
"image_url": "https://example.com/dragon-ball-super.jpg"
},
{
"id": 39,
"title": "One Punch Man: Road to Hero",
"description": "A prequel story about Saitama's early days as a hero for fun.",
"genre": ["Action", "Comedy", "Superpower"],
"release_date": "2015-12-04",
"episodes": 1,
"rating": 7.7,
"studio": "Madhouse",
"image_url": "https://example.com/one-punch-man-road-to-hero.jpg"
},
{
"id": 40,
"title": "Cowboy Bebop: Knockin' on Heaven's Door",
"description": "The Bebop crew investigates a terrorist plot on Mars involving a deadly virus.",
"genre": ["Action", "Space", "Drama"],
"release_date": "2001-09-01",
"episodes": 1,
"rating": 8.0,
"studio": "Sunrise",
"image_url": "https://example.com/cowboy-bebop-knockin-on-heavens-door.jpg"
},
{
"id": 41,
"title": "My Hero Academia: World Heroes' Mission",
"description": "The heroes of Class 1-A must stop a global terrorist organization threatening to release a dangerous gas.",
"genre": ["Action", "Superpower", "School"],
"release_date": "2021-08-06",
"episodes": 1,
"rating": 8.4,
"studio": "Bones",
"image_url": "https://example.com/my-hero-academia-world-heroes-mission.jpg"
},
{
"id": 42,
"title": "Attack on Titan: Lost Girls",
"description": "An OVA series that explores the stories of two girls from the Attack on Titan universe.",
"genre": ["Action", "Drama", "Fantasy"],
"release_date": "2017-12-09",
"episodes": 3,
"rating": 7.7,
"studio": "Wit Studio",
"image_url": "https://example.com/attack-on-titan-lost-girls.jpg"
},
{
"id": 43,
"title": "Hunter x Hunter: Greed Island",
"description": "Gon and Killua enter the virtual world of Greed Island in search of Gon's father.",
"genre": ["Action", "Adventure", "Superpower"],
"release_date": "2003-02-19",
"episodes": 8,
"rating": 8.0,
"studio": "Nippon Animation",
"image_url": "https://example.com/hunter-x-hunter-greed-island.jpg"
},
{
"id": 44,
"title": "Neon Genesis Evangelion: Rebuild of Evangelion",
"description": "A series of movies that retell and expand upon the Neon Genesis Evangelion story.",
"genre": ["Mecha", "Psychological", "Science Fiction"],
"release_date": "2007-09-01",
"episodes": 4,
"rating": 8.5,
"studio": "Khara",
"image_url": "https://example.com/evangelion-rebuild.jpg"
},
{
"id": 45,
"title": "Fairy Tail: Grand Magic Games",
"description": "The Fairy Tail guild competes in the Grand Magic Games, facing rival guilds and powerful foes.",
"genre": ["Action", "Adventure", "Fantasy"],
"release_date": "2013-08-18",
"episodes": 20,
"rating": 7.5,
"studio": "A-1 Pictures",
"image_url": "https://example.com/fairy-tail-grand-magic-games.jpg"
},
{
"id": 46,
"title": "Demon Slayer: Kimetsu no Yaiba - Swordsmith Village Arc",
"description": "Tanjiro and his friends visit a swordsmith village to repair their weapons and face new challenges.",
"genre": ["Action", "Supernatural", "Historical"],
"release_date": "2021-12-05",
"episodes": 7,
"rating": 8.9,
"studio": "ufotable",
"image_url": "https://example.com/demon-slayer-swordsmith-village-arc.jpg"
},
{
"id": 47,
"title": "Dragon Ball Z: Resurrection 'F'",
"description": "Goku and Vegeta must face the revived Frieza and his army of loyal followers.",
"genre": ["Action", "Adventure", "Comedy"],
"release_date": "2015-04-18",
"episodes": 1,
"rating": 7.3,
"studio": "Toei Animation",
"image_url": "https://example.com/dragon-ball-z-resurrection-f.jpg"
},
{
"id": 48,
"title": "One Punch Man: Season 2",
"description": "Saitama continues his quest for a worthy opponent while facing new threats.",
"genre": ["Action", "Comedy", "Superpower"],
"release_date": "2019-04-09",
"episodes": 12,
"rating": 7.9,
"studio": "J.C. Staff",
"image_url": "https://example.com/one-punch-man-season-2.jpg"
},
{
"id": 49,
"title": "Cowboy Bebop: Ein's Summer Vacation",
"description": "A short special episode featuring the quirky corgi, Ein, going on summer adventures.",
"genre": ["Action", "Comedy", "Space"],
"release_date": "2001-10-02",
"episodes": 1,
"rating": 7.6,
"studio": "Sunrise",
"image_url": "https://example.com/cowboy-bebop-eins-summer-vacation.jpg"
},
{
"id": 50,
"title": "Spirited Away: The Return to the Spirit World",
"description": "Chihiro returns to the spirit world to face new challenges and reunite with her friends.",
"genre": ["Fantasy", "Adventure", "Drama"],
"release_date": "2022-07-15",
"episodes": 1,
"rating": 8.7,
"studio": "Studio Ghibli",
"image_url": "https://example.com/spirited-away-return-to-spirit-world.jpg"
},
{
"id": 51,
"title": "One Piece: Stampede",
"description": "The Straw Hat Pirates participate in the Pirate Expo, where pirates from around the world gather.",
"genre": ["Action", "Adventure", "Comedy"],
"release_date": "2019-08-09",
"episodes": 1,
"rating": 8.2,
"studio": "Toei Animation",
"image_url": "https://example.com/one-piece-stampede.jpg"
},
{
"id": 52,
"title": "Naruto: Shippuden",
"description": "Naruto Uzumaki continues his ninja journey and faces new challenges to save his friends and the world.",
"genre": ["Action", "Adventure", "Fantasy"],
"release_date": "2007-02-15",
"episodes": 500,
"rating": 8.6,
"studio": "Pierrot",
"image_url": "https://example.com/naruto-shippuden.jpg"
},
{
"id": 53,
"title": "Attack on Titan: The Final Season Part 2",
"description": "The epic battle against the Titans reaches its conclusion as humanity fights for survival.",
"genre": ["Action", "Drama", "Fantasy"],
"release_date": "2023-01-09",
"episodes": 12,
"rating": 9.2,
"studio": "MAPPA",
"image_url": "https://example.com/attack-on-titan-final-season-part-2.jpg"
},
{
"id": 54,
"title": "Hunter x Hunter: Chimera Ant Arc",
"description": "Gon and Killua face the deadly Chimera Ants in a battle for survival and humanity's future.",
"genre": ["Action", "Adventure", "Superpower"],
"release_date": "2014-04-06",
"episodes": 61,
"rating": 9.0,
"studio": "Madhouse",
"image_url": "https://example.com/hunter-x-hunter-chimera-ant-arc.jpg"
},
{
"id": 55,
"title": "Neon Genesis Evangelion: Evangelion: 3.0+1.0 Thrice Upon a Time",
"description": "The final installment of the Rebuild of Evangelion series concludes the epic story of Eva.",
"genre": ["Mecha", "Psychological", "Science Fiction"],
"release_date": "2021-03-08",
"episodes": 1,
"rating": 9.1,
"studio": "Khara",
"image_url": "https://example.com/evangelion-thrice-upon-a-time.jpg"
},
{
"id": 56,
"title": "Fairy Tail: Tartaros Arc",
"description": "The Fairy Tail guild faces the dark Tartaros guild in a battle to save the world from destruction.",
"genre": ["Action", "Adventure", "Fantasy"],
"release_date": "2014-07-05",
"episodes": 16,
"rating": 8.2,
"studio": "A-1 Pictures",
"image_url": "https://example.com/fairy-tail-tartaros-arc.jpg"
},
{
"id": 57,
"title": "Demon Slayer: Kimetsu no Yaiba - Mugen Train Arc (TV Version)",
"description": "The Mugen Train Arc retells the events of the Demon Slayer movie in a TV series format.",
"genre": ["Action", "Supernatural", "Historical"],
"release_date": "2021-10-10",
"episodes": 7,
"rating": 8.7,
"studio": "ufotable",
"image_url": "https://example.com/demon-slayer-mugen-train-arc-tv-version.jpg"
},
{
"id": 58,
"title": "Dragon Ball Super: Broly",
"description": "Goku and Vegeta encounter the powerful Saiyan warrior, Broly, in an epic battle.",
"genre": ["Action", "Adventure", "Comedy"],
"release_date": "2018-12-14",
"episodes": 1,
"rating": 8.1,
"studio": "Toei Animation",
"image_url": "https://example.com/dragon-ball-super-broly.jpg"
},
{
"id": 59,
"title": "One Punch Man: Road to Hero 2.0",
"description": "Saitama's journey continues as he seeks new challenges and confronts new threats.",
"genre": ["Action", "Comedy", "Superpower"],
"release_date": "2020-04-09",
"episodes": 1,
"rating": 7.6,
"studio": "J.C. Staff",
"image_url": "https://example.com/one-punch-man-road-to-hero-2.0.jpg"
},
{
"id": 60,
"title": "Cowboy Bebop: The Movie - Knockin' on Heaven's Door (Special Edition)",
"description": "A special edition of the Cowboy Bebop movie featuring additional scenes and content.",
"genre": ["Action", "Space", "Drama"],
"release_date": "2002-09-21",
"episodes": 1,
"rating": 8.3,
"studio": "Sunrise",
"image_url": "https://example.com/cowboy-bebop-movie-special-edition.jpg"
}
]
}