How to fetch total market value of csgo market

Viewed 26
1 Answers

Thank you @NewbieCody for linking me to the answer.

Example:

data = requests.get("https://steamcommunity.com/market/search/render/?search_descriptions=0&sort_column=name&sort_dir=desc&appid=730&norender=1&count=100&start=0")
json_data = json.loads(data.text)
print(json_data)

Every page returns 100 items so I itinerated over [the number of pages]/100 adding 100 every time to the start parameter and extracted the prices to make the graph.

Related