-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresponse.json
4508 lines (4508 loc) · 258 KB
/
response.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
{
"pagination": {
"last_visible_page": 20,
"has_next_page": true
},
"data": [
{
"mal_id": "121496-132214",
"entry": [
{
"mal_id": 121496,
"url": "https:\/\/myanimelist.net\/manga\/121496\/Solo_Leveling",
"images": {
"jpg": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/222295.jpg",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/222295t.jpg",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/222295l.jpg"
},
"webp": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/222295.webp",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/222295t.webp",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/222295l.webp"
}
},
"title": "Solo Leveling"
},
{
"mal_id": 132214,
"url": "https:\/\/myanimelist.net\/manga\/132214\/Omniscient_Reader",
"images": {
"jpg": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/238873.jpg",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/238873t.jpg",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/238873l.jpg"
},
"webp": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/238873.webp",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/238873t.webp",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/238873l.webp"
}
},
"title": "Omniscient Reader"
}
],
"content": "- amazing artwork - fantasy & action - great world-building",
"date": "2023-11-22T16:42:27+00:00",
"user": {
"url": "https:\/\/myanimelist.net\/profile\/little_shiz17",
"username": "little_shiz17"
}
},
{
"mal_id": "132214-147217",
"entry": [
{
"mal_id": 132214,
"url": "https:\/\/myanimelist.net\/manga\/132214\/Omniscient_Reader",
"images": {
"jpg": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/238873.jpg",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/238873t.jpg",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/238873l.jpg"
},
"webp": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/238873.webp",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/238873t.webp",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/238873l.webp"
}
},
"title": "Omniscient Reader"
},
{
"mal_id": 147217,
"url": "https:\/\/myanimelist.net\/manga\/147217\/The_World_After_the_Fall",
"images": {
"jpg": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/260852.jpg",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/260852t.jpg",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/260852l.jpg"
},
"webp": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/260852.webp",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/260852t.webp",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/260852l.webp"
}
},
"title": "The World After the Fall"
}
],
"content": "- amazing artwork (same artist) - action & fantasy - great world-building",
"date": "2023-11-22T16:42:27+00:00",
"user": {
"url": "https:\/\/myanimelist.net\/profile\/little_shiz17",
"username": "little_shiz17"
}
},
{
"mal_id": "121496-147217",
"entry": [
{
"mal_id": 121496,
"url": "https:\/\/myanimelist.net\/manga\/121496\/Solo_Leveling",
"images": {
"jpg": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/222295.jpg",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/222295t.jpg",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/222295l.jpg"
},
"webp": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/222295.webp",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/222295t.webp",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/222295l.webp"
}
},
"title": "Solo Leveling"
},
{
"mal_id": 147217,
"url": "https:\/\/myanimelist.net\/manga\/147217\/The_World_After_the_Fall",
"images": {
"jpg": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/260852.jpg",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/260852t.jpg",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/260852l.jpg"
},
"webp": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/260852.webp",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/260852t.webp",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/260852l.webp"
}
},
"title": "The World After the Fall"
}
],
"content": "- amazing art - action & fantasy - great world-building - main character \"levels-up\"\/becomes stronger - the main character is a bit of a lone wolf who is\/becomes OP",
"date": "2023-11-22T15:42:27+00:00",
"user": {
"url": "https:\/\/myanimelist.net\/profile\/little_shiz17",
"username": "little_shiz17"
}
},
{
"mal_id": "69045-86119",
"entry": [
{
"mal_id": 69045,
"url": "https:\/\/myanimelist.net\/manga\/69045\/Investor_Z",
"images": {
"jpg": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/118975.jpg",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/118975t.jpg",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/118975l.jpg"
},
"webp": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/118975.webp",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/118975t.webp",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/118975l.webp"
}
},
"title": "Investor Z"
},
{
"mal_id": 86119,
"url": "https:\/\/myanimelist.net\/manga\/86119\/Honzuki_no_Gekokujou__Shisho_ni_Naru_Tame_ni_wa_Shudan_wo_Erandeiraremasen",
"images": {
"jpg": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/149552.jpg",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/149552t.jpg",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/149552l.jpg"
},
"webp": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/149552.webp",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/149552t.webp",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/149552l.webp"
}
},
"title": "Honzuki no Gekokujou: Shisho ni Naru Tame ni wa Shudan wo Erandeiraremasen"
}
],
"content": "Young adult is making decisiongs on a grand scheme in a business schemes. Both of those work contain detailed learning, planning and executions of said ventures.",
"date": "2023-11-21T06:48:00+00:00",
"user": {
"url": "https:\/\/myanimelist.net\/profile\/abystoma2",
"username": "abystoma2"
}
},
{
"mal_id": "1239-4632",
"entry": [
{
"mal_id": 1239,
"url": "https:\/\/myanimelist.net\/manga\/1239\/Mikai_no_Hoshi",
"images": {
"jpg": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/274242.jpg",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/274242t.jpg",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/274242l.jpg"
},
"webp": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/274242.webp",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/274242t.webp",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/274242l.webp"
}
},
"title": "Mikai no Hoshi"
},
{
"mal_id": 4632,
"url": "https:\/\/myanimelist.net\/manga\/4632\/Oyasumi_Punpun",
"images": {
"jpg": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/266834.jpg",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/266834t.jpg",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/266834l.jpg"
},
"webp": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/266834.webp",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/266834t.webp",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/266834l.webp"
}
},
"title": "Oyasumi Punpun"
}
],
"content": "The same sense of obscenity and desperation is present is Mikai no Hoshi and the last volumes of Oyasumi Punpun. The characters are tragic and extremely flawed, paradoxically becoming likeable. Both titles explore the comedown of their characters (and in the case of Mikai no Hoshi, of the whole society) ; however Punpun is more nihilistic than Mikai no Hoshi, abandoning any form of value and worth, while Mikai no Hoshi always retain a strong sense of life, ultimately presenting a blooming flower of humanity in its twisted, \"uncivilised\" world.",
"date": "2023-11-21T05:58:00+00:00",
"user": {
"url": "https:\/\/myanimelist.net\/profile\/hubertpivert",
"username": "hubertpivert"
}
},
{
"mal_id": "44155-143609",
"entry": [
{
"mal_id": 44155,
"url": "https:\/\/myanimelist.net\/manga\/44155\/Kimi_wa_Midara_na_Boku_no_Joou",
"images": {
"jpg": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/187708.jpg",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/187708t.jpg",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/187708l.jpg"
},
"webp": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/187708.webp",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/187708t.webp",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/187708l.webp"
}
},
"title": "Kimi wa Midara na Boku no Joou"
},
{
"mal_id": 143609,
"url": "https:\/\/myanimelist.net\/manga\/143609\/Shiunji-ke_no_Kodomotachi",
"images": {
"jpg": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/264857.jpg",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/264857t.jpg",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/264857l.jpg"
},
"webp": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/264857.webp",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/264857t.webp",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/264857l.webp"
}
},
"title": "Shiunji-ke no Kodomotachi"
}
],
"content": "Both stories have Very exessive fanservice. The different tales have one thing in common: The characters need to be send to the GODDAMN hornyjail. They don't really have some good plot so only read them if you're thirsting to see some quick fanservice or just like this kind of story. They are also romance stories at heart, with the first one being too fast paced while the other one is too slow paced",
"date": "2023-11-20T00:00:00+00:00",
"user": {
"url": "https:\/\/myanimelist.net\/profile\/JannisT",
"username": "JannisT"
}
},
{
"mal_id": "92160-132463",
"entry": [
{
"mal_id": 92160,
"url": "https:\/\/myanimelist.net\/manga\/92160\/Happy_Sugar_Life",
"images": {
"jpg": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/165713.jpg",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/165713t.jpg",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/165713l.jpg"
},
"webp": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/165713.webp",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/165713t.webp",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/165713l.webp"
}
},
"title": "Happy Sugar Life"
},
{
"mal_id": 132463,
"url": "https:\/\/myanimelist.net\/manga\/132463\/Kimi_ni_Koisuru_Satsujinki",
"images": {
"jpg": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/246222.jpg",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/246222t.jpg",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/246222l.jpg"
},
"webp": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/246222.webp",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/246222t.webp",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/246222l.webp"
}
},
"title": "Kimi ni Koisuru Satsujinki"
}
],
"content": "Both stories tell the tale of a person, which kills for the sake of a relationship. Not Happy Sugar Life, nor Killer in Love end on a happy note, which feels realistic to see them not getting away with their murders. If you like to read a more bloody, more Gore heavy manga, I would recommend Killer in Love, as it shares some distinct similarities with the way that the protagonists handle critical situations (by murder lol).",
"date": "2023-11-20T00:00:00+00:00",
"user": {
"url": "https:\/\/myanimelist.net\/profile\/JannisT",
"username": "JannisT"
}
},
{
"mal_id": "23390-100128",
"entry": [
{
"mal_id": 23390,
"url": "https:\/\/myanimelist.net\/manga\/23390\/Shingeki_no_Kyojin",
"images": {
"jpg": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/37846.jpg",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/37846t.jpg",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/37846l.jpg"
},
"webp": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/37846.webp",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/37846t.webp",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/37846l.webp"
}
},
"title": "Shingeki no Kyojin"
},
{
"mal_id": 100128,
"url": "https:\/\/myanimelist.net\/manga\/100128\/Yakusoku_no_Neverland",
"images": {
"jpg": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/186922.jpg",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/186922t.jpg",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/186922l.jpg"
},
"webp": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/186922.webp",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/186922t.webp",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/186922l.webp"
}
},
"title": "Yakusoku no Neverland"
}
],
"content": "Both stories tell a tale of a friend group, consisting of three individuals, who wish to seek for freedom behind the walls, where they're being kept in. In both stories, \"monsters\" try to kill the last humans to eat them. Although \"Attack on Titan\" consists of darker themes with the protagonist turning into an antihero and more Gore, which isn't the main focus of TPN, the theme of the antihero is being kept alive to an extend within Norman, who tries to mercilessly slaughter the \"monsters\" to guarantee future survival. In both stories, the protagonists eventually realizer that they aren't the only survivors of humanity, but merely an isolated group. Overall, \"Attack on Titan\" is much darker, although TPN also integrates dark themes, which include implied suicide\/suicidal thinking, depression and the dark reality that all happy periods one day have to end",
"date": "2023-11-20T00:00:00+00:00",
"user": {
"url": "https:\/\/myanimelist.net\/profile\/JannisT",
"username": "JannisT"
}
},
{
"mal_id": "642-159918",
"entry": [
{
"mal_id": 642,
"url": "https:\/\/myanimelist.net\/manga\/642\/Vinland_Saga",
"images": {
"jpg": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/188925.jpg",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/188925t.jpg",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/188925l.jpg"
},
"webp": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/188925.webp",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/188925t.webp",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/188925l.webp"
}
},
"title": "Vinland Saga"
},
{
"mal_id": 159918,
"url": "https:\/\/myanimelist.net\/manga\/159918\/Odin_no_Shuuzoku",
"images": {
"jpg": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/292338.jpg",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/292338t.jpg",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/292338l.jpg"
},
"webp": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/292338.webp",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/292338t.webp",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/292338l.webp"
}
},
"title": "Odin no Shuuzoku"
}
],
"content": "Same period, both series have a cast made up of Vikings and priests. Both series try to show the attempts of people at that time to achieve peace despite their differences. Similar art and concepts.",
"date": "2023-11-20T00:00:00+00:00",
"user": {
"url": "https:\/\/myanimelist.net\/profile\/shinobiakuma",
"username": "shinobiakuma"
}
},
{
"mal_id": "111166-144411",
"entry": [
{
"mal_id": 111166,
"url": "https:\/\/myanimelist.net\/manga\/111166\/Fuyushirazu_no_Koi",
"images": {
"jpg": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/220706.jpg",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/220706t.jpg",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/220706l.jpg"
},
"webp": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/220706.webp",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/220706t.webp",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/220706l.webp"
}
},
"title": "Fuyushirazu no Koi"
},
{
"mal_id": 144411,
"url": "https:\/\/myanimelist.net\/manga\/144411\/Boku_ga_Shiranai_Kimi_no_Kao",
"images": {
"jpg": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/256377.jpg",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/256377t.jpg",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/256377l.jpg"
},
"webp": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/256377.webp",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/256377t.webp",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/256377l.webp"
}
},
"title": "Boku ga Shiranai Kimi no Kao"
}
],
"content": "-Living\/being in close quarters -childhood friends -ideas of unrequited love -very nice art -cute, short and sweet",
"date": "2023-11-20T00:00:00+00:00",
"user": {
"url": "https:\/\/myanimelist.net\/profile\/AnchiBananchi",
"username": "AnchiBananchi"
}
},
{
"mal_id": "119022-163403",
"entry": [
{
"mal_id": 119022,
"url": "https:\/\/myanimelist.net\/manga\/119022\/Kage_no_Jitsuryokusha_ni_Naritakute",
"images": {
"jpg": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/227280.jpg",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/227280t.jpg",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/227280l.jpg"
},
"webp": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/227280.webp",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/227280t.webp",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/227280l.webp"
}
},
"title": "Kage no Jitsuryokusha ni Naritakute!"
},
{
"mal_id": 163403,
"url": "https:\/\/myanimelist.net\/manga\/163403\/Isekai_Saikouhou_no_Guild_Leader__Guild_Saijaku_no_Boku_dakedo_Guildsmen_Zenin_no_Ai_ga_Omokute_Guild_wo_Yameraremasen",
"images": {
"jpg": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/291737.jpg",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/291737t.jpg",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/291737l.jpg"
},
"webp": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/291737.webp",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/291737t.webp",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/291737l.webp"
}
},
"title": "Isekai Saikouhou no Guild Leader: Guild Saijaku no Boku dakedo, Guildsmen Zenin no Ai ga Omokute Guild wo Yameraremasen"
}
],
"content": "Similiarity - Both mc think themselves as a mob - Both mc have so many lackey (underling) that capable takeover the world if they want to - Both mc are op as hell, but they think its just normal thing - Both story involve with \"secret organization\" plot - Both story also involve unknown disease that somehow both mc can cure without any effort - Both mc have organization that strongest and influential in the world Different - Kage start in school, This one start as adventure team\/guild - Kage mc have cringe persona edgelord, meanwhile this one want to have relax life - Kage lackey is not possesive like Guild leader story - Kage mc organization is secret one, Guild leader is public one (because its guild)",
"date": "2023-11-19T00:00:00+00:00",
"user": {
"url": "https:\/\/myanimelist.net\/profile\/IgnatiusTheFirst",
"username": "IgnatiusTheFirst"
}
},
{
"mal_id": "267-611",
"entry": [
{
"mal_id": 267,
"url": "https:\/\/myanimelist.net\/manga\/267\/Hellsing",
"images": {
"jpg": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/267321.jpg",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/267321t.jpg",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/267321l.jpg"
},
"webp": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/267321.webp",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/267321t.webp",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/267321l.webp"
}
},
"title": "Hellsing"
},
{
"mal_id": 611,
"url": "https:\/\/myanimelist.net\/manga\/611\/Bastard_Ankoku_no_Hakaishin",
"images": {
"jpg": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/149261.jpg",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/149261t.jpg",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/149261l.jpg"
},
"webp": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/149261.webp",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/149261t.webp",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/149261l.webp"
}
},
"title": "Bastard!! Ankoku no Hakaishin"
}
],
"content": "Dark, violent and completely insane manga, with insane and overpowered protagonists",
"date": "2023-11-19T00:00:00+00:00",
"user": {
"url": "https:\/\/myanimelist.net\/profile\/DerUntermensch",
"username": "DerUntermensch"
}
},
{
"mal_id": "2-583",
"entry": [
{
"mal_id": 2,
"url": "https:\/\/myanimelist.net\/manga\/2\/Berserk",
"images": {
"jpg": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/157897.jpg",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/157897t.jpg",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/157897l.jpg"
},
"webp": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/157897.webp",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/157897t.webp",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/157897l.webp"
}
},
"title": "Berserk"
},
{
"mal_id": 583,
"url": "https:\/\/myanimelist.net\/manga\/583\/Claymore",
"images": {
"jpg": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/255378.jpg",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/255378t.jpg",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/255378l.jpg"
},
"webp": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/255378.webp",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/255378t.webp",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/255378l.webp"
}
},
"title": "Claymore"
}
],
"content": "For fans of Berserk seeking a new adventure, Claymore offers a compelling parallel with its intense battles, wielded by formidable warriors known as Claymores, reminiscent of the dark and visceral combat found in Berserk. Both series share a penchant for complex characters with haunting pasts, weaving intricate narratives that explore themes of isolation and sacrifice. Claymore's dark fantasy world, replete with ominous landscapes and supernatural elements, provides a captivating backdrop akin to the rich and immersive universe of Berserk.",
"date": "2023-11-19T00:00:00+00:00",
"user": {
"url": "https:\/\/myanimelist.net\/profile\/Renji2303",
"username": "Renji2303"
}
},
{
"mal_id": "936-14440",
"entry": [
{
"mal_id": 936,
"url": "https:\/\/myanimelist.net\/manga\/936\/Homunculus",
"images": {
"jpg": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/318.jpg",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/318t.jpg",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/318l.jpg"
},
"webp": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/318.webp",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/318t.webp",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/318l.webp"
}
},
"title": "Homunculus"
},
{
"mal_id": 14440,
"url": "https:\/\/myanimelist.net\/manga\/14440\/I_Am_a_Hero",
"images": {
"jpg": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/121183.jpg",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/121183t.jpg",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/121183l.jpg"
},
"webp": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/121183.webp",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/121183t.webp",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/121183l.webp"
}
},
"title": "I Am a Hero"
}
],
"content": "\"I Am a Hero\" focuses on a zombie outbreak and the protagonist's struggle with his sanity, while \"Homunculus\" delves into psychological experimentation and the protagonist's exploration of altered states of consciousness. Both series have unsettling and dark themes, and specialize in focusing on psychological horror. They deal with the blurred lines between reality and illusion, and the disturbing aspects of human nature. The art style in both series is remarkably detailed, often displaying similarities in their high attention to visual storytelling.",
"date": "2023-11-18T00:00:00+00:00",
"user": {
"url": "https:\/\/myanimelist.net\/profile\/BorderlineCaseA4",
"username": "BorderlineCaseA4"
}
},
{
"mal_id": "13290-106609",
"entry": [
{
"mal_id": 13290,
"url": "https:\/\/myanimelist.net\/manga\/13290\/Ningen_Shikkaku",
"images": {
"jpg": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/166769.jpg",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/166769t.jpg",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/166769l.jpg"
},
"webp": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/166769.webp",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/166769t.webp",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/166769l.webp"
}
},
"title": "Ningen Shikkaku"
},
{
"mal_id": 106609,
"url": "https:\/\/myanimelist.net\/manga\/106609\/Ningen_Shikkaku",
"images": {
"jpg": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/260361.jpg",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/260361t.jpg",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/260361l.jpg"
},
"webp": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/260361.webp",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/260361t.webp",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/260361l.webp"
}
},
"title": "Ningen Shikkaku"
}
],
"content": "Both manga follow Youzou Ooba, a man dealing with anxiety, depression and all sorts of fears. The 2 stories differ at parts but the core themes are there.",
"date": "2023-11-18T00:00:00+00:00",
"user": {
"url": "https:\/\/myanimelist.net\/profile\/Kap92",
"username": "Kap92"
}
},
{
"mal_id": "84649-95954",
"entry": [
{
"mal_id": 84649,
"url": "https:\/\/myanimelist.net\/manga\/84649\/Biohazard__Heavenly_Island",
"images": {
"jpg": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/164464.jpg",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/164464t.jpg",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/164464l.jpg"
},
"webp": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/164464.webp",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/164464t.webp",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/164464l.webp"
}
},
"title": "Biohazard: Heavenly Island"
},
{
"mal_id": 95954,
"url": "https:\/\/myanimelist.net\/manga\/95954\/Tokyo_Undead",
"images": {
"jpg": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/171183.jpg",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/171183t.jpg",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/171183l.jpg"
},
"webp": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/171183.webp",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/171183t.webp",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/171183l.webp"
}
},
"title": "Tokyo Undead"
}
],
"content": "It's the end of the world.. with the undead always craving more human flesh!",
"date": "2023-11-18T00:00:00+00:00",
"user": {
"url": "https:\/\/myanimelist.net\/profile\/Kap92",
"username": "Kap92"
}
},
{
"mal_id": "32315-88131",
"entry": [
{
"mal_id": 32315,
"url": "https:\/\/myanimelist.net\/manga\/32315\/Biohazard__Marhawa_Desire",
"images": {
"jpg": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/5\/67021.jpg",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/5\/67021t.jpg",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/5\/67021l.jpg"
},
"webp": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/5\/67021.webp",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/5\/67021t.webp",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/5\/67021l.webp"
}
},
"title": "Biohazard: Marhawa Desire"
},
{
"mal_id": 88131,
"url": "https:\/\/myanimelist.net\/manga\/88131\/Igai__The_Play_Dead_Alive",
"images": {
"jpg": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/209989.jpg",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/209989t.jpg",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/209989l.jpg"
},
"webp": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/209989.webp",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/209989t.webp",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/209989l.webp"
}
},
"title": "Igai: The Play Dead\/Alive"
}
],
"content": "Zombie apocalypses never get tiring no matter how many times we watch\/read them! Blood, guts and as usual lots of flesh eating!",
"date": "2023-11-18T00:00:00+00:00",
"user": {
"url": "https:\/\/myanimelist.net\/profile\/Kap92",
"username": "Kap92"
}
},
{
"mal_id": "142-11434",
"entry": [
{
"mal_id": 142,
"url": "https:\/\/myanimelist.net\/manga\/142\/Battle_Royale",
"images": {
"jpg": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/262978.jpg",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/262978t.jpg",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/262978l.jpg"
},
"webp": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/262978.webp",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/262978t.webp",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/262978l.webp"
}
},
"title": "Battle Royale"
},
{
"mal_id": 11434,
"url": "https:\/\/myanimelist.net\/manga\/11434\/Jisatsutou",
"images": {
"jpg": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/182071.jpg",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/182071t.jpg",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/182071l.jpg"
},
"webp": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/182071.webp",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/182071t.webp",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/3\/182071l.webp"
}
},
"title": "Jisatsutou"
}
],
"content": "Both manga follows groups of people on deserted islands - literally fighting for their lives. Lots of action, gore & violence.",
"date": "2023-11-18T00:00:00+00:00",
"user": {
"url": "https:\/\/myanimelist.net\/profile\/Kap92",
"username": "Kap92"
}
},
{
"mal_id": "838-1735",
"entry": [
{
"mal_id": 838,
"url": "https:\/\/myanimelist.net\/manga\/838\/Angel_Densetsu",
"images": {
"jpg": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/164490.jpg",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/164490t.jpg",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/164490l.jpg"
},
"webp": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/164490.webp",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/164490t.webp",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/164490l.webp"
}
},
"title": "Angel Densetsu"
},
{
"mal_id": 1735,
"url": "https:\/\/myanimelist.net\/manga\/1735\/Detroit_Metal_City",
"images": {
"jpg": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/207424.jpg",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/207424t.jpg",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/207424l.jpg"
},
"webp": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/207424.webp",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/207424t.webp",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/207424l.webp"
}
},
"title": "Detroit Metal City"
}
],
"content": "The definition of ''don't judge a book by its cover''. Both manga have great comedy, with a never ending cycle of misunderstandings.",
"date": "2023-11-18T00:00:00+00:00",
"user": {
"url": "https:\/\/myanimelist.net\/profile\/Kap92",
"username": "Kap92"
}
},
{
"mal_id": "670-889",
"entry": [
{
"mal_id": 670,
"url": "https:\/\/myanimelist.net\/manga\/670\/Bokurano",
"images": {
"jpg": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/57107.jpg",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/57107t.jpg",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/57107l.jpg"
},
"webp": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/57107.webp",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/57107t.webp",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/57107l.webp"
}
},
"title": "Bokurano"
},
{
"mal_id": 889,
"url": "https:\/\/myanimelist.net\/manga\/889\/Alien_9",
"images": {
"jpg": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/5\/272365.jpg",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/5\/272365t.jpg",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/5\/272365l.jpg"
},
"webp": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/5\/272365.webp",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/5\/272365t.webp",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/5\/272365l.webp"
}
},
"title": "Alien 9"
}
],
"content": "Ordinary children are thrust into an overwhelming, dangerous situation with forces at play almost completely beyond their understanding, and they're expected to just kinda deal with it.",
"date": "2023-11-18T00:00:00+00:00",
"user": {
"url": "https:\/\/myanimelist.net\/profile\/ghoulsteak",
"username": "ghoulsteak"
}
},
{
"mal_id": "149-72467",
"entry": [
{
"mal_id": 149,
"url": "https:\/\/myanimelist.net\/manga\/149\/Blame",
"images": {
"jpg": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/174389.jpg",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/174389t.jpg",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/174389l.jpg"
},
"webp": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/174389.webp",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/174389t.webp",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/174389l.webp"
}
},
"title": "Blame!"
},
{
"mal_id": 72467,
"url": "https:\/\/myanimelist.net\/manga\/72467\/Shoujo_Shuumatsu_Ryokou",
"images": {
"jpg": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/185918.jpg",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/185918t.jpg",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/185918l.jpg"
},
"webp": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/185918.webp",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/185918t.webp",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/185918l.webp"
}
},
"title": "Shoujo Shuumatsu Ryokou"
}
],
"content": "A melancholy post-apocalyptic series about a pair of wanderers amidst the vast ruins of a long-dead civilisation.",
"date": "2023-11-18T00:00:00+00:00",
"user": {
"url": "https:\/\/myanimelist.net\/profile\/ghoulsteak",
"username": "ghoulsteak"
}
},
{
"mal_id": "149-146207",
"entry": [
{
"mal_id": 149,
"url": "https:\/\/myanimelist.net\/manga\/149\/Blame",
"images": {
"jpg": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/174389.jpg",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/174389t.jpg",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/174389l.jpg"
},
"webp": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/174389.webp",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/174389t.webp",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/1\/174389l.webp"
}
},
"title": "Blame!"
},
{
"mal_id": 146207,
"url": "https:\/\/myanimelist.net\/manga\/146207\/Usuzumi_no_Hate",
"images": {
"jpg": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/280024.jpg",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/280024t.jpg",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/280024l.jpg"
},
"webp": {
"image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/280024.webp",
"small_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/280024t.webp",
"large_image_url": "https:\/\/cdn.myanimelist.net\/images\/manga\/2\/280024l.webp"
}
},
"title": "Usuzumi no Hate"
}
],
"content": "An immortal synthetic human explores a vast, derelict city in search of human life. Features a direct cameo from that weird nutrient brick Killy ate one time.",
"date": "2023-11-18T00:00:00+00:00",
"user": {
"url": "https:\/\/myanimelist.net\/profile\/ghoulsteak",
"username": "ghoulsteak"
}
},
{
"mal_id": "1133-116778",
"entry": [
{