Market

Cards

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 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)"
          ]
        }
      },
    ]
  }
}