/v1/app
Game stats by app id
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/steamspy-api/v1/app" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/steamspy-api/v1/app", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/steamspy-api/v1/app");
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/steamspy-api/v1/app",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"app": {
"name": "Counter-Strike: Global Offensive",
"tags": [
{
"name": "FPS",
"votes": 91172
},
{
"name": "Shooter",
"votes": 65634
},
{
"name": "Multiplayer",
"votes": 62536
},
{
"name": "Competitive",
"votes": 53536
},
{
"name": "Action",
"votes": 47634
},
{
"name": "Team-Based",
"votes": 46549
},
{
"name": "e-sports",
"votes": 43682
},
{
"name": "Tactical",
"votes": 41468
},
{
"name": "First-Person",
"votes": 39540
},
{
"name": "PvP",
"votes": 34587
},
{
"name": "Online Co-Op",
"votes": 34056
},
{
"name": "Co-op",
"votes": 30342
}
],
"appid": 730,
"genre": "Action, Free To Play",
"owners": "100,000,000 .. 200,000,000",
"developer": "Valve",
"languages": "English, Czech, Danish, Dutch, Finnish, French, German, Hungarian, Italian, Japanese, Korean, Norwegian, Polish, Portuguese - Portugal, Portuguese - Brazil, Romanian, Russian, Simplified Chinese, Spanish - Spain, Swedish, Thai, Traditional Chinese, Turkish, Bulgarian, Ukrainian, Greek, Spanish - Latin America, Vietnamese, Indonesian",
"publisher": "Valve",
"score_rank": "",
"price_cents": 0,
"review_score": 86.7,
"concurrent_users": 1013936,
"discount_percent": 0,
"negative_reviews": 1173003,
"positive_reviews": 7642084,
"initial_price_cents": 0,
"median_playtime_2weeks_min": 0,
"average_playtime_2weeks_min": 0,
"median_playtime_forever_min": 0,
"average_playtime_forever_min": 0
}
},
"meta": {
"timestamp": "2026-06-07T16:46:02.788Z",
"request_id": "bbe57bed-c557-4ea1-a700-0c512c933f4d"
},
"status": "ok",
"message": "App retrieved successfully",
"success": true
}