Naar de inhoud
GET /v1/charts

The most-played Steam games right now

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/protondb-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "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
}