Market
Cards
Get price details for all monitored Steam trading cards including card sets and foil variants.
Endpoint
This endpoint fetches price details for all monitored Steam cards in our database. If the item has no sales history its shown prices will be 0.
GET /market/items/cards?api_key={ YourSecretAPIKey }
This endpoint belongs under
market/items endpoint access privileges.Required parameters
YourSecretAPIKey
string
A unique identifier that allows developers to access the Steam Web API.
Response fields
| Field | Type | Description |
|---|---|---|
data | object | Container object for cards data |
Data object
| Field | Type | Description |
|---|---|---|
games | number | Total number of games with trading cards |
cards | number | Total number of normal trading cards |
foils | number | Total number of foil trading cards |
sets | array | Array of card set objects |
Card set object
| Field | Type | Description |
|---|---|---|
appid | string | The Steam application ID |
game | string | Name of the game |
normal | object | Normal cards information object |
foil | object | Foil cards information object |
Card type object (normal/foil)
| Field | Type | Description |
|---|---|---|
count | number | Number of cards in the set |
price | number | Total price for the complete set in USD |
avg | number | Average price per card in USD |
names | array | Array of card names in the set |
Response example
Example output for this endpoint. For brevity's sake, some objects and arrays were omitted.
response.json
{
"data": {
"games": 10340,
"cards": 71865,
"foils": 68739,
"sets": [
{
"appid": "220",
"game": "Half-Life 2",
"normal": {
"count": 8,
"price": 0.65,
"avg": 0.08,
"names": [
"Bring the fight to them",
"Gordon & Alyx (Trading Card)",
"Trouble Underground",
"Gordon Freeman",
"Respite",
"City 17 Metrocop",
"G",
"Alyx Vance"
]
},
"foil": {
"count": 8,
"price": 5.42,
"avg": 0.68,
"names": [
"Gordon Freeman (Foil)",
"Bring the fight to them (Foil)",
"G",
"Gordon & Alyx (Foil Trading Card)",
"Trouble Underground (Foil)",
"Respite (Foil)",
"Alyx Vance (Foil)",
"City 17 Metrocop (Foil)"
]
}
},
]
}
}