-
Notifications
You must be signed in to change notification settings - Fork 0
/
games.json
996 lines (996 loc) · 33.1 KB
/
games.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
[
{
"title": "The Witcher 3: Wild Hunt",
"slug": "the-witcher-3-wild-hunt",
"category": "Role-playing",
"description": "An exciting open-world role-playing game.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/292030/header.jpg?t=1693590732",
"price": 29.99,
"average_rating": 5,
"review_count": 10000,
"publisher": "CD Projekt",
"discount": 10,
"release_year": 2015
},
{
"title": "Red Dead Redemption 2",
"slug": "red-dead-redemption-2",
"category": "Action",
"description": "A game about outlaws and the wild west.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/1174180/header.jpg?t=1695140956",
"price": 49.99,
"average_rating": 5,
"review_count": 8500,
"publisher": "Rockstar Games",
"release_year": 2018
},
{
"title": "Hollow Knight",
"slug": "hollow-knight",
"category": "Indie",
"description": "A critically acclaimed indie platformer with a dark atmosphere.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/367520/header.jpg?t=1695270428",
"price": 14.99,
"average_rating": 4.6,
"review_count": 6500,
"publisher": "Team Cherry",
"release_year": 2017
},
{
"title": "Cyberpunk 2077",
"slug": "cyberpunk-2077",
"category": "Role-playing",
"description": "A futuristic open-world RPG set in Night City.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/1091500/header_alt_assets_1.jpg?t=1699262718",
"price": 59.99,
"average_rating": 3.9,
"review_count": 7500,
"publisher": "CD Projekt",
"discount": 15,
"release_year": 2020
},
{
"title": "Minecraft Dungeons",
"slug": "minecraft-dungeons",
"category": "Adventure",
"description": "Fight your way through an exciting action-adventure game",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/1672970/header.jpg?t=1697014975",
"price": 26.95,
"average_rating": 4.5,
"review_count": 9000,
"publisher": "Mojang",
"release_year": 2020
},
{
"title": "Call of Duty: Warzone",
"slug": "call-of-duty-warzone",
"category": "Shooter",
"description": "A popular free-to-play battle royale mode in the Call of Duty series.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/1962663/header.jpg?t=1692298772",
"price": 29.99,
"average_rating": 4.2,
"review_count": 7000,
"publisher": "Activision",
"discount": 5,
"release_year": 2020
},
{
"title": "Assassin's Creed Valhalla",
"slug": "assassins-creed-valhalla",
"category": "Action",
"description": "An action-adventure game set in the Viking Age.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/2208920/header.jpg?t=1697654233",
"price": 39.99,
"average_rating": 4.4,
"review_count": 8200,
"publisher": "Ubisoft",
"release_year": 2020
},
{
"title": "FIFA 22",
"slug": "fifa-22",
"category": "Sports",
"description": "The latest installment in the popular FIFA football series.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/1506830/header.jpg?t=1695934909",
"price": 49.99,
"average_rating": 3.9,
"review_count": 6000,
"publisher": "EA Sports",
"release_year": 2021
},
{
"title": "Among Us",
"slug": "among-us",
"category": "Party",
"description": "A fun and social deduction game for parties and online play.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/945360/header_alt_assets_5.jpg?t=1698177355",
"price": 4.99,
"average_rating": 4.7,
"review_count": 7500,
"publisher": "Innersloth",
"discount": 20,
"release_year": 2018
},
{
"title": "Horizon Zero Dawn",
"slug": "horizon-zero-dawn",
"category": "Action",
"description": "A stunning action RPG in a post-apocalyptic world.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/804410/header.jpg?t=1654314843",
"price": 19.99,
"average_rating": 4.6,
"review_count": 6700,
"publisher": "Guerrilla Games",
"discount": 5,
"release_year": 2017
},
{
"title": "Counter-Strike 2",
"slug": "counter-strike-2",
"category": "Shooter",
"description": "A popular first-person shooter with competitive gameplay.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/730/header.jpg?t=1698860631",
"price": 14.99,
"average_rating": 4.3,
"review_count": 7800,
"publisher": "Valve",
"release_year": 2012
},
{
"title": "The Elder Scrolls V: Skyrim",
"slug": "the-elder-scrolls-v-skyrim",
"category": "Role-playing",
"description": "An epic open-world RPG in the land of Skyrim.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/489830/header.jpg?t=1650909796",
"price": 19.99,
"average_rating": 4.7,
"review_count": 9500,
"publisher": "Bethesda Game Studios",
"release_year": 2011
},
{
"title": "Grand Theft Auto V",
"slug": "grand-theft-auto-v",
"category": "Action",
"description": "GTA V is an open-world crime game with a sprawling city to explore.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/271590/header.jpg?t=1695060909",
"price": 29.99,
"average_rating": 5,
"review_count": 9100,
"publisher": "Rockstar Games",
"release_year": 2015
},
{
"title": "The Last of Us Part I",
"slug": "the-last-of-us-part-i",
"category": "Action",
"description": "A gripping action-adventure game in a post-apocalyptic world.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/1888930/header.jpg?t=1697567304",
"price": 39.99,
"average_rating": 4.6,
"review_count": 8400,
"publisher": "Naughty Dog",
"discount": 10,
"release_year": 2013
},
{
"title": "Overwatch",
"slug": "overwatch",
"category": "Shooter",
"description": "A team-based first-person shooter with unique heroes.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/2357570/header.jpg?t=1699055640",
"price": 19.99,
"average_rating": 4.4,
"review_count": 7000,
"publisher": "Blizzard Entertainment",
"release_year": 2016
},
{
"title": "Dark Souls III",
"slug": "dark-souls-iii",
"category": "Action",
"description": "A challenging action RPG with intense battles.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/374320/header.jpg?t=1682651227",
"price": 24.99,
"average_rating": 4.5,
"review_count": 7200,
"publisher": "Bandai Namco Entertainment",
"release_year": 2016
},
{
"title": "Destiny 2",
"slug": "destiny-2",
"category": "Shooter",
"description": "A popular online multiplayer shooter with sci-fi elements.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/1085660/header.jpg?t=1696977153",
"price": 19.99,
"average_rating": 3.9,
"review_count": 7900,
"publisher": "Bungie",
"discount": 15,
"release_year": 2017
},
{
"title": "Doom Eternal",
"slug": "doom-eternal",
"category": "Shooter",
"description": "A fast-paced and intense first-person shooter.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/782330/header.jpg?t=1693933695",
"price": 39.99,
"average_rating": 4.7,
"review_count": 6800,
"publisher": "Bethesda Softworks",
"release_year": 2020
},
{
"title": "Mortal Kombat 11",
"slug": "mortal-kombat-11",
"category": "Fighting",
"description": "A brutal and action-packed fighting game.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/976310/header.jpg?t=1691103008",
"price": 49.99,
"average_rating": 4.6,
"review_count": 7200,
"publisher": "NetherRealm Studios",
"discount": 5,
"release_year": 2019
},
{
"title": "Sekiro: Shadows Die Twice",
"slug": "sekiro-shadows-die-twice",
"category": "Action",
"description": "A challenging action-adventure game with samurai combat.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/814380/header.jpg?t=1678991267",
"price": 59.99,
"average_rating": 4.9,
"review_count": 8200,
"publisher": "FromSoftware",
"release_year": 2019
},
{
"title": "The Sims 4",
"slug": "the-sims-4",
"category": "Life Simulation",
"description": "A popular life simulation game with endless creativity.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/1222670/header.jpg?t=1699288103",
"price": 39.99,
"average_rating": 3.8,
"review_count": 8200,
"publisher": "Electronic Arts",
"release_year": 2014
},
{
"title": "Final Fantasy VII Remake",
"slug": "final-fantasy-vii-remake",
"category": "Role-playing",
"description": "A remake of the classic RPG with modern graphics and gameplay.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/1462040/header.jpg?t=1696383548",
"price": 49.99,
"average_rating": 4.7,
"review_count": 7800,
"publisher": "Square Enix",
"discount": 20,
"release_year": 2020
},
{
"title": "Civilization VI",
"slug": "civilization-vi",
"category": "Strategy",
"description": "A deep and complex strategy game where you build an empire.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/289070/header.jpg?t=1680898825",
"price": 29.99,
"average_rating": 4.5,
"review_count": 7300,
"publisher": "Firaxis Games",
"release_year": 2016
},
{
"title": "Resident Evil Village",
"slug": "resident-evil-village",
"category": "Horror",
"description": "A survival horror game set in a mysterious village.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/1196590/header.jpg?t=1690436815",
"price": 44.99,
"average_rating": 4.4,
"review_count": 6700,
"publisher": "Capcom",
"release_year": 2021
},
{
"title": "Rainbow Six Siege",
"slug": "rainbow-six-siege",
"category": "Tactical Shooter",
"description": "A tactical first-person shooter with team-based gameplay.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/359550/header.jpg?t=1699395596",
"price": 19.99,
"average_rating": 4.2,
"review_count": 7000,
"publisher": "Ubisoft",
"release_year": 2015
},
{
"title": "Sea of Thieves",
"slug": "sea-of-thieves",
"category": "Adventure",
"description": "A cooperative pirate adventure on the high seas.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/1172620/header.jpg?t=1698169862",
"price": 29.99,
"average_rating": 4.4,
"review_count": 6900,
"publisher": "Rare",
"discount": 25,
"release_year": 2018
},
{
"title": "The Outer Worlds",
"slug": "the-outer-worlds",
"category": "Role-playing",
"description": "A quirky and humorous space-themed RPG.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/578650/header.jpg?t=1678291307",
"price": 39.99,
"average_rating": 3.7,
"review_count": 7100,
"publisher": "Obsidian Entertainment",
"release_year": 2019
},
{
"title": "Apex Legends",
"slug": "apex-legends",
"category": "Battle Royale",
"description": "A fast-paced and team-based battle royale shooter.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/1172470/header.jpg?t=1698958633",
"price": 15.99,
"average_rating": 4.5,
"review_count": 8000,
"publisher": "Electronic Arts",
"release_year": 2019
},
{
"title": "The Elder Scrolls Online",
"slug": "the-elder-scrolls-online",
"category": "Massively Multiplayer",
"description": "An MMORPG set in the Elder Scrolls universe.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/306130/header_alt_assets_13.jpg?t=1698940670",
"price": 14.99,
"average_rating": 4.3,
"review_count": 7700,
"publisher": "ZeniMax Online Studios",
"release_year": 2014
},
{
"title": "Dead by Daylight",
"slug": "dead-by-daylight",
"category": "Horror",
"description": "A multiplayer horror game with a killer and survivors.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/381210/header.jpg?t=1699366103",
"price": 19.99,
"average_rating": 3.8,
"review_count": 7800,
"publisher": "Behaviour Interactive",
"release_year": 2016
},
{
"title": "Phasmophobia",
"slug": "phasmophobia",
"category": "Horror",
"description": "A cooperative horror game where you hunt ghosts.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/739630/header.jpg?t=1693954450",
"price": 14.99,
"average_rating": 4.7,
"review_count": 6900,
"publisher": "Kinetic Games",
"release_year": 2020
},
{
"title": "Fallout 4",
"slug": "fallout-4",
"category": "Role-playing",
"description": "Explore the post-apocalyptic wasteland in this open-world RPG.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/377160/header.jpg?t=1650909928",
"price": 29.99,
"average_rating": 4.5,
"review_count": 8500,
"publisher": "Bethesda Game Studios",
"release_year": 2015
},
{
"title": "Borderlands 3",
"slug": "borderlands-3",
"category": "Action",
"description": "Join the mayhem in this cooperative first-person shooter.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/397540/header.jpg?t=1693524259",
"price": 39.99,
"average_rating": 4.6,
"review_count": 8200,
"publisher": "2K Games",
"release_year": 2019
},
{
"title": "Dota 2",
"slug": "dota-2",
"category": "MOBA",
"description": "Engage in strategic battles with a diverse cast of heroes.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/570/header.jpg?t=1697142820",
"price": 4.99,
"average_rating": 4.2,
"review_count": 9000,
"publisher": "Valve",
"release_year": 2013
},
{
"title": "Star Wars Jedi: Fallen Order",
"slug": "star-wars-jedi-fallen-order",
"category": "Action",
"description": "Embark on a Jedi journey in the Star Wars universe.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/1172380/header.jpg?t=1700042981",
"price": 49.99,
"average_rating": 4.8,
"review_count": 7800,
"publisher": "Electronic Arts",
"release_year": 2019
},
{
"title": "Stardew Valley",
"slug": "stardew-valley",
"category": "Simulation",
"description": "Build your farm and connect with the charming townspeople.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/413150/header.jpg?t=1666917466",
"price": 14.99,
"average_rating": 4.8,
"review_count": 9200,
"publisher": "ConcernedApe",
"release_year": 2016
},
{
"title": "Subnautica",
"slug": "subnautica",
"category": "Adventure",
"description": "Survive and explore the underwater world in this immersive game.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/264710/header.jpg?t=1670975847",
"price": 24.99,
"average_rating": 4.6,
"review_count": 8800,
"publisher": "Unknown Worlds Entertainment",
"release_year": 2018
},
{
"title": "No Man's Sky",
"slug": "no-mans-sky",
"category": "Adventure",
"description": "Embark on a journey of exploration and discovery in an infinite universe.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/275850/header.jpg?t=1697096982",
"price": 29.99,
"average_rating": 4.0,
"review_count": 8200,
"publisher": "Hello Games",
"release_year": 2016
},
{
"title": "Divinity: Original Sin 2",
"slug": "divinity-original-sin-2",
"category": "Role-playing",
"description": "Immerse yourself in a rich, fantasy RPG with deep storytelling.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/435150/header.jpg?t=1668591196",
"price": 44.99,
"average_rating": 4.9,
"review_count": 9700,
"publisher": "Larian Studios",
"release_year": 2017
},
{
"title": "Monster Hunter: World",
"slug": "monster-hunter-world",
"category": "Action",
"description": "Hunt giant monsters in a beautifully crafted open world.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/582010/header.jpg?t=1697508240",
"price": 39.99,
"average_rating": 4.7,
"review_count": 8800,
"publisher": "Capcom",
"release_year": 2018
},
{
"title": "Cities: Skylines",
"slug": "cities-skylines",
"category": "Simulation",
"description": "Build and manage your own city in this realistic simulation game.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/255710/header.jpg?t=1699527482",
"price": 19.99,
"average_rating": 4.5,
"review_count": 8900,
"publisher": "Paradox Interactive",
"release_year": 2015
},
{
"title": "Cities: Skylines 2",
"slug": "cities-skylines-2",
"category": "Simulation",
"description": "Build and manage your own city in this realistic simulation game.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/949230/header.jpg?t=1698326456",
"price": 29.99,
"average_rating": 4.5,
"review_count": 8900,
"publisher": "Paradox Interactive",
"release_year": 2022
},
{
"title": "Ori and the Blind Forest",
"slug": "ori-and-the-blind-forest",
"category": "Platformer",
"description": "Embark on an emotional journey in this visually stunning platformer.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/261570/header.jpg?t=1667504148",
"price": 19.99,
"average_rating": 4.8,
"review_count": 9400,
"publisher": "Moon Studios",
"release_year": 2015
},
{
"title": "Cuphead",
"slug": "cuphead",
"category": "Run and Gun",
"description": "Experience a challenging run-and-gun adventure with unique art style.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/268910/header.jpg?t=1695655205",
"price": 19.99,
"average_rating": 4.7,
"review_count": 8600,
"publisher": "Studio MDHR",
"release_year": 2017
},
{
"title": "Civilization V",
"slug": "civilization-v",
"category": "Strategy",
"description": "Build your civilization and lead it to victory in this classic strategy game.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/8930/header.jpg?t=1579731804",
"price": 19.99,
"average_rating": 4.6,
"review_count": 9100,
"publisher": "Firaxis Games",
"release_year": 2010
},
{
"title": "Elder Scrolls IV: Oblivion",
"slug": "elder-scrolls-iv-oblivion",
"category": "Role-playing",
"description": "Immerse yourself in the fantasy world of Tamriel in this classic RPG.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/900883/header.jpg?t=1593798311",
"price": 14.99,
"average_rating": 4.5,
"review_count": 8200,
"publisher": "Bethesda Game Studios",
"release_year": 2006
},
{
"title": "Terraria",
"slug": "terraria",
"category": "Adventure",
"description": "Explore, build, and survive in this 2D sandbox adventure.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/105600/header.jpg?t=1666290860",
"price": 9.99,
"average_rating": 4.8,
"review_count": 8700,
"publisher": "Re-Logic",
"release_year": 2011
},
{
"title": "Starbound",
"slug": "starbound",
"category": "Adventure",
"description": "Embark on an intergalactic adventure in this sandbox game.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/211820/header.jpg?t=1661178495",
"price": 14.99,
"average_rating": 4.7,
"review_count": 8300,
"publisher": "Chucklefish",
"release_year": 2016
},
{
"title": "Hades",
"slug": "hades",
"category": "Action",
"description": "Descend into the underworld in this rogue-like dungeon crawler.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/1145360/header.jpg?t=1680293801",
"price": 14.99,
"average_rating": 4.9,
"review_count": 9100,
"publisher": "Supergiant Games",
"release_year": 2020
},
{
"title": "Hades II",
"slug": "hades-2",
"category": "Action",
"description": "Descend into the underworld in this rogue-like dungeon crawler.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/1145350/header.jpg?t=1680030849",
"price": 24.99,
"average_rating": 4.9,
"review_count": 9100,
"publisher": "Supergiant Games",
"release_year": 2022
},
{
"title": "HITMAN 3",
"slug": "hitman-3",
"category": "Action",
"description": "Become the ultimate assassin in this stealth action game.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/1659040/header.jpg?t=1698922867",
"price": 59.99,
"average_rating": 4.6,
"review_count": 8500,
"publisher": "IO Interactive",
"release_year": 2021
},
{
"title": "Factorio",
"slug": "factorio",
"category": "Simulation",
"description": "Build and manage automated factories in this addictive simulation game.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/427520/header.jpg?t=1694021968",
"price": 29.99,
"average_rating": 5,
"review_count": 9400,
"publisher": "Wube Software LTD",
"release_year": 2020
},
{
"title": "Undertale",
"slug": "undertale",
"category": "Role-playing",
"description": "Embark on a unique and heartwarming RPG adventure.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/391540/header.jpg?t=1579096091",
"price": 9.99,
"average_rating": 4.8,
"review_count": 8900,
"publisher": "Toby Fox",
"release_year": 2015
},
{
"title": "Slay the Spire",
"slug": "slay-the-spire",
"category": "Card Game",
"description": "Ascend the Spire in this challenging deck-building roguelike.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/646570/header.jpg?t=1666988685",
"price": 24.99,
"average_rating": 4.7,
"review_count": 9200,
"publisher": "MegaCrit",
"release_year": 2017
},
{
"title": "The Forest",
"slug": "the-forest",
"category": "Survival",
"description": "Survive in a mysterious forest filled with dangers in this open-world game.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/242760/header.jpg?t=1699381053",
"price": 14.99,
"average_rating": 4.5,
"review_count": 8600,
"publisher": "Endnight Games",
"release_year": 2018
},
{
"title": "Sons Of The Forest",
"slug": "sons-of-the-forest",
"category": "Survival",
"description": "Survive in a mysterious forest filled with dangers in this open-world game.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/1326470/header.jpg?t=1697048131",
"price": 25.99,
"average_rating": 4.5,
"review_count": 8600,
"publisher": "Endnight Games",
"release_year": 2018
},
{
"title": "Rogue Company",
"slug": "rogue-company",
"category": "Shooter",
"description": "Engage in tactical third-person shooter battles.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/872200/header.jpg?t=1689680315",
"price": 9.99,
"average_rating": 3.5,
"review_count": 4500,
"publisher": "Hi-Rez Studios",
"release_year": 2020
},
{
"title": "Bless Unleashed",
"slug": "bless-unleashed",
"category": "Massively Multiplayer",
"description": "Embark on an epic MMORPG adventure in a fantastical world.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/1254120/header.jpg?t=1681112954",
"price": 5.99,
"average_rating": 3.2,
"review_count": 3200,
"publisher": "Neowiz",
"release_year": 2021
},
{
"title": "The Culling",
"slug": "the-culling",
"category": "Battle Royale",
"description": "Enter a deadly battle royale competition in a remote arena.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/297020/header.jpg?t=1690122070",
"price": 9.99,
"average_rating": 3.1,
"review_count": 2800,
"publisher": "Xaviant",
"release_year": 2016
},
{
"title": "Conan Exiles",
"slug": "conan-exiles",
"category": "Survival",
"description": "Survive and build in the harsh world of Conan the Barbarian.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/440900/header.jpg?t=1699892093",
"price": 39.99,
"average_rating": 3.4,
"review_count": 3800,
"publisher": "Funcom",
"release_year": 2018
},
{
"title": "Atlas",
"slug": "atlas",
"category": "Adventure",
"description": "Explore a massive open world with thousands of other players.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/834910/header.jpg?t=1694646023",
"price": 29.99,
"average_rating": 3.0,
"review_count": 2500,
"publisher": "Grapeshot Games",
"release_year": 2018
},
{
"title": "Warframe",
"slug": "warframe",
"category": "Action",
"description": "Play as a space ninja in this free-to-play cooperative shooter.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/230410/header.jpg?t=1697647667",
"price": 4.99,
"average_rating": 3.6,
"review_count": 4100,
"publisher": "Digital Extremes",
"release_year": 2013
},
{
"title": "Necropolis II",
"slug": "necropolis-2",
"category": "Action",
"description": "Descend into a deadly dungeon in this roguelike action game.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/2065810/header.jpg?t=1681800032",
"price": 29.99,
"average_rating": 2.9,
"review_count": 3400,
"publisher": "Harebrained Schemes",
"release_year": 2023
},
{
"title": "Life is Feudal: Your Own",
"slug": "life-is-feudal-your-own",
"category": "Sandbox",
"description": "Shape your own medieval world in this sandbox game.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/290080/header.jpg?t=1625615592",
"price": 39.99,
"average_rating": 3.2,
"review_count": 3100,
"publisher": "Bitbox",
"release_year": 2015
},
{
"title": "Outpost Zero",
"slug": "outpost-zero",
"category": "Survival",
"description": "Survive and build in an alien world with hostile creatures.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/677480/header.jpg?t=1667316957",
"price": 14.99,
"average_rating": 2.5,
"review_count": 3600,
"publisher": "Symmetric Games",
"release_year": 2018
},
{
"title": "Dead Frontier 2",
"slug": "dead-frontier-2",
"category": "Survival",
"description": "Survive the zombie apocalypse in this online survival horror game.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/744900/header.jpg?t=1683275540",
"price": 14.99,
"average_rating": 2.8,
"review_count": 2400,
"publisher": "Creaky Corpse Ltd.",
"release_year": 2018
},
{
"title": "Creativerse",
"slug": "creativerse",
"category": "Adventure",
"description": "Explore and build in a sandbox world filled with creatures.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/280790/header.jpg?t=1671255455",
"price": 9.99,
"average_rating": 2.3,
"review_count": 3200,
"publisher": "Playful Corporation",
"release_year": 2014
},
{
"title": "Infestation: The New Z",
"slug": "infestation-the-new-z",
"category": "Shooter",
"description": "Fight for survival in a world infested with zombies.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/555570/header.jpg?t=1696509065",
"price": 14.99,
"average_rating": 2.9,
"review_count": 2700,
"publisher": "Fredaikis AB",
"release_year": 2016
},
{
"title": "Boundless",
"slug": "boundless",
"category": "Sandbox",
"description": "Explore a vast universe and build anything you can imagine.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/324510/header.jpg?t=1664896924",
"price": 39.99,
"average_rating": 3.2,
"review_count": 2900,
"publisher": "Wonderstruck",
"release_year": 2018
},
{
"title": "Crucible",
"slug": "crucible",
"category": "Shooter",
"description": "Battle for survival in a dangerous alien world.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/1571120/header.jpg?t=1670243132",
"price": 4.99,
"average_rating": 3.1,
"review_count": 2800,
"publisher": "Amazon Game Studios",
"release_year": 2020
},
{
"title": "Brawlhalla",
"slug": "brawlhalla",
"category": "Fighting",
"description": "Join the epic platform fighter with over 50 million players.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/291550/header.jpg?t=1700083049",
"price": 5.99,
"average_rating": 3.5,
"review_count": 3700,
"publisher": "Blue Mammoth Games",
"release_year": 2017
},
{
"title": "Paladins",
"slug": "paladins",
"category": "Shooter",
"description": "Join the fast-paced fantasy team-based shooter.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/444090/header.jpg?t=1695838776",
"price": 9.99,
"average_rating": 3.6,
"review_count": 4000,
"publisher": "Hi-Rez Studios",
"release_year": 2018
},
{
"title": "Robocraft",
"slug": "robocraft",
"category": "Shooter",
"description": "Build, drive, and fight in vehicle combat battles.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/301520/header.jpg?t=1667302415",
"price": 8.99,
"average_rating": 3.4,
"review_count": 3600,
"publisher": "Freejam",
"release_year": 2017
},
{
"title": "Hyper Scape",
"slug": "hyper-scape",
"category": "Battle Royale",
"description": "Experience fast-paced battle royale action in a futuristic city.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/2214090/header.jpg?t=1674751926",
"price": 4.99,
"average_rating": 1.9,
"review_count": 3300,
"publisher": "Ubisoft",
"release_year": 2020
},
{
"title": "Worlds Adrift",
"slug": "worlds-adrift",
"category": "Adventure",
"description": "Explore a sky full of floating islands in this sandbox MMO.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/271920/header.jpg?t=1586716220",
"price": 24.99,
"average_rating": 1.9,
"review_count": 2600,
"publisher": "Bossa Studios",
"release_year": 2017
},
{
"title": "Celeste",
"slug": "celeste",
"category": "Indie",
"description": "Embark on a journey of self-discovery in this challenging indie platformer.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/504230/header.jpg?t=1698776450",
"price": 19.99,
"average_rating": 5,
"review_count": 9500,
"publisher": "Maddy Makes Games",
"release_year": 2018
},
{
"title": "Portal 2",
"slug": "portal-2",
"category": "Puzzle",
"description": "Solve mind-bending puzzles with the help of a portal gun in this acclaimed game.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/620/header.jpg?t=1698805825",
"price": 9.99,
"average_rating": 5,
"review_count": 11000,
"publisher": "Valve",
"release_year": 2011
},
{
"title": "Oxenfree",
"slug": "oxenfree",
"category": "Adventure",
"description": "Uncover a supernatural mystery on an abandoned island in this narrative-driven game.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/388880/header.jpg?t=1666999032",
"price": 9.99,
"average_rating": 5,
"review_count": 7800,
"publisher": "Night School Studio",
"release_year": 2016
},
{
"title": "Hollow Knight: Silksong",
"slug": "hollow-knight-silksong",
"category": "Indie",
"description": "Discover a new kingdom in this highly anticipated sequel to Hollow Knight.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/1030300/header.jpg?t=1695443850",
"price": 29.99,
"average_rating": 5,
"review_count": 8000,
"publisher": "Team Cherry",
"release_year": 2022
},
{
"title": "Rust",
"slug": "rust",
"category": "Survival",
"description": "Survive, build, and dominate in this multiplayer survival game.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/252490/header.jpg?t=1699598132",
"price": 39.99,
"average_rating": 3.6,
"review_count": 6100,
"publisher": "Facepunch Studios",
"release_year": 2018
},
{
"title": "Miscreated",
"slug": "miscreated",
"category": "Survival",
"description": "Survive and explore a post-apocalyptic open world in this online multiplayer game.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/299740/header.jpg?t=1606874689",
"price": 24.99,
"average_rating": 3.5,
"review_count": 5400,
"publisher": "Entrada Interactive LLC",
"release_year": 2018
},
{
"title": "Divergence: Online",
"slug": "divergence-online",
"category": "Massively Multiplayer",
"description": "Explore a vast sandbox universe in this MMORPG with player-driven economy.",
"image_link": "https://cdn.akamai.steamstatic.com/steam/apps/2686740/header.jpg?t=1699870537",
"price": 19.99,
"average_rating": 2.9,
"review_count": 2500,
"publisher": "Stained Glass Llama",
"release_year": 2017
}
]