Market

Apps

Get a list of all Steam applications in the SteamApis database with basic metadata.

Endpoint

This endpoint fetches all apps in our database.

GET   /market/apps?api_key={ YourSecretAPIKey }

Parameters

YourSecretAPIKey
string
A unique identifier that allows developers to access the Steam Web API.

Response fields

The response is an array of app objects.

App object

FieldTypeDescription
appIDnumberThe Steam application ID
namestringName of the application
is_freebooleanWhether the application is free to play
price_overviewobjectPricing information object

Price overview object

FieldTypeDescription
final_formattedstringFinal price as formatted string (e.g. "$14.99")
initial_formattedstringInitial price as formatted string (empty if no discount)
discount_percentnumberDiscount percentage (0 if no discount)
finalnumberFinal price in cents
initialnumberInitial price in cents
currencystringCurrency code (e.g. "USD")

Response example

Example output for this endpoint.

response.json
[
  {
    "appID": 250700,
    "name": "Super Time Force Ultra",
    "is_free": false,
    "price_overview": {
      "final_formatted": "$14.99",
      "initial_formatted": "",
      "discount_percent": 0,
      "final": 1499,
      "initial": 1499,
      "currency": "USD"
    }
  },
  {
    "appID": 531490,
    "name": "Golden Swords",
    "is_free": false,
    "price_overview": {
      "final_formatted": "$3.99",
      "initial_formatted": "",
      "discount_percent": 0,
      "final": 399,
      "initial": 399,
      "currency": "USD"
    }
  },
  {
    "appID": 10500,
    "name": "Total War: EMPIRE – Definitive Edition",
    "is_free": false,
    "price_overview": {
      "final_formatted": "$24.99",
      "initial_formatted": "",
      "discount_percent": 0,
      "final": 2499,
      "initial": 2499,
      "currency": "USD"
    }
  },
]