Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Steam Market API?

Tags:

I know that there's a Steam API allowing me to use data from Steam Community.
My question is, does anyone know if there's a Steam Market API?
For example, I want to get the current price of an item in the Steam Market.

I've googled and haven't found anything yet.
I'd be glad to have your help.

like image 680
Ariel Weinberger Avatar asked Oct 02 '14 21:10

Ariel Weinberger


People also ask

Is there a steam market API?

There is not such API for now.

Is Steam API free?

Steam Web APIs.Valve makes the Steam Web API available free, and you understand that Valve may change or terminate the Steam Web API entirely or your access in particular. Valve may identify new releases from time to time at this link, and may require you to use the most recent version.

Can I use steam market?

Your account must have a successful purchase older than 7 days, but not older than a year in order to access the Community Market. The purchase of wallet funds, games, DLCs and software meet this requirement.


2 Answers

I could not find any documentation, but I use:

http://steamcommunity.com/market/priceoverview/?appid=730&currency=3&market_hash_name=StatTrak%E2%84%A2 M4A1-S | Hyper Beast (Minimal Wear) 

to return a JSON. At time of writing, it returns:

{"success":true,"lowest_price":"261,35€ ","volume":"11","median_price":"269,52€ "} 

You can change the currency. 1 is USD, 3 is euro but there are probably others.

like image 109
kiwixz Avatar answered Sep 28 '22 11:09

kiwixz


A better search api that can give you all the results for a game, example using pubg which only has 272 items, if your game has more try changing the count parameter at the end

https://steamcommunity.com/market/search/render/?search_descriptions=0&sort_column=default&sort_dir=desc&appid=578080&norender=1&count=500 
like image 36
Captnwalker1 Avatar answered Sep 28 '22 11:09

Captnwalker1