Μετάβαση στο περιεχόμενο
GET /v1/tag

Top games with a tag

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/steamspy-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

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

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

{
    "data": {
        "tag": "Roguelike",
        "apps": [
            {
                "name": "Grand Theft Auto IV: The Complete Edition",
                "appid": 12210,
                "owners": "5,000,000 .. 10,000,000",
                "developer": "Rockstar North, Rockstar Toronto",
                "price_cents": 599,
                "review_score": 82.5,
                "concurrent_users": 2122,
                "average_playtime_2weeks_min": 0
            },
            {
                "name": "Pool 2D - Poolians",
                "appid": 891040,
                "owners": "500,000 .. 1,000,000",
                "developer": "Poolians.com",
                "price_cents": 0,
                "review_score": 87.1,
                "concurrent_users": 262,
                "average_playtime_2weeks_min": 0
            },
            {
                "name": "FlatOut 2",
                "appid": 2990,
                "owners": "500,000 .. 1,000,000",
                "developer": "Bugbear Entertainment, ZOOM Platform Media, Jordan Freeman Group",
                "price_cents": 199,
                "review_score": 96.1,
                "concurrent_users": 85,
                "average_playtime_2weeks_min": 0
            },
            {
                "name": "Cricket 22",
                "appid": 1701380,
                "owners": "50,000 .. 100,000",
                "developer": "Big Ant Studios",
                "price_cents": 4499,
                "review_score": 81,
                "concurrent_users": 15,
                "average_playtime_2weeks_min": 0
            },
            {
                "name": "Premium Bowling",
                "appid": 898580,
                "owners": "0 .. 20,000",
                "developer": "Sadetta",
                "price_cents": 1999,
                "review_score": 93.8,
                "concurrent_users": 6,
                "average_playtime_2weeks_min": 0
            },
            {
                "name": "All-In-One Sports VR",
                "appid": 1514840,
                "owners": "20,000 .. 50,000",
                "developer": "Appnori Inc.",
                "price_cents": 1999,
                "review_score": 84.6,
                "concurrent_users": 5,
                "average_playtime_2weeks_min": 0
            },
            {
                "name": "PBA Pro Bowling 2021",
                "appid": 1415920,
                "owners": "0 .. 20,000",
                "developer": "FarSight Studios",
                "price_cents": 1499,
                "review_score": 81.6,
                "concurrent_users": 4,
                "average_playtime_2weeks_min": 0
            },
            {
                "name": "PBA Pro Bowling 2023",
                "appid": 1595050,
                "owners": "0 .. 20,000",
                "developer": "FarSight Studios",
                "price_cents": 2999,
                "review_score": 67.3,
                "concurrent_users": 4,
                "
…