Skip to content

Get Market Price History

Sam edited this page Oct 27, 2024 · 6 revisions

GET /market/pricehistory

Rate limits

Unknown

Request

Authenticated: No

Method: GET

Host: steamcommunity.com

Path: /market/pricehistory/

Query Parameters:

Name Type Required Description
appid number Yes The Steam AppID
market_hash_name string Yes Item name on Steam Market e.g. AWP | Dragon Lore (Factory New). Dont forget to URL Encode the item name if you wish to access this endpoint in you browser search bar (view Example section below)

Response

200 OK

Name Type Description
success boolean Shows wether given Item was found
price_prefix string TODO
price_suffix string Currency Symbol e.g. "€"
prices[] array List of all price history records. These show the exact data you can view by manually hovering your mouse on the price history graph in the normal market page
prices[].0 string UTC Time of sales record
prices[].1 number Price the item was sold at
prices[].2 string Volume (amount) of items sold at that time for the price mentioned above. (This is probably an approximation of how many items were sold around the time and around the price mentioned above)

Example

Price history for item AWP | Dragon Lore (Factory New)

GET https://steamcommunity.com/market/pricehistory?appid=730&market_hash_name=AWP%20%7C%20Dragon%20Lore%20%28Factory%20New%29
{
  "success": true,
  "price_prefix": "",
  "price_suffix": "",
  "prices": [
    [
      "Jul 02 2014 01: +0",
      283.697,
      "2"
    ],
    [
      ... (All the records inbetween)
    ],
    [
      "May 19 2020 01: +0",
      1621.348,
      "1"
    ],
    [
      "Aug 13 2020 01: +0",
      1625.398,
      "1"
    ],
    [
      "Sep 28 2020 01: +0",
      1690.921,
      "1"
    ],
    [
      "Mar 16 2023 01: +0",
      1662.859,
      "1"
    ]
  ]
}
Clone this wiki locally