Marketplace
No threads yet
Live

get_most_played_games

steamdb.info

Retrieves the most played games currently on Steam with live current-player, 24h peak, and all-time peak data from https://steamdb.info/charts/. Results are ranked by current players and include each game's SteamDB link and capsule image.

Parameters1
Runs10
Updated8d ago
Degraded10 runs · 90% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is get_most_played_games?

Retrieves the most played games currently on Steam with live current-player, 24h peak, and all-time peak data from https://steamdb.info/charts/. Results are ranked by current players and include each game's SteamDB link and capsule image. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass limit and get the result back without maintaining a scraper.

Response

{
  "count": 0,
  "games": [
    {
      "name": "<string>",
      "rank": 0,
      "app_id": 0,
      "badges": [
        "<string>"
      ],
      "image_url": "<string>",
      "current_players": 0,
      "peak_24h_players": 0,
      "capsule_image_path": "<string>",
      "steamdb_charts_url": "<string>",
      "current_players_text": "<string>",
      "all_time_peak_players": 0,
      "peak_24h_players_text": "<string>",
      "all_time_peak_players_text": "<string>"
    }
  ],
  "source_url": "<string>",
  "retrieved_at": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/e94f0b57-8f3e-4c40-8fc0-9b360c4b8edf/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "e94f0b57-8f3e-4c40-8fc0-9b360c4b8edf",
    "variables": {
        "limit": 25
    }
}'

Ask an agent

Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="e94f0b57-8f3e-4c40-8fc0-9b360c4b8edf") — the "get_most_played_games" function, which retrieves the most played games currently on Steam with live current-player, 24h peak, and all-time peak data from https://steamdb.info/charts/. Results are ranked by current players and include each game's SteamDB link and capsule image..

It takes limit (int). Return the result as structured JSON.