Market

Asset Infos

Get detailed asset information for items including tags, icons, descriptions, and trade/market status.

Endpoint

This endpoint returns all the asset information for items that belong to the specified application. The response is paginated using cursor-based pagination and includes detailed item metadata such as icons, tags, descriptions, and trade/market status.

GET   /market/items/{ AppID }/assetinfos?api_key={ YourSecretAPIKey }

Required parameters

AppID
number
Identifier of the application which item asset infos you want to fetch.
YourSecretAPIKey
string
A unique identifier that allows developers to access the Steam Web API.

Optional query parameters

cursor
string
The cursor for pagination. Use the cursor value from the previous response to fetch the next page of results.

Response fields

FieldTypeDescription
totalnumberTotal number of items available
resultsarrayArray of asset info objects

Asset info object

FieldTypeDescription
market_hash_namestringThe market hash name of the item
name_colorstringHex color code for the item name
icon_urlstring | nullURL path to the item icon (append to Steam CDN base URL)
icon_url_largestringURL path to the large item icon
icon_drag_urlstringURL path to the drag icon
background_colorstringHex color code for the item background
typestringItem type (e.g. "Workshop Item", empty string for default items)
tradablebooleanWhether the item can be traded
marketablebooleanWhether the item can be sold on the market
commoditybooleanWhether the item is a commodity
descriptionsarrayArray of description objects with type and value fields
actionsarrayArray of action objects (e.g. workshop links)
market_actionsarrayArray of market-specific actions
owner_actionsarrayArray of owner-specific actions
tagsarrayArray of tag objects with category and name information
market_tradable_restrictionnumberDays until item is tradable (optional)

Tag object

FieldTypeDescription
categorystringTag category identifier (e.g. "itemclass", "steamcat")
internal_namestringInternal name of the tag
category_namestringDisplay name of the category (e.g. "Item Type", "Category")
namestringDisplay name of the tag (e.g. "Pants", "Clothing")

Response example

Example output for this endpoint. For brevity's sake, some objects and arrays were omitted.

response.json
{
  "total": 4997,
  "results": [
    {
      "market_hash_name": "Snow Camo Pants",
      "icon_url": "6TMcQ7eX6E0EZl2byXi7vaVKyDk_zQLX05x6eLCFM9neAckxGDf7qU2e2gu64OnAeQ7835Je5GDEfCk4nReh8DEiv5daPaA9rLc0Q_C_vCAlyHc",
      "name_color": "a7ec2e",
      "icon_url_large": "6TMcQ7eX6E0EZl2byXi7vaVKyDk_zQLX05x6eLCFM9neAckxGDf7qU2e2gu64OnAeQ7835Je5GDEfDY0jhyo8DEiv5daPaA9rLc0Q_C_ljkqJtI",
      "icon_drag_url": "",
      "background_color": "42413e",
      "type": "",
      "tradable": true,
      "marketable": true,
      "commodity": true,
      "descriptions": [
        {
          "type": "bbcode",
          "value": "20211028T174807Z"
        }
      ],
      "actions": [],
      "market_actions": [],
      "owner_actions": [],
      "tags": [
        {
          "category": "itemclass",
          "internal_name": "pants",
          "category_name": "Item Type",
          "name": "Pants"
        },
        {
          "category": "steamcat",
          "internal_name": "steamcat.clothing",
          "category_name": "Category",
          "name": "Clothing"
        }
      ]
    },
    {
      "market_hash_name": "Tundra Bolt Rifle",
      "icon_url": "6TMcQ7eX6E0EZl2byXi7vaVKyDk_zQLX05x6eLCFM9neAckxGDf7qU2e2gu64OnAeQ7835Je5WPDfCk4nReh8DEiv5ddOao8r7cwQPC9L2D6Eyw",
      "name_color": "f15840",
      "icon_url_large": "6TMcQ7eX6E0EZl2byXi7vaVKyDk_zQLX05x6eLCFM9neAckxGDf7qU2e2gu64OnAeQ7835Je5WPDfDY0jhyo8DEiv5ddOao8r7cwQPC9RMxla2U",
      "icon_drag_url": "",
      "background_color": "42413e",
      "type": "Workshop Item",
      "tradable": true,
      "marketable": true,
      "commodity": true,
      "descriptions": [
        {
          "type": "bbcode",
          "value": "20211028T174833Z"
        }
      ],
      "actions": [
        {
          "name": "#Workshop_Commerce_ViewItem",
          "link": "https://steamcommunity.com/sharedfiles/filedetails/?id=518199212"
        }
      ],
      "market_actions": [],
      "owner_actions": [],
      "tags": [
        {
          "category": "itemclass",
          "internal_name": "rifle.bolt",
          "category_name": "Item Type",
          "name": "Bolt Rifle"
        },
        {
          "category": "steamcat",
          "internal_name": "steamcat.weapon",
          "category_name": "Category",
          "name": "Weapon"
        }
      ]
    },
    {
      "market_hash_name": "Wood",
      "icon_url": "6TMcQ7eX6E0EZl2byXi7vaVKyDk_zQLX05x6eLCFM9neAckxGDf7qU2e2gu64OnAeQ7835Ja5WrGfCk4nReh8DEiv5daMas9pL0_Q_-4MRzwMHo",
      "name_color": "dddddd",
      "icon_url_large": "6TMcQ7eX6E0EZl2byXi7vaVKyDk_zQLX05x6eLCFM9neAckxGDf7qU2e2gu64OnAeQ7835Ja5WrGfDY0jhyo8DEiv5daMas9pL0_Q_-4dB9CJ7M",
      "icon_drag_url": "",
      "background_color": "42413e",
      "type": "",
      "tradable": true,
      "marketable": true,
      "commodity": true,
      "descriptions": [
        {
          "type": "bbcode",
          "value": "20251113T204940Z"
        }
      ],
      "actions": [],
      "market_actions": [],
      "owner_actions": [],
      "tags": [
        {
          "category": "steamcat",
          "internal_name": "steamcat.resource",
          "category_name": "Category",
          "name": "Resource"
        }
      ]
    },
    {
      "market_hash_name": "Box",
      "icon_url": null
    }
  ]
}