Skip to content

Latest commit

 

History

History
65 lines (43 loc) · 2.78 KB

README.md

File metadata and controls

65 lines (43 loc) · 2.78 KB

Steam item name ids

license steam

List of SteamMarket item name id. Required to get the itemordershistogram of an item.

Warning

Does not include all items.

Apps:

  • CS2 (ex. CSGO)
  • TF2

Usage

Structure

Each file is a dump of a JSON object with market hash name as key and item_nameid as value.

{ "market hash name": 1234567 }

How to get

Path

GET https://steamcommunity.com/market/itemordershistogram

Params:

Parameter name Type Reference/Description
country string Country code like "UA", "PL"
language string Language enum
currency integer Currency enum
item_nameid integer 👈
norender integer/boolean Whether to exclude html from the response

Example params object:

{
  country: "UA",
  language: "ukrainian",
  currency: 18, // Ukrainian Hryvnia
  item_nameid: 123456, // <- item name id
  norender: 1, // exclude
}

Example itemordershistogram of AK-47 | Slate (Field-Tested) request URL:

https://steamcommunity.com/market/itemordershistogram?country=UA&language=ukrainian&currency=18&item_nameid=176241017&norender=1

TODO 📃

  • github action that validates json files for pull requests
  • github action that creates csv files from originated json files for each pull request/commit

See also 👀