This repository has been archived by the owner on Aug 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathdatabase.json
7115 lines (7115 loc) · 189 KB
/
database.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
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"anime": [
{
"id": "11757",
"malId": "11757",
"slug": "sword-art-online",
"kitsuId": "7372",
"coverImage": "https://media.kitsu.io/anime/poster_images/7372/original.jpg",
"bannerImage": "https://s4.anilist.co/file/anilistcdn/media/anime/banner/11757-TlEEV9weG4Ag.jpg",
"trailer": "https://www.youtube.com/watch?v=6ohYYtxfDCg",
"status": "FINISHED",
"season": "SUMMER",
"title": {
"native": "そーどあーと・おふらいん",
"romaji": "Sword Art Online: Sword Art Offline",
"english": "Sword Art Online"
},
"currentEpisode": 25,
"mappings": [
{
"id": "/watch/sword-art-online.5y9",
"providerId": "9anime",
"similarity": {
"same": true,
"value": 1
}
},
{
"id": "/category/sword-art-online",
"providerId": "gogoanime",
"similarity": {
"same": true,
"value": 1
}
},
{
"id": "/category/sword-art-online-dub",
"providerId": "gogoanime",
"similarity": {
"same": true,
"value": 1
}
},
{
"id": "/sword-art-online-2274?ref=search",
"providerId": "zoro",
"similarity": {
"same": true,
"value": 1
}
},
{
"id": "157",
"providerId": "animepahe",
"similarity": {
"same": true,
"value": 1
}
},
{
"id": "6589",
"providerId": "kitsu",
"similarity": {
"same": true,
"value": 1
}
},
{
"id": "7372",
"providerId": "kitsu",
"similarity": {
"same": true,
"value": 0.6190476190476191
}
}
],
"synonyms": [
"S.A.O",
"SAO",
"אומנות החרב אונליין",
"刀剑神域",
"ซอร์ดอาร์ตออนไลน์",
"Мастера меча онлайн"
],
"countryOfOrigin": "JP",
"description": "In the near future, a Virtual Reality Massive Multiplayer Online Role-Playing Game (VRMMORPG) called Sword Art Online has been released where players control their avatars with their bodies using a piece of technology called Nerve Gear. One day, players discover they cannot log out, as the game creator is holding them captive unless they reach the 100th floor of the game's tower and defeat the final boss. However, if they die in the game, they die in real life. Their struggle for survival starts now...<br><br>\n(Source: Crunchyroll)",
"duration": 23,
"color": null,
"year": 2012,
"rating": {
"mal": 7.2,
"kitsu": 5.88,
"anilist": 6.8
},
"popularity": {
"mal": 5,
"kitsu": null,
"anilist": 483175
},
"type": "ANIME",
"format": "TV",
"relations": [],
"totalEpisodes": 25,
"genres": [
"Action",
"Adventure",
"Fantasy",
"Romance",
"Comedy"
],
"tags": [
"Virtual World",
"Death Game",
"Video Games",
"Male Protagonist",
"Swordplay",
"Primarily Teen Cast",
"Fairy",
"Female Harem",
"Artificial Intelligence",
"Isekai",
"Tragedy",
"Travel",
"Fishing",
"Amnesia",
"Female Protagonist",
"Inseki",
"Found Family",
"Prison"
],
"averageRating": 6.63,
"averagePopularity": 241590
},
{
"id": "21",
"malId": "21",
"slug": "one-piece",
"kitsuId": "12",
"coverImage": "https://media.kitsu.io/anime/poster_images/12/original.png",
"bannerImage": "https://s4.anilist.co/file/anilistcdn/media/anime/banner/21-wf37VakJmZqs.jpg",
"trailer": "https://www.youtube.com/watch?v=l_98K4_6UQ0",
"status": "RELEASING",
"season": "FALL",
"title": {
"native": "ONE PIECE",
"romaji": "One Piece",
"english": "One Piece"
},
"currentEpisode": null,
"mappings": [
{
"id": "/watch/one-piece.ov8",
"providerId": "9anime",
"similarity": {
"same": true,
"value": 1
}
},
{
"id": "/category/one-piece",
"providerId": "gogoanime",
"similarity": {
"same": true,
"value": 1
}
},
{
"id": "/category/one-piece-dub",
"providerId": "gogoanime",
"similarity": {
"same": true,
"value": 1
}
},
{
"id": "/one-piece-100?ref=search",
"providerId": "zoro",
"similarity": {
"same": true,
"value": 1
}
},
{
"id": "4",
"providerId": "animepahe",
"similarity": {
"same": true,
"value": 1
}
},
{
"id": "12",
"providerId": "kitsu",
"similarity": {
"same": true,
"value": 1
}
}
],
"synonyms": [
"ワンピース",
"海贼王",
"וואן פיס",
"ون بيس",
"วันพีซ",
"Vua Hải Tặc",
"All'arrembaggio!",
"Tutti all'arrembaggio!",
"Ντρέηκ, το Κυνήγι του Θησαυρού",
"OP"
],
"countryOfOrigin": "JP",
"description": "Gold Roger was known as the Pirate King, the strongest and most infamous being to have sailed the Grand Line. The capture and death of Roger by the World Government brought a change throughout the world. His last words before his death revealed the location of the greatest treasure in the world, One Piece. It was this revelation that brought about the Grand Age of Pirates, men who dreamed of finding One Piece (which promises an unlimited amount of riches and fame), and quite possibly the most coveted of titles for the person who found it, the title of the Pirate King.<br><br>\nEnter Monkey D. Luffy, a 17-year-old boy that defies your standard definition of a pirate. Rather than the popular persona of a wicked, hardened, toothless pirate who ransacks villages for fun, Luffy’s reason for being a pirate is one of pure wonder; the thought of an exciting adventure and meeting new and intriguing people, along with finding One Piece, are his reasons of becoming a pirate. Following in the footsteps of his childhood hero, Luffy and his crew travel across the Grand Line, experiencing crazy adventures, unveiling dark mysteries and battling strong enemies, all in order to reach One Piece.<br><br>\n<b>*This includes following special episodes:</b><br>\n- Chopperman to the Rescue! Protect the TV Station by the Shore! (Episode 336)<br>\n- The Strongest Tag-Team! Luffy and Toriko's Hard Struggle! (Episode 492)<br>\n- Team Formation! Save Chopper (Episode 542)<br>\n- History's Strongest Collaboration vs. Glutton of the Sea (Episode 590)<br>\n- 20th Anniversary! Special Romance Dawn (Episode 907)",
"duration": 24,
"color": null,
"year": 1999,
"rating": {
"mal": 8.69,
"kitsu": 8.33,
"anilist": 8.7
},
"popularity": {
"mal": 20,
"kitsu": null,
"anilist": 422629
},
"type": "ANIME",
"format": "TV",
"relations": [],
"totalEpisodes": 0,
"genres": [
"Action",
"Adventure",
"Comedy",
"Drama",
"Fantasy",
"Super Power",
"Friendship"
],
"tags": [
"Pirates",
"Ensemble Cast",
"Shounen",
"Travel",
"Super Power",
"Found Family",
"Tragedy",
"Male Protagonist",
"Ships",
"Time Skip",
"Conspiracy",
"Slavery",
"Slapstick",
"Politics",
"War",
"Dystopian",
"Desert",
"Fairy",
"Marriage ",
"Prison",
"Fugitive",
"Gods",
"Crime",
"Swordplay",
"Lost Civilization",
"Dragons",
"Medicine",
"Henshin",
"Robots",
"Anti-Hero",
"Gender Bending",
"Primarily Adult Cast",
"Cyborg",
"Skeleton",
"Shapeshifting",
"Food",
"Animals",
"Anachronism",
"Asexual",
"Guns",
"Samurai",
"Coming of Age",
"Espionage",
"Kuudere",
"Ninja",
"Monster Girl",
"Monster Boy",
"Assassins",
"LGBTQ+ Themes",
"Dinosaurs",
"Transgender",
"Adoption",
"Time Manipulation",
"Mermaid",
"Drugs",
"Clone",
"Body Swapping",
"Musical"
],
"averageRating": 8.57,
"averagePopularity": 211324.5
},
{
"id": "154965",
"malId": "53126",
"slug": "my-love-story-with-yamada-kun-at-lv999",
"kitsuId": "46529",
"coverImage": "https://media.kitsu.io/anime/46529/poster_image/9294b7119084c05661088058197ec78c.jpg",
"bannerImage": "https://s4.anilist.co/file/anilistcdn/media/anime/banner/154965-9AwJG3nVokqG.jpg",
"trailer": "https://www.youtube.com/watch?v=LpZI3j6Axlo",
"status": "RELEASING",
"season": "SPRING",
"title": {
"native": "山田くんとLv999の恋をする",
"romaji": "Yamada-kun to Lv999 no Koi wo Suru",
"english": "Loving Yamada at LV999!"
},
"currentEpisode": null,
"mappings": [
{
"id": "/watch/yamada-kun-to-lv999-no-koi-wo-suru.w15r6",
"providerId": "9anime",
"similarity": {
"same": true,
"value": 1
}
},
{
"id": "/category/yamada-kun-to-lv999-no-koi-wo-suru",
"providerId": "gogoanime",
"similarity": {
"same": true,
"value": 1
}
},
{
"id": "/loving-yamada-at-lv999-18341?ref=search",
"providerId": "zoro",
"similarity": {
"same": true,
"value": 0.972972972972973
}
},
{
"id": "5195",
"providerId": "animepahe",
"similarity": {
"same": true,
"value": 1
}
},
{
"id": "46529",
"providerId": "kitsu",
"similarity": {
"same": true,
"value": 1
}
},
{
"id": "46529",
"providerId": "kitsu",
"similarity": {
"same": true,
"value": 1
}
}
],
"synonyms": [
"Loving Yamada at LV999!",
"My Lv999 Love for Yamada-kun",
"Minha História de Amor com Yamada-kun Nível 999",
"รักสุดฟินเลเวล 999 กับยามาดะคุง ",
"和山田进行LV.999的恋爱",
"Loving Yamada at Lv999"
],
"countryOfOrigin": "JP",
"description": "Recently dumped, Akane is just about to quit the game she used to play with her boyfriend, when she meets Yamada in the same RPG. Yamada in real life turns out to be somewhat of a legend. The only problem is - he is ONLY interested in the game. As Akane's feelings grow, will Yamada's focus stay on the game?<br>\n<br>\n(Source: Mangamo)",
"duration": 24,
"color": null,
"year": 2023,
"rating": {
"mal": 7.63,
"kitsu": 7.83,
"anilist": 7.5
},
"popularity": {
"mal": 1166,
"kitsu": null,
"anilist": 54929
},
"type": "ANIME",
"format": "TV",
"relations": [],
"totalEpisodes": 13,
"genres": [
"Comedy",
"Drama",
"Romance"
],
"tags": [
"Video Games",
"Female Protagonist",
"Heterosexual",
"Kuudere",
"Shoujo",
"Otaku Culture",
"Primarily Adult Cast",
"Love Triangle",
"College",
"CGI"
],
"averageRating": 7.65,
"averagePopularity": 28047.5
},
{
"id": "155783",
"malId": "53393",
"slug": "tengoku-daimakyo",
"kitsuId": "13979",
"coverImage": "https://media.kitsu.io/anime/poster_images/13979/original.jpg",
"bannerImage": "",
"trailer": "https://www.youtube.com/watch?v=62_aXZGkG3E",
"status": "RELEASING",
"season": "SPRING",
"title": {
"native": "天国",
"romaji": "Tengoku",
"english": "Heaven"
},
"currentEpisode": null,
"mappings": [
{
"id": "/watch/tengoku-daimakyou.m2jqx",
"providerId": "9anime",
"similarity": {
"same": true,
"value": 1
}
},
{
"id": "/category/tengoku-daimakyou",
"providerId": "gogoanime",
"similarity": {
"same": true,
"value": 1
}
},
{
"id": "/category/tengoku-daimakyou-dub",
"providerId": "gogoanime",
"similarity": {
"same": true,
"value": 1
}
},
{
"id": "/heavenly-delusion-18349?ref=search",
"providerId": "zoro",
"similarity": {
"same": true,
"value": 1
}
},
{
"id": "5207",
"providerId": "animepahe",
"similarity": {
"same": true,
"value": 1
}
},
{
"id": "46641",
"providerId": "kitsu",
"similarity": {
"same": true,
"value": 1
}
},
{
"id": "13979",
"providerId": "kitsu",
"similarity": {
"same": false,
"value": 0.6
}
},
{
"id": "46641",
"providerId": "kitsu",
"similarity": {
"same": true,
"value": 1
}
},
{
"id": "13979",
"providerId": "kitsu",
"similarity": {
"same": false,
"value": 0.6
}
},
{
"id": "46641",
"providerId": "kitsu",
"similarity": {
"same": true,
"value": 1
}
},
{
"id": "13979",
"providerId": "kitsu",
"similarity": {
"same": false,
"value": 0.6
}
}
],
"synonyms": [
"Tengoku-Daimakyo: Ilusão Celestial",
"Heavenly Delusion",
"ถ้ำปีศาจแดนสวรรค์"
],
"countryOfOrigin": "JP",
"description": "In the year 2024, the world has collapsed. Grotesque monsters lurk amongst the ruins of Japan, while remaining people scrape together what they can to survive. Kiruko, an odd-job girl in Nakano, accepts a mysterious woman's dying wish to take a boy named Maru to a place called Heaven.<br>\n<br>\n(Source: Disney+, edited)",
"duration": 24,
"color": null,
"year": 2023,
"rating": {
"mal": 8.08,
"kitsu": null,
"anilist": 7.9
},
"popularity": {
"mal": 1176,
"kitsu": null,
"anilist": 56364
},
"type": "ANIME",
"format": "TV",
"relations": [],
"totalEpisodes": 13,
"genres": [
"Adventure",
"Mystery",
"Sci-Fi",
"Thriller"
],
"tags": [
"Dystopian",
"Post-Apocalyptic",
"Survival",
"Seinen",
"Conspiracy",
"Body Swapping",
"Tragedy",
"Female Protagonist",
"Male Protagonist",
"Demons",
"LGBTQ+ Themes",
"Travel",
"Achronological Order",
"Orphan",
"Denpa",
"Gender Bending",
"Coming of Age",
"Gore",
"CGI",
"Nudity",
"Body Horror"
],
"averageRating": 7.99,
"averagePopularity": 28770
},
{
"id": "153332",
"malId": "52608",
"slug": "the-aristocrat-s-otherworldly-adventure--serving-gods-who-go-too-far",
"kitsuId": "46307",
"coverImage": "https://media.kitsu.io/anime/46307/poster_image/ebead900c6cce892d96b4f9cbc0d9fce.png",
"bannerImage": "https://media.kitsu.io/anime/46307/cover_image/a23651c93d0250c457738768da6c9da5.png",
"trailer": "https://www.youtube.com/watch?v=BSdONbzXf9k",
"status": "RELEASING",
"season": "SPRING",
"title": {
"native": "転生貴族の異世界冒険録 〜自重を知らない神々の使徒〜",
"romaji": "Tensei Kizoku no Isekai Boukenroku: Jichou wo Shiranai Kamigami no Shito",
"english": "The Aristocrat’s Otherworldly Adventure: Servings Gods Who Go Too Far"
},
"currentEpisode": null,
"mappings": [
{
"id": "/watch/tensei-kizoku-no-isekai-boukenroku-jichou-wo-shiranai-kamigami-no-shito2.qxz23",
"providerId": "9anime",
"similarity": {
"same": true,
"value": 1
}
},
{
"id": "/category/tensei-kizoku-no-isekai-boukenroku-jichou-wo-shiranai-kamigami-no-shito",
"providerId": "gogoanime",
"similarity": {
"same": true,
"value": 1
}
},
{
"id": "/category/tensei-kizoku-no-isekai-boukenroku-jichou-wo-shiranai-kamigami-no-shito-dub",
"providerId": "gogoanime",
"similarity": {
"same": true,
"value": 1
}
},
{
"id": "/the-aristocrats-otherworldly-adventure-serving-gods-who-go-too-far-18355?ref=search",
"providerId": "zoro",
"similarity": {
"same": true,
"value": 0.9655172413793104
}
},
{
"id": "5210",
"providerId": "animepahe",
"similarity": {
"same": true,
"value": 1
}
},
{
"id": "46307",
"providerId": "kitsu",
"similarity": {
"same": true,
"value": 1
}
},
{
"id": "46307",
"providerId": "kitsu",
"similarity": {
"same": true,
"value": 1
}
},
{
"id": "46307",
"providerId": "kitsu",
"similarity": {
"same": true,
"value": 1
}
},
{
"id": "46307",
"providerId": "kitsu",
"similarity": {
"same": true,
"value": 1
}
}
],
"synonyms": [
"Chronicles of an Aristocrat Reborn in Another World",
"เกิดใหม่เป็นขุนนางไปผจญภัยในต่างโลก: อัครทูตจอมซุ่มซ่ามของทวยเทพ",
"Crônicas de um Aristocrata em Outro Mundo",
"Noble New World Adventures",
"Die Parallelwelt-Chroniken des Aristokraten",
"Chronicles of an Aristocrat Reborn in Another World: The Apostle of the Gods Who Know No Self-Restraint"
],
"countryOfOrigin": "JP",
"description": "Shiina Kazuya is killed protecting a young girl at a convenience store where he just happened to be at the wrong time. The next thing he knows, he's in the kind of world he has only dreamed about--a world of magic and swords! He has been reincarnated as Cain von Silford, the third son of an aristocratic family, and he quickly grows interested in many things he sees. Then, on his fifth birthday, he's baptized at a church according to tradition... and the gods grant him several divine blessings, along with stats that could only be described as unusual and extraordinary! In his reincarnated life, when it comes to things like battles, romance, and studying, apparently a little overkill is just right?! When he puts in the usual effort to do things punctually and properly, it only gets him in trouble... Thus Cain's chaotic life in another world begins!<br>\n<br>\n(Source: Crunchyroll)",
"duration": 24,
"color": null,
"year": 2023,
"rating": {
"mal": 6.56,
"kitsu": 7.04,
"anilist": 6.4
},
"popularity": {
"mal": 2470,
"kitsu": null,
"anilist": 19309
},
"type": "ANIME",
"format": "TV",
"relations": [],
"totalEpisodes": 12,
"genres": [
"Action",
"Fantasy",
"Romance"
],
"tags": [
"Reincarnation",
"Female Harem",
"Male Protagonist",
"Isekai",
"Gods",
"Magic",
"Kemonomimi",
"Elf",
"Swordplay",
"Age Gap",
"Time Skip",
"Chuunibyou"
],
"averageRating": 6.67,
"averagePopularity": 10889.5
},
{
"id": "150672",
"malId": "52034",
"slug": "oshi-no-ko",
"kitsuId": "46170",
"coverImage": "https://media.kitsu.io/anime/46170/poster_image/69740efb4ce6d03bf1e8cee121ff77f8.jpg",
"bannerImage": "https://s4.anilist.co/file/anilistcdn/media/anime/banner/150672-ISwoA0eS722H.jpg",
"trailer": "https://www.youtube.com/watch?v=1yXa8MAmocQ",
"status": "RELEASING",
"season": "SPRING",
"title": {
"native": "【推しの子】",
"romaji": "[Oshi no Ko]",
"english": "Oshi no Ko"
},
"currentEpisode": null,
"mappings": [
{
"id": "/watch/oshi-no-ko2.4q1jm",
"providerId": "9anime",
"similarity": {
"same": true,
"value": 1
}
},
{
"id": "/category/hoshi-no-koe-dub",
"providerId": "gogoanime",
"similarity": {
"same": true,
"value": 0.7777777777777778
}
},
{
"id": "5189",
"providerId": "animepahe",
"similarity": {
"same": true,
"value": 0.875
}
},
{
"id": "46170",
"providerId": "kitsu",
"similarity": {
"same": true,
"value": 1
}
},
{
"id": "46170",
"providerId": "kitsu",
"similarity": {
"same": true,
"value": 1
}
},
{
"id": "46170",
"providerId": "kitsu",
"similarity": {
"same": true,
"value": 1
}
},
{
"id": "46170",
"providerId": "kitsu",
"similarity": {
"same": true,
"value": 1
}
},
{
"id": "46170",
"providerId": "kitsu",
"similarity": {
"same": true,
"value": 1
}
}
],
"synonyms": [
"Favorite Girl",
"My Idol's Child",
"[Mein*Star]",
"เกิดใหม่เป็นลูกโอชิ",
"Anak Idola",
"【OSHI NO KO】",
"【推しの子】Mother and Children",
"[Oshi no Ko] Mother and Children",
"【MOJA GWIAZDA】",
"我推的孩子",
"【최애의 아이】",
"My Star"
],
"countryOfOrigin": "JP",
"description": "When a pregnant young starlet appears in Gorou Amemiya’s countryside medical clinic, the doctor takes it upon himself to safely (and secretly) deliver Ai Hoshino’s child so she can make a scandal-free return to the stage. But no good deed goes unpunished, and on the eve of her delivery, he finds himself slain at the hands of Ai’s deluded stalker — and subsequently reborn as Ai’s child, Aquamarine Hoshino! The glitz and glamor of showbiz hide the dark underbelly of the entertainment industry, threatening to dull the shine of his favorite star. Can he help his new mother rise to the top of the charts? And what will he do when unthinkable disaster strikes? <br>\n<br>\n(Source: HIDIVE)\n<br><br>\n\n<i>Note: Episode 1<b>【推しの子】Mother and Children</b> was pre-screened in advance in Japanese theaters on March 17, 2023. The regular TV broadcast began on April 12, 2023. The first episode has an extended runtime of ~82 minutes.</i>",
"duration": 24,
"color": null,
"year": 2023,
"rating": {
"mal": 9.09,
"kitsu": 8.53,
"anilist": 8.9
},
"popularity": {
"mal": 541,
"kitsu": null,
"anilist": 96457
},
"type": "ANIME",
"format": "TV",
"relations": [],
"totalEpisodes": 11,
"genres": [
"Drama",
"Mystery",
"Psychological",
"Supernatural"
],
"tags": [
"Acting",
"Tragedy",
"Seinen",
"Idol",
"Revenge",
"Twins",
"Male Protagonist",
"Reincarnation",
"Detective",
"Female Protagonist",
"Time Skip",
"Family Life",
"Love Triangle",
"Heterosexual",
"Age Regression",
"Primarily Female Cast",
"Suicide",
"Necromancy",
"Rehabilitation",
"Orphan"
],
"averageRating": 8.84,
"averagePopularity": 48499
},
{
"id": "151189",
"malId": "52092",
"slug": "my-home-hero",
"kitsuId": "12714",
"coverImage": "https://media.kitsu.io/anime/poster_images/12714/original.jpg",
"bannerImage": "https://s4.anilist.co/file/anilistcdn/media/anime/banner/151189-buERSJDJLoM6.jpg",
"trailer": "https://www.youtube.com/watch?v=vOZqSzk63U0",
"status": "RELEASING",
"season": "SPRING",
"title": {
"native": "「MY HOME」マイホーム",
"romaji": "My Home",
"english": "My Home"
},
"currentEpisode": null,
"mappings": [
{
"id": "/watch/my-home-hero.n3k3n",
"providerId": "9anime",
"similarity": {
"same": true,
"value": 1
}
},
{
"id": "/watch/home.yq1mz",
"providerId": "9anime",
"similarity": {
"same": false,
"value": 0.46153846153846156
}
},
{
"id": "/category/my-home-hero",
"providerId": "gogoanime",
"similarity": {
"same": true,
"value": 1
}
},
{
"id": "/category/my-home-hero-dub",
"providerId": "gogoanime",
"similarity": {
"same": true,
"value": 1
}
},
{
"id": "/my-home-hero-18348?ref=search",
"providerId": "zoro",
"similarity": {
"same": true,
"value": 1
}
},
{
"id": "/home-17755?ref=search",
"providerId": "zoro",
"similarity": {
"same": false,
"value": 0.46153846153846156
}
},
{
"id": "5203",
"providerId": "animepahe",
"similarity": {
"same": true,
"value": 1
}
},
{
"id": "46209",
"providerId": "kitsu",
"similarity": {
"same": true,
"value": 1
}
},
{
"id": "10396",
"providerId": "kitsu",
"similarity": {
"same": false,
"value": 0.5555555555555556
}
},
{
"id": "12714",
"providerId": "kitsu",
"similarity": {
"same": true,
"value": 0.7142857142857143
}
},
{
"id": "46209",
"providerId": "kitsu",
"similarity": {
"same": true,
"value": 1
}
},
{
"id": "10396",
"providerId": "kitsu",
"similarity": {
"same": false,
"value": 0.5555555555555556
}
},
{
"id": "12714",
"providerId": "kitsu",
"similarity": {
"same": true,
"value": 0.7142857142857143
}
},
{
"id": "46209",
"providerId": "kitsu",
"similarity": {
"same": true,
"value": 1
}
},
{
"id": "10396",
"providerId": "kitsu",
"similarity": {
"same": false,
"value": 0.5555555555555556
}
},
{