Market
Statistics
Get Steam market statistics including total monitored items, spending data, and sales counts.
Endpoint
This endpoint fetches the data that we display on the frontpage.
GET /market/stats?api_key={ YourSecretAPIKey }
Required parameters
YourSecretAPIKey
string
A unique identifier that allows developers to access the Steam Web API.
Response fields
| Field | Type | Description |
|---|---|---|
count | number | Total number of monitored items |
stats | object | Aggregated statistics object |
updated_at | number | Timestamp of when the data was last updated (Unix milliseconds) |
Stats object
| Field | Type | Description |
|---|---|---|
totalSpent | number | Total USD value spent across all monitored items |
totalCount | number | Total number of items sold |
totalApps | number | Total number of applications being monitored |
Response example
Example output for this endpoint.
response.json
{
"count": 470623,
"stats": {
"totalSpent": 4248735308.677093,
"totalCount": 5490630468,
"totalApps": 9753
},
"updated_at": 1611424838627
}