Items
Item Meta
Get metadata for a specific Steam market item including images, tags, and trade flags.
Endpoint
This endpoint returns the metadata for a specific item, including images, colors, trade/market flags, descriptions, and tags.
GET /v2/steam/items/{itemId}/meta
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 item meta object, or null if not found |
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 |
Response example
response.json
{
"success": true,
"result": {
"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": []
}
}