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

问题描述

我想获取特定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的价格历史记录API。

您需要使用第三方提供商或自己记录价格。 Isthereanydeal可能会有所帮助。