/v1/meta
Spec
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}