GraphQL API
Interfaces
SteamItemInterface
type SteamItemInterface {
# The ID of the app which owns the item
appId: String! # 730
# The first half of the item cache identifier
classId: String! # 5568220466
# The second half of the item cache identifier
instanceId: String! # 188530139
# Normal icon
icon: String # https:\/\/steamcdn-a.akamaihd.net\/apps\/730\/icons\/econ\/default_generated\/weapon_ak47_cu_ak47_rubber_light_large.5836c38d3037a5a1f90ffdc8c9d0b94367ca8efd.png
# Large icon
iconLarge: String # https:\/\/steamcdn-a.akamaihd.net\/apps\/730\/icons\/econ\/default_generated\/weapon_ak47_cu_ak47_rubber_light_large.5836c38d3037a5a1f90ffdc8c9d0b94367ca8efd.png
# true if the item can be traded, false if not
isTradeable: Boolean! # true
# DEPRECATED
isMarketable: Boolean!
# How many days for which the item will be untradable after being sold on the market.
marketTradeableRestriction: Int! # 7
# The item's universal market name. This identifies the item's market listing page.
nameHash: String! # Sealed Graffiti | Loser (SWAT Blue)
# The item's display name.
name: String! # Sealed Graffiti | Loser (SWAT Blue)
# Updated at
updatedAt: DateTime! # 2023-11-29T23:33:27+0000
# The item's description.
description: String # Some description
# Steam price
steamPrice: Money
}