/v1/charts
The most-played Steam games right now
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/protondb-api/v1/charts" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/protondb-api/v1/charts", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/protondb-api/v1/charts");
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/protondb-api/v1/charts",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"count": 10,
"games": [
{
"name": "Counter-Strike 2",
"rank": 1,
"appid": 730,
"rank_change": 0,
"peak_players": 1275982
},
{
"name": "PUBG: BATTLEGROUNDS",
"rank": 2,
"appid": 578080,
"rank_change": 0,
"peak_players": 732248
},
{
"name": "Dota 2",
"rank": 3,
"appid": 570,
"rank_change": 0,
"peak_players": 635321
},
{
"name": "Wallpaper Engine",
"rank": 4,
"appid": 431960,
"rank_change": 0,
"peak_players": 111342
},
{
"name": "Apex Legends™",
"rank": 5,
"appid": 1172470,
"rank_change": 1,
"peak_players": 284062
},
{
"name": "Slay the Spire 2",
"rank": 6,
"appid": 2868840,
"rank_change": -1,
"peak_players": 196023
},
{
"name": "R.E.P.O.",
"rank": 7,
"appid": 3241660,
"rank_change": 22,
"peak_players": 94560
},
{
"name": "Grand Theft Auto V Legacy",
"rank": 8,
"appid": 271590,
"rank_change": -1,
"peak_players": 98540
},
{
"name": "FiveM",
"rank": 9,
"appid": 2676230,
"rank_change": -1,
"peak_players": 192252
},
{
"name": "Geometry Dash",
"rank": 10,
"appid": 322170,
"rank_change": -1,
"peak_players": 68410
}
],
"source": "Steam"
},
"meta": {
"timestamp": "2026-06-13T13:54:56.132Z",
"request_id": "81d728a6-5420-4360-bbdc-7b0e80c15ac6"
},
"status": "ok",
"message": "Charts retrieved successfully",
"success": true
}