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
| Field | Type | Description |
|---|---|---|
total | number | Total number of items available |
results | array | Array of asset info objects |
Asset info object
| Field | Type | Description |
|---|---|---|
market_hash_name | string | The market hash name of the item |
name_color | string | Hex color code for the item name |
icon_url | string | null | URL path to the item icon (append to Steam CDN base URL) |
icon_url_large | string | URL path to the large item icon |
icon_drag_url | string | URL path to the drag icon |
background_color | string | Hex color code for the item background |
type | string | Item type (e.g. "Workshop Item", empty string for default items) |
tradable | boolean | Whether the item can be traded |
marketable | boolean | Whether the item can be sold on the market |
commodity | boolean | Whether the item is a commodity |
descriptions | array | Array of description objects with type and value fields |
actions | array | Array of action objects (e.g. workshop links) |
market_actions | array | Array of market-specific actions |
owner_actions | array | Array of owner-specific actions |
tags | array | Array of tag objects with category and name information |
market_tradable_restriction | number | Days until item is tradable (optional) |
Tag object
| Field | Type | Description |
|---|---|---|
category | string | Tag category identifier (e.g. "itemclass", "steamcat") |
internal_name | string | Internal name of the tag |
category_name | string | Display name of the category (e.g. "Item Type", "Category") |
name | string | Display 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
}
]
}