Skip to content

Uses the SteamLadder API from SteamLadder.com to create an uutomatically updated list of top Steam accounts by game count for use in scripts that use the steam api, in my case specifically for achievement info

License

Notifications You must be signed in to change notification settings

KaladinDMP/steam-top-accounts-data

Repository files navigation

Top Steam Accounts by Game Count

This repository contains the top 20 Steam accounts ranked by number of games owned.

Files

  • steam_ids_only.txt - Just the Steam ID 64s, one per line
  • top_steam_accounts.json - Full profile data

Last Updated

Sun Jan 4 03:50:25 UTC 2026

Note

This data is collected from SteamLadder and is updated automatically every Sunday. The Steam accounts listed are publicly available and ranked by the number of games in their library.

Using This Data

You can download the steam_ids_only.txt file directly:

https://raw.githubusercontent.com/KaladinDMP/steam-top-accounts-data/main/steam_ids_only.txt

Or use it in your script:

import requests

# Download the file
url = "https://raw.githubusercontent.com/KaladinDMP/steam-top-accounts-data/main/steam_ids_only.txt"
response = requests.get(url)
steam_ids = response.text.strip().split('\n')

# Process the IDs
for steam_id in steam_ids:
    print(f"Processing: {steam_id}")

About

Uses the SteamLadder API from SteamLadder.com to create an uutomatically updated list of top Steam accounts by game count for use in scripts that use the steam api, in my case specifically for achievement info

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •  

Languages