Search the Community
Showing results for tags 'steammarket'.
-
I am currently trying to get some Steam Market listings in my program, but am running into the following problem: When I send the request to this Webpage "https://steamcommunity.com/market/listings/730/AK-47 | Asiimov (Field-Tested)" with this example code: import axios from "axios"; const url = "https://steamcommunity.com/market/listings/730/AK-47%20%7C%20Asiimov%20%28Field-Tested%29"; import axios from "axios"; axios.get(url, { headers }) .then(response => { console.log("Response:", response.data); }) .catch(error => { console.error("Error:", error); }); I get an HTML page from which I can extract the data in a Variable. However, when I use javascript, only general information is displayed, but not the converted price, which is important for me, because otherwise the items are in any currency. In the code I am also logged in with SteamUser in the same account with which I receive the covered price as a variable via the browser. Do you Guys know, what i need to change, to also get the converted Price?