/v1/meta
Service metadata
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}