games
Data license: All Rights Reserved · Data source: krisyotam.com · About: Kris Yotam
15 rows
This data as json, CSV (advanced)
Suggested facets: version, genres, developer, publisher, rating, favorite, release_date (date), date_last_played (date), genres (array)
| id ▼ | name | version | release_date | console | hours_played | genres | cover_image | developer | publisher | rating | favorite | favorite_weight | date_last_played |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 10 | Fortnite | 1.0 | 2023-08-03 | PC | 5717 | ["Battle Royale","TPS"] | https://krisyotam.com/cdn/images/games/fortnite.jpg | Larian Studios | Larian Studios | 5.0 | 1 | 9.9 | 2025-05-20T21:00:00.000Z |
| 11 | Aim Labs | 1.0 | 2019-01-01 | PC | 45 | ["Shooter","Training"] | https://krisyotam.com/cdn/images/games/aimlabs.jpg | Statespace | Statespace | 4.0 | 0 | 7.0 | 2025-05-15T16:30:00.000Z |
| 12 | Among Us | 2023.11.28 | 2018-06-15 | PC | 25 | ["Party","Social Deduction"] | https://krisyotam.com/cdn/images/games/among-us.jpg | InnerSloth | InnerSloth | 3.5 | 0 | 6.5 | 2025-03-10T19:45:00.000Z |
| 13 | Beat Star | 1.0 | 2021-09-01 | PC | 15 | ["Rhythm","Music"] | https://krisyotam.com/cdn/images/games/beatstar.jpg | Space Ape Games | Space Ape Games | 4.0 | 0 | 7.2 | 2025-04-22T14:15:00.000Z |
| 14 | Geometry Dash | 2.2 | 2013-08-13 | PC | 80 | ["Platformer","Rhythm"] | https://krisyotam.com/cdn/images/games/geometry-dash.jpg | RobTop Games | RobTop Games | 4.5 | 1 | 8.5 | 2025-05-18T20:30:00.000Z |
| 15 | Kovaaks | 1.0 | 2018-04-03 | PC | 120 | ["Shooter","Training"] | https://krisyotam.com/cdn/images/games/kovaaks.jpg | KovaaK | KovaaK | 4.5 | 1 | 8.0 | 2025-05-20T17:00:00.000Z |
| 16 | League of Legends | 14.10 | 2009-10-27 | PC | 350 | ["MOBA","Strategy"] | https://krisyotam.com/cdn/images/games/league-of-legends.jpg | Riot Games | Riot Games | 4.5 | 1 | 8.8 | 2025-05-25T22:15:00.000Z |
| 17 | Lethal Company | 1.0 | 2023-10-23 | PC | 40 | ["Horror","Co-op"] | https://krisyotam.com/cdn/images/games/lethal-company.jpg | Zeekerss | Zeekerss | 4.0 | 0 | 7.8 | 2025-04-08T21:45:00.000Z |
| 18 | Lost Ark | 1.0 | 2022-02-11 | PC | 180 | ["MMORPG","Action RPG"] | https://krisyotam.com/cdn/images/games/lost-ark.jpg | Smilegate RPG | Amazon Games | 4.0 | 0 | 7.5 | 2025-02-14T16:30:00.000Z |
| 19 | Phantasy Star Online 2 | 1.0 | 2020-05-27 | PC | 90 | ["MMORPG","Action RPG"] | https://krisyotam.com/cdn/images/games/phantasy-star-online-2.webp | Sega | Sega | 3.5 | 0 | 6.8 | 2025-01-20T18:00:00.000Z |
| 20 | Terraria | 1.4.4 | 2011-05-16 | PC | 220 | ["Sandbox","Adventure"] | https://krisyotam.com/cdn/images/games/terraria.jpg | Re-Logic | Re-Logic | 5.0 | 1 | 9.1 | 2025-05-12T15:45:00.000Z |
| 21 | VR Chat | 1.0 | 2017-02-01 | PC | 35 | ["Social","VR"] | https://krisyotam.com/cdn/images/games/vrchat.jpg | VRChat Inc. | VRChat Inc. | 3.5 | 0 | 6.0 | 2025-03-25T20:00:00.000Z |
| 22 | White Tiles 4 | 1.0 | 2021-01-01 | PC | 12 | ["Rhythm","Casual"] | https://krisyotam.com/cdn/images/games/white-tiles-4.png | Umbrella Games | Umbrella Games | 3.0 | 0 | 5.5 | 2025-02-05T12:30:00.000Z |
| 23 | Clash Royale | 1.0 | 2016-03-02 | PC | 65 | ["Strategy","Card Game"] | https://krisyotam.com/cdn/images/games/clash-royale.jpg | Supercell | Supercell | 4.0 | 0 | 7.3 | 2025-05-10T13:20:00.000Z |
| 24 | Clash Of Clans | 1.0 | 2012-08-02 | PC | 150 | ["Strategy","Base Building"] | https://krisyotam.com/cdn/images/games/clash-of-clans.jpg | Supercell | Supercell | 4.0 | 0 | 7.6 | 2025-05-08T19:45:00.000Z |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE games (
id INTEGER PRIMARY KEY,
name TEXT NOT NULL,
version TEXT,
release_date TEXT,
console TEXT,
hours_played INTEGER DEFAULT 0,
genres TEXT, -- JSON array
cover_image TEXT,
developer TEXT,
publisher TEXT,
rating REAL,
favorite INTEGER DEFAULT 0, -- boolean as 0/1
favorite_weight REAL,
date_last_played TEXT
);
CREATE INDEX idx_games_favorite ON games(favorite);
CREATE INDEX idx_games_console ON games(console);