Skip to content

Get Market Price Overview

Blake Porter edited this page Jul 20, 2024 · 8 revisions

GET /market/priceoverview

Rate limits

20 / Per minute

1000 / Per day

Request

Authenticated: No

Method: GET

Host: steamcommunity.com

Path: /market/priceoverview/

Query Parameters:

Name Type Required Description
country string No Country code
currency string No Currency (default: $)
appid string Yes Steam App ID
market_hash_name string Yes Item Name

Response

200 OK

Name Type Description
success boolean Whether or not the request was successful
lowest_price string The current lowest price at which the item is listed
volume string The number of items that has been sold in the last 24 hours (does not exist if volume = 0)
median_price string The current median price of current listings

Example

GET https://steamcommunity.com/market/priceoverview/?country=NL&currency=3&appid=578080&market_hash_name=Raglan%20T-shirt%20%28Red-White%29
{
    "success": true,
    "lowest_price": "0,03€",
    "volume": "435",
    "median_price": "0,01€"
}
Clone this wiki locally