Ir al contenido
GET /v1/topgames

Live leaderboard by current players

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/steamcharts-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

curl "https://api.oanor.com/steamcharts-api/v1/topgames" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/steamcharts-api/v1/topgames", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/steamcharts-api/v1/topgames");
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/topgames",
    headers={"x-oanor-key": "oanor_test_..."}
)

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "data": {
        "note": "The live leaderboard of the most-played games on Steam right now, ranked by current concurrent players — each with its current player count and today's peak. The real-time pulse of what the whole Steam platform is playing.",
        "count": 20,
        "games": [
            {
                "name": "Counter-Strike 2",
                "rank": 1,
                "appid": 730,
                "store_url": "https://store.steampowered.com/app/730",
                "peak_today": 1498445,
                "current_players": 1201278
            },
            {
                "name": "Dota 2",
                "rank": 2,
                "appid": 570,
                "store_url": "https://store.steampowered.com/app/570",
                "peak_today": 703748,
                "current_players": 649470
            },
            {
                "name": "TBH: Task Bar Hero",
                "rank": 3,
                "appid": 3678970,
                "store_url": "https://store.steampowered.com/app/3678970",
                "peak_today": 526596,
                "current_players": 497406
            },
            {
                "name": "PUBG: BATTLEGROUNDS",
                "rank": 4,
                "appid": 578080,
                "store_url": "https://store.steampowered.com/app/578080",
                "peak_today": 735883,
                "current_players": 348861
            },
            {
                "name": "Path of Exile 2",
                "rank": 5,
                "appid": 2694490,
                "store_url": "https://store.steampowered.com/app/2694490",
                "peak_today": 275890,
                "current_players": 275890
            },
            {
                "name": "FiveM",
                "rank": 6,
                "appid": 2676230,
                "store_url": "https://store.steampowered.com/app/2676230",
                "peak_today": 186748,
                "current_players": 183833
            },
            {
                "name": "Bongo Cat",
                "rank": 7,
                "appid": 3419430,
                "store_url": "https://store.steampowered.com/app/3419430",
                "peak_today": 162273,
                "current_players": 152075
            },
            {
                "name": "Rust",
                "rank": 8,
                "appid": 252490,
                "store_url": "https://store.steampowered.com/app/252490",
                "peak_today": 156887,
                "current_players": 151585
            },
            {
                "name": "EA SPORTS FC™ 26",
                "rank": 9,
                "appid": 3405690,
                "store_url": "https://store.steampowered.com/app/3405690",
                "peak_today": 126817,
                "current_players": 124263
            },
            {
                "name": "Destiny 2",
                "rank": 10,
                "appid": 1085660,
                "store_url": "https://stor
…