Skip to content
GET /v1/mostplayed

Most-played chart with week-over-week movement

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/steamcharts-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

curl "https://api.oanor.com/steamcharts-api/v1/mostplayed" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/steamcharts-api/v1/mostplayed", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/steamcharts-api/v1/mostplayed");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
    "https://api.oanor.com/steamcharts-api/v1/mostplayed",
    headers={"x-oanor-key": "oanor_test_..."}
)

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "note": "Steam's most-played-games chart with week-over-week movement — each game's current rank, last week's rank, the resulting change and its peak concurrent players. Track which games are rising and falling across the platform.",
        "count": 20,
        "games": [
            {
                "name": "Counter-Strike 2",
                "rank": 1,
                "appid": 730,
                "store_url": "https://store.steampowered.com/app/730",
                "rank_change": 0,
                "peak_in_game": 1275982,
                "last_week_rank": 1
            },
            {
                "name": "PUBG: BATTLEGROUNDS",
                "rank": 2,
                "appid": 578080,
                "store_url": "https://store.steampowered.com/app/578080",
                "rank_change": 0,
                "peak_in_game": 732248,
                "last_week_rank": 2
            },
            {
                "name": "Dota 2",
                "rank": 3,
                "appid": 570,
                "store_url": "https://store.steampowered.com/app/570",
                "rank_change": 0,
                "peak_in_game": 635321,
                "last_week_rank": 3
            },
            {
                "name": "Wallpaper Engine",
                "rank": 4,
                "appid": 431960,
                "store_url": "https://store.steampowered.com/app/431960",
                "rank_change": 0,
                "peak_in_game": 111342,
                "last_week_rank": 4
            },
            {
                "name": "Apex Legends™",
                "rank": 5,
                "appid": 1172470,
                "store_url": "https://store.steampowered.com/app/1172470",
                "rank_change": 1,
                "peak_in_game": 284062,
                "last_week_rank": 6
            },
            {
                "name": "Slay the Spire 2",
                "rank": 6,
                "appid": 2868840,
                "store_url": "https://store.steampowered.com/app/2868840",
                "rank_change": -1,
                "peak_in_game": 196023,
                "last_week_rank": 5
            },
            {
                "name": "R.E.P.O.",
                "rank": 7,
                "appid": 3241660,
                "store_url": "https://store.steampowered.com/app/3241660",
                "rank_change": 22,
                "peak_in_game": 94560,
                "last_week_rank": 29
            },
            {
                "name": "Grand Theft Auto V Legacy",
                "rank": 8,
                "appid": 271590,
                "store_url": "https://store.steampowered.com/app/271590",
                "rank_change": -1,
                "peak_in_game": 98540,
                "last_week_rank": 7
            },
            {
                "name": "FiveM",
                "rank": 9,
                "appid": 2676230,
                "store_url": "https://store.steampowered.com/app/26762
…