Ir al contenido
GET /v1/meta

Service metadata

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/steamreviews-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

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