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
| Field | Type | Description |
|---|---|---|
appID | number | The Steam application ID |
name | string | Name of the application |
is_free | boolean | Whether the application is free to play |
price_overview | object | Pricing information object |
Price overview object
| Field | Type | Description |
|---|---|---|
final_formatted | string | Final price as formatted string (e.g. "$14.99") |
initial_formatted | string | Initial price as formatted string (empty if no discount) |
discount_percent | number | Discount percentage (0 if no discount) |
final | number | Final price in cents |
initial | number | Initial price in cents |
currency | string | Currency 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"
}
},
]