Ir al contenido
GET /v1/app

Game stats by app id

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/steamspy-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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_..."}
)

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "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
}