Aller au contenu
GET /v1/details

A game's Steam store profile — genres, developer, release, price, Metacritic

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/steamreviews-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

curl "https://api.oanor.com/steamreviews-api/v1/details" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/steamreviews-api/v1/details", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/steamreviews-api/v1/details");
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/steamreviews-api/v1/details",
    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": {
        "name": "Counter-Strike 2",
        "type": "game",
        "appid": 730,
        "price": {
            "final": "Free",
            "currency": null,
            "discount_pct": 0
        },
        "genres": [
            "Action",
            "Free To Play"
        ],
        "source": "Steam",
        "is_free": true,
        "website": "http://counter-strike.net/",
        "categories": [
            "Multi-player",
            "Cross-Platform Multiplayer",
            "Steam Trading Cards",
            "Steam Workshop",
            "In-App Purchases",
            "Adjustable Text Size",
            "Camera Comfort",
            "Color Alternatives",
            "Custom Volume Controls",
            "Playable without Timed Input",
            "Stereo Sound",
            "Surround Sound",
            "Valve Anti-Cheat enabled",
            "Stats",
            "Remote Play on Phone",
            "Remote Play on Tablet",
            "Remote Play on TV",
            "Steam Timeline"
        ],
        "developers": [
            "Valve"
        ],
        "metacritic": null,
        "publishers": [
            "Valve"
        ],
        "coming_soon": false,
        "header_image": "https://shared.akamai.steamstatic.com/store_item_assets/steam/apps/730/162664aa5da85f418105350c5d67ca565f6c3713/header.jpg?t=1780435263",
        "release_date": "Aug 21, 2012",
        "recommendations": 5125528,
        "short_description": "For over two decades, Counter-Strike has offered an elite competitive experience, one shaped by millions of players from across the globe. And now the next chapter in the CS story is about to begin. This is Counter-Strike 2."
    },
    "meta": {
        "timestamp": "2026-06-13T14:10:39.321Z",
        "request_id": "16bd6dde-63fe-43c6-91a0-abd1f818d074"
    },
    "status": "ok",
    "message": "Details retrieved successfully",
    "success": true
}