/v1/meta
Spec
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/steamspy-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/steamspy-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/steamspy-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/steamspy-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"service": "steamspy-api",
"endpoints": {
"GET /v1/app": "Game stats by Steam appid (e.g. 730).",
"GET /v1/tag": "Top games with a tag (tag=).",
"GET /v1/meta": "This document.",
"GET /v1/genre": "Top games in a genre (genre=).",
"GET /v1/top/owned": "Top games by estimated owners.",
"GET /v1/top/players": "Top games by current players (2 weeks).",
"GET /v1/top/playtime": "Top games by all-time playtime."
},
"description": "SteamSpy: Steam game ownership & player analytics — per-game stats (estimated owners, concurrent users, playtime, price, review score, tags), the top-100 lists (current players, playtime, owners) and games by genre or tag. Real data, no key."
},
"meta": {
"timestamp": "2026-06-07T16:46:03.744Z",
"request_id": "b98cdfdc-6c4b-437d-893e-9acbd4de2c37"
},
"status": "ok",
"message": "Meta",
"success": true
}