I found the official API for pricing information from here
First, you can get the list of apps on Steam via this link:
http://api.steampowered.com/ISteamApps/GetAppList/v0001/
Then, get the information of an app via this API:
http://store.steampowered.com/api/appdetails?appids=[App Id]&cc=[Country Code]
[App Id] is the id of the app on Steam. [Country Code] is one of the codes defined in ISO 3166-1.
For example, you can get the information about "LEGO® STAR WARS™: The Force Awakens" via this link:
http://store.steampowered.com/api/appdetails?appids=438640&cc=tw
To get the price information, follow this hierarchy: [App Id] > data > price_overview. Here is an example of price_overview from the above link:
"price_overview":{
"currency":"TWD",
"initial":165000,
"final":115500,
"discount_percent":30
}
Note that all prices are represented in cents (not dollars) with corresponding currency and this field may be omitted if the game is free-to-play.
I recommend us to use the official API to collect the data.
I found the official API for pricing information from here
First, you can get the list of apps on Steam via this link:
http://api.steampowered.com/ISteamApps/GetAppList/v0001/
Then, get the information of an app via this API:
[App Id]is the id of the app on Steam.[Country Code]is one of the codes defined in ISO 3166-1.For example, you can get the information about "LEGO® STAR WARS™: The Force Awakens" via this link:
http://store.steampowered.com/api/appdetails?appids=438640&cc=tw
To get the price information, follow this hierarchy:
[App Id]>data>price_overview. Here is an example ofprice_overviewfrom the above link:Note that all prices are represented in cents (not dollars) with corresponding currency and this field may be omitted if the game is free-to-play.
I recommend us to use the official API to collect the data.