使用Steam API的Steam游戏价格历史记录



我想了解特定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": "$9.99"
}
}
}
}

并且存在https://steamcommunity.com/market/pricehistory来获得游戏的特定项目的价格历史。

有没有办法获取游戏本身的价格历史记录?

没有直接来自Steam的API价格历史记录。

您需要使用第三方供应商或自己记录价格。我认为任何交易都可能有帮助。

最新更新