Naar de inhoud
GET /v1/meta

Spec

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/steamspy-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste 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
}