POST
/
v1
/
account.listLeaderboardHistory
Get leaderboard history
curl --request POST \
  --url https://api.steamsets.com/v1/account.listLeaderboardHistory \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "id": {
    "accountId": 1,
    "steamId64": "<string>"
  },
  "vanity": {
    "type": "steam",
    "value": "<string>"
  }
}'
{
  "$schema": "https://api.steamsets.com/schemas/V1AccountListLeaderboardHistoryResponseBody.json",
  "histories": [
    {
      "date": "2023-11-07T05:31:56Z",
      "leaderboard": "apps",
      "rank": 123,
      "score": 123
    }
  ]
}
This endpoint supports API key authentication for external integrations

API Access

This endpoint can be accessed using:
  • API Keys: For external applications and integrations
  • User Sessions: For web application access
See our API documentation for authentication details.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Response

OK

The response is of type object.