Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Get steam item prices

I was wondering if there is any efficient way to get the prices of an item on steam. I found :

http://steamcommunity.com/market/priceoverview/?country=DE&currency=3&appid=730&market_hash_name=P90%20%7C%20Asiimov%20%28Factory%20New%29

You get JSON with only "lowest_price". How I can get JSON with 3 lowest prices ?

like image 912
Bart Avatar asked Oct 22 '14 17:10

Bart


People also ask

Is there a steam market API?

Steam Cloud API for use with cross-platform saves. Provides restricted access to the Steam Market for partners. Additional Steam Economy methods that provide access to Steam Trading. The primary interface to interact with the Steam Economy.

How much does steam take from item sales?

The fee is currently 5% (with a minimum fee of $0.01). This fee may be increased or decreased in the future. Who pays the "Steam Transaction Fee"? The buyer pays the Steam Transaction Fee.

What is Steam inventory Helper?

Steam inventory helper is a free browser extension for Steam Install SIH. Paint Seed. Phase. Float. World market's best price.


1 Answers

I use

render?start=0&count=10&currency=3&language=english&format=json

currency: 1 for USD, 2 for GBP, 3 for EUR, 5 for RUB

http://steamcommunity.com/market/listings/730/StatTrak%E2%84%A2%20AK-47%20%7C%20Blue%20Laminate%20%28Factory%20New%29/render?start=0&count=10&currency=3&language=english&format=json

like image 134
Bart Avatar answered Sep 18 '22 23:09

Bart