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

FieldTypeDescription
dataobjectContainer object for cards data

Data object

FieldTypeDescription
gamesnumberTotal number of games with trading cards
cardsnumberTotal number of normal trading cards
foilsnumberTotal number of foil trading cards
setsarrayArray of card set objects

Card set object

FieldTypeDescription
appidstringThe Steam application ID
gamestringName of the game
normalobjectNormal cards information object
foilobjectFoil cards information object

Card type object (normal/foil)

FieldTypeDescription
countnumberNumber of cards in the set
pricenumberTotal price for the complete set in USD
avgnumberAverage price per card in USD
namesarrayArray 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)"
          ]
        }
      },
    ]
  }
}