/v1/meta
Service metadata
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
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_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"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
}