For a project I want to display data about Steam games, so I'm trying to retrieve data from the Steam store. For apps and packages there is a really nice API to use. (Example: https://store.steampowered.com/api/appdetails?appids=905370&filters=&cc=US&l=english)
, but there is no way to get data for bundles. So I have to retrieve each bundle individually from the store (by scraping). (Example: https://store.steampowered.com/bundle/1232/Resident_Evil_456/).
I know how to scrape, but the problem is getting data from other locations, means prices from other countries. I tried everything, but I can't get other currencies. There is a "steamCountry" parameter in the cookie header like this: steamCountry=DE%7Ca430f80515ce15e271873b3b1ed6a207;, but when I change this parameter to US or other countries, just nothing changes. I'm afraid they are using geolocation by IP, but then this parameter wouldn't make sense.
Does anyone know how to retrieve other currencies/countries, besides using proxies from those locations.
Thanks!