【发布时间】:2021-01-26 22:56:08
【问题描述】:
我想获取特定 Steam 游戏的价格历史记录。
我知道我可以像这样获得游戏的当前价格信息(以传送门 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-web-api