Skip to content

Get Market Item Orders Histogram

STM edited this page Mar 2, 2024 · 5 revisions

GET /market/itemordershistogram

Rate limits

10 unique items query per hour (can query the same 10 items more that)

Request

Authenticated: TODO

Method: GET

Host: steamcommunity.com

Path: /market/itemordershistogram

Query Parameters:

Name Type Required Description
norender string false the request returns JSON only if set to 1
country string TODO TODO
language string TODO TODO
currency string TODO TODO
item_nameid string true numeric ID of the item queried
two_factor string TODO TODO

Response

200 OK

Name Type Description
success number TODO
sell_order_count number TODO
sell_order_price object TODO
sell_order_table object TODO
buy_order_count string TODO
buy_order_price string TODO
buy_order_table[] array TODO
buy_order_table[].price string TODO
buy_order_table[].quantity string TODO
highest_buy_order string TODO
lowest_sell_order object TODO
buy_order_graph[] array TODO
buy_order_graph[].0 number TODO
buy_order_graph[].1 number TODO
buy_order_graph[].2 string TODO
sell_order_graph[] array TODO
graph_max_y number TODO
graph_min_x number TODO
graph_max_x number TODO
price_prefix string TODO
price_suffix string TODO

Example

GET https://steamcommunity.com/market/itemordershistogram?norender=1&country=NL&language=english&currency=3&item_nameid=176000861&two_factor=0
{
    "success": 1,
    "sell_order_count": 0,
    "sell_order_price": null,
    "sell_order_table": null,
    "buy_order_count": "2",
    "buy_order_price": "0,03€",
    "buy_order_table": [
        {
            "price": "0,03€",
            "quantity": "2"
        }
    ],
    "highest_buy_order": "3",
    "lowest_sell_order": null,
    "buy_order_graph": [
        [
            0.03,
            2,
            "2 buy orders at 0,03€ or higher"
        ]
    ],
    "sell_order_graph": [],
    "graph_max_y": 2,
    "graph_min_x": 0.03,
    "graph_max_x": 0,
    "price_prefix": "",
    "price_suffix": ""
}
Clone this wiki locally