DaMightyLamb Oct 23, 2018 @ 9:29am
List of Steam games + their details?
I am making a program for my class that is going to be a search guide for steam games. The purpose is to have the program search through a database of games and display any title that the user inputs. They could also search by title, publisher, price, etc.

Does anyone know if their is a list that is already created before I make one of my own? Thanks!
< >
Showing 1-4 of 4 comments
cSg|mc-Hotsauce Oct 23, 2018 @ 9:31am 
https://steamdb.info/

https://steamcharts.com/

Or just use the Steam store...?

:qr:
Last edited by cSg|mc-Hotsauce; Oct 23, 2018 @ 9:32am
Kargor Oct 23, 2018 @ 10:04am 
Steam does not have a documented API, so you're just making things hard for you.
MalikQayum Oct 23, 2018 @ 10:20am 
Originally posted by Lambby:
I am making a program for my class that is going to be a search guide for steam games. The purpose is to have the program search through a database of games and display any title that the user inputs. They could also search by title, publisher, price, etc.

Does anyone know if their is a list that is already created before I make one of my own? Thanks!
sounds like you would need to use the web api:

https://partner.steamgames.com/doc/webapi/ISteamApps#GetAppList
1- store the appids in a db.
https://api.steampowered.com/ISteamApps/GetAppList/v2/


https://wiki.teamfortress.com/wiki/User:RJackson/StorefrontAPI
2- use the storefront api.
http://store.steampowered.com/api/appdetails/
Parameters: appids

example:
http://store.steampowered.com/api/appdetails/?appids=<appid1>,<appid2>
to get the data for each appid.

you could also avoid using a db and simply make the requests as the search is happening.
or maybe not entirely when i think about that as you would need to convert the name to appid and that you need a db for.

Last edited by MalikQayum; Oct 23, 2018 @ 10:25am
Nescius Apr 26, 2020 @ 2:11pm 
Originally posted by MalikQayum:
sounds like you would need to use the web api:
1- store the appids in a db.
2- use the storefront api.
http://store.steampowered.com/api/appdetails/
Man, this sucks. There's no way to get the tags a game has? For example, DOOM has FPS and Gore. With the storefront API you don't get that. With the big list you only get game names.
< >
Showing 1-4 of 4 comments
Per page: 1530 50

Date Posted: Oct 23, 2018 @ 9:29am
Posts: 4