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

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

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

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

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

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

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

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

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

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

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

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