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

FieldTypeDescription
resultobject|nullThe item meta object, or null if not found

Meta object

FieldTypeDescription
appIdnumberSteam application ID
contextIdnumberSteam inventory context ID
classIdnumberSteam class ID
instanceIdnumberSteam instance ID
imageobjectItem image URLs
image.iconUrlstring|nullIcon image URL
image.iconUrlLargestring|nullLarge icon image URL
image.iconDragUrlstring|nullDrag icon image URL
colorobjectItem color information
color.namestring|nullName color hex code
color.backgroundstring|nullBackground color hex code
flagsobjectItem flags
flags.commoditybooleanWhether the item is a commodity
flags.marketablebooleanWhether the item is marketable
flags.tradablebooleanWhether the item is tradable
descriptionsarrayArray of description objects from Steam
tagsarrayArray 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": []
  }
}