Alle diskussioner > Steam-fora > Help and Tips > Trådoplysninger
DaMightyLamb 23. okt. 2018 kl. 9:29
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!
< >
Viser 1-4 af 4 kommentarer
cSg|mc-Hotsauce 23. okt. 2018 kl. 9:31 
https://steamdb.info/

https://steamcharts.com/

Or just use the Steam store...?

:qr:
Sidst redigeret af cSg|mc-Hotsauce; 23. okt. 2018 kl. 9:32
Kargor 23. okt. 2018 kl. 10:04 
Steam does not have a documented API, so you're just making things hard for you.
MalikQayum 23. okt. 2018 kl. 10:20 
Oprindeligt skrevet af 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.

Sidst redigeret af MalikQayum; 23. okt. 2018 kl. 10:25
Nescius 26. apr. 2020 kl. 14:11 
Oprindeligt skrevet af 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.
< >
Viser 1-4 af 4 kommentarer
Per side: 1530 50

Alle diskussioner > Steam-fora > Help and Tips > Trådoplysninger
Dato opslået: 23. okt. 2018 kl. 9:29
Indlæg: 4