SteamSets
ApiAccount

Get Leaderboard History

POST
/account.v1.AccountService/GetLeaderboardHistory
/account.v1.AccountService/GetLeaderboardHistory

The Authorization access token

Authorization

Authorization
Required
Bearer <token>

In: header

Request Body

application/jsonRequired

idobject

vanityobject

curl -X POST "https://api.steamsets.com/account.v1.AccountService/GetLeaderboardHistory" \
  -H "Authorization: Bearer <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "id": {
      "accountId": 0,
      "steamId64": "stringstringstrin"
    },
    "vanity": {
      "type": "steam",
      "value": "string"
    }
  }'

OK

{
  "histories": [
    {
      "date": "2019-08-24T14:15:22Z",
      "leaderboard": "apps",
      "rank": 0,
      "score": 0
    }
  ]
}