Vai al contenuto
GET /v1/meta

Service metadata

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/steamcharts-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "sample": {
            "players": 1201278,
            "top_game": "Counter-Strike 2"
        },
        "source": "Steam public Web API (api.steampowered.com ISteamChartsService) + store app details, keyless",
        "service": "steamcharts-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/players": "Current players for one game (appid; omit for the #1).",
            "GET /v1/topgames": "Live leaderboard by current concurrent players (limit).",
            "GET /v1/mostplayed": "Most-played chart with week-over-week movement (limit)."
        },
        "description": "Live Steam concurrent-player counts and most-played-games charts with no key: how many people are playing any game right now, the live leaderboard ranked by current players, and the most-played chart with week-over-week movement. Game names resolved from the Steam store. The live-engagement / player-activity layer for gaming dashboards, analytics and esports. Distinct from the Steam store, ownership, review and market readers. Live, short cache only.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-14T17:03:39.266Z",
        "request_id": "bb72a465-c100-4a1a-94cb-f8e1ddc52a7b"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}