/v1/meta
Service metadata
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/steamreviews-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/steamreviews-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/steamreviews-api/v1/meta");
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/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"source": "Steam public appreviews + storesearch (live)",
"service": "steamreviews-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/search": "Resolve a game name to its Steam app id (q=portal).",
"GET /v1/reviews": "Review summary + sample reviews (appid=730 or game=Counter-Strike; filter=recent|updated|all, type=all|positive|negative, limit).",
"GET /v1/summary": "Aggregate review sentiment only (appid or game)."
},
"description": "Live Steam user-review sentiment: for any game (by Steam app id or name), the aggregate review summary (total, positive/negative counts, positive percentage and Steam's rating label like \"Very Positive\") plus a sample of recent reviews with text, recommendation, helpful/funny votes, author playtime and language. Get the reviews feed, the sentiment summary, or search Steam to resolve a name to an app id. Live, no key. Distinct from a Steam store-catalogue API — this is the user reviews and rating sentiment layer.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-09T03:02:34.970Z",
"request_id": "3a7566e0-c5fb-4c3e-bec1-5b7d0fcd31a0"
},
"status": "ok",
"message": "Meta",
"success": true
}