Items
Item Details
Get full details for a specific Steam market item including metadata, histogram, and price history.
Endpoint
This endpoint returns comprehensive data for a specific Steam market item, including the item record, metadata, latest buy/sell histogram, and price history.
GET /v2/steam/items/{appId}/{marketHashName}
Required parameters
appId
number
The Steam application ID the item belongs to.
marketHashName
string
The URL-encoded market hash name of the item.
Authentication
Include your API key as the x-api-key request header.
x-api-key: YourSecretAPIKey
Response fields
| Field | Type | Description |
|---|---|---|
item | object | The item record |
meta | object|null | Item metadata (images, tags, descriptions) |
histogram | object|null | Latest buy/sell order histogram |
priceHistory | object|null | Historical price data |
Item object
| Field | Type | Description |
|---|---|---|
_id | string | Document ID |
nameId | number|null | Steam market name ID |
appId | number | Steam application ID |
marketName | string | Market display name |
marketHashName | string | URL-encoded market name |
classId | number|null | Steam class ID |
instanceId | number|null | Steam instance ID |
isGlitched | boolean | Whether the item listing is glitched |
metaUpdatedAt | string|null | ISO timestamp of last metadata update |
histogramUpdatedAt | string|null | ISO timestamp of last histogram update |
priceHistoryUpdatedAt | string|null | ISO timestamp of last price history update |
Meta object
| Field | Type | Description |
|---|---|---|
appId | number | Steam application ID |
contextId | number | Steam inventory context ID |
classId | number | Steam class ID |
instanceId | number | Steam instance ID |
image | object | Item image URLs |
image.iconUrl | string|null | Icon image URL |
image.iconUrlLarge | string|null | Large icon image URL |
image.iconDragUrl | string|null | Drag icon image URL |
color | object | Item color information |
color.name | string|null | Name color hex code |
color.background | string|null | Background color hex code |
flags | object | Item flags |
flags.commodity | boolean | Whether the item is a commodity |
flags.marketable | boolean | Whether the item is marketable |
flags.tradable | boolean | Whether the item is tradable |
descriptions | array | Array of description objects from Steam |
tags | array | Array of tag objects from Steam |
Histogram object
| Field | Type | Description |
|---|---|---|
buyOrders | array | Array of buy order price points |
buyOrders[].price | number | Buy order price |
buyOrders[].quantity | number | Number of buy orders at this price |
sellOrders | array | Array of sell listing price points |
sellOrders[].price | number | Sell listing price |
sellOrders[].quantity | number | Number of sell listings at this price |
date | string | ISO timestamp of when the histogram was recorded |
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": {
"item": {
"_id": "6789abcdef012345",
"nameId": 176096978,
"appId": 730,
"marketName": "AK-47 | Redline (Field-Tested)",
"marketHashName": "AK-47 %7C Redline %28Field-Tested%29",
"classId": 310777487,
"instanceId": 480085569,
"isGlitched": false,
"metaUpdatedAt": "2025-01-15T00:00:00.000Z",
"histogramUpdatedAt": "2025-01-15T00:00:00.000Z",
"priceHistoryUpdatedAt": "2025-01-15T00:00:00.000Z"
},
"meta": {
"appId": 730,
"contextId": 2,
"classId": 310777487,
"instanceId": 480085569,
"image": {
"iconUrl": "-9a81dlWLwJ2UXnc...",
"iconUrlLarge": "-9a81dlWLwJ2UXnc...",
"iconDragUrl": null
},
"color": {
"name": "D2D2D2",
"background": null
},
"flags": {
"commodity": false,
"marketable": true,
"tradable": true
},
"descriptions": [],
"tags": []
},
"histogram": {
"buyOrders": [
{ "price": 1050, "quantity": 245 },
{ "price": 1049, "quantity": 12 }
],
"sellOrders": [
{ "price": 1089, "quantity": 3 },
{ "price": 1090, "quantity": 7 }
],
"date": "2025-01-15T12:00:00.000Z"
},
"priceHistory": {
"data": [
{ "price": 1075, "quantity": 150, "date": "2025-01-14T00:00:00.000Z" },
{ "price": 1062, "quantity": 142, "date": "2025-01-13T00:00:00.000Z" }
]
}
}
}