使用 Steam 的 Steam 游戏价格历史记录 API
Steam game price history using Steam API
我想获取特定 Steam 游戏的历史价格。
我知道我可以获得这样的游戏的当前价格信息(以 Portal 2 为例):
GET https://store.steampowered.com/api/appdetails?filters=price_overview&appids=620
{
"620": {
"success": true,
"data": {
"price_overview": {
"currency": "USD",
"initial": 999,
"final": 999,
"discount_percent": 0,
"initial_formatted": "",
"final_formatted": ".99"
}
}
}
}
还有 https://steamcommunity.com/market/pricehistory
获取游戏特定项目的价格历史记录。
有没有办法获取游戏本身的价格历史记录?
没有价格历史记录 API 直接来自 Steam。
您需要使用 third-party 供应商或自己记录价格。 Isthereanydeal 可能会有帮助。
我想获取特定 Steam 游戏的历史价格。
我知道我可以获得这样的游戏的当前价格信息(以 Portal 2 为例):
GET https://store.steampowered.com/api/appdetails?filters=price_overview&appids=620
{
"620": {
"success": true,
"data": {
"price_overview": {
"currency": "USD",
"initial": 999,
"final": 999,
"discount_percent": 0,
"initial_formatted": "",
"final_formatted": ".99"
}
}
}
}
还有 https://steamcommunity.com/market/pricehistory
获取游戏特定项目的价格历史记录。
有没有办法获取游戏本身的价格历史记录?
没有价格历史记录 API 直接来自 Steam。
您需要使用 third-party 供应商或自己记录价格。 Isthereanydeal 可能会有帮助。