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
| Field | Type | Description |
|---|---|---|
result | object|null | The price history object, or null if not found |
Price history object
| Field | Type | Description |
|---|---|---|
data | array | Array of historical price points |
data[].price | number | Sale price |
data[].quantity | number | Number of sales |
data[].date | string | ISO 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" }
]
}
}