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

FieldTypeDescription
countnumberTotal number of monitored items
statsobjectAggregated statistics object
updated_atnumberTimestamp of when the data was last updated (Unix milliseconds)

Stats object

FieldTypeDescription
totalSpentnumberTotal USD value spent across all monitored items
totalCountnumberTotal number of items sold
totalAppsnumberTotal 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
}