Items

Item Prices

Get historical price data for a specific Steam market item.

Endpoint

This endpoint returns the historical price data for a specific item, including daily sale prices and quantities.

GET   /v2/steam/items/{itemId}/prices

Required parameters

itemId
string
The item document ID (the _id field from the list items or item details endpoint).

Authentication

Include your API key as the x-api-key request header.

x-api-key: YourSecretAPIKey

Response fields

FieldTypeDescription
resultobject|nullThe price history object, or null if not found

Price history object

FieldTypeDescription
dataarrayArray of historical price points
data[].pricenumberSale price
data[].quantitynumberNumber of sales
data[].datestringISO timestamp of the sale date

Response example

response.json
{
  "success": true,
  "result": {
    "data": [
      { "price": 1075, "quantity": 150, "date": "2025-01-15T00:00:00.000Z" },
      { "price": 1062, "quantity": 142, "date": "2025-01-14T00:00:00.000Z" },
      { "price": 1080, "quantity": 138, "date": "2025-01-13T00:00:00.000Z" }
    ]
  }
}