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/epicgames-api

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

Obtener una clave API

Fragmentos de código

curl "https://api.oanor.com/epicgames-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/epicgames-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/epicgames-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/epicgames-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": {
        "note": "free = games free to claim now; upcoming = games free soon. Optional country (2-letter ISO, default US) and locale (default en-US) localise the offer window and prices.",
        "sample": {
            "first": "The Ouroboros King",
            "free_now": 2
        },
        "source": "Epic Games Store free-games promotions (live)",
        "service": "epicgames-api",
        "endpoints": {
            "GET /v1/free": "Games currently free on the Epic Games Store (country, locale).",
            "GET /v1/meta": "This document.",
            "GET /v1/upcoming": "Games becoming free on the Epic Games Store soon (country, locale)."
        },
        "description": "Live free-games promotions from the Epic Games Store, keyless. The games that are free to claim right now (with the window they are free) and the ones becoming free soon — each with title, description, publisher, original price, store slug, cover image and store URL. The iconic 'Epic free game this week' as a clean API for gaming, deal-alert and calendar apps. Live, no key, nothing stored. Distinct from cross-store deal aggregators — Epic's own giveaways.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-14T08:04:40.356Z",
        "request_id": "fc9ef37b-fee4-4a0f-94ed-251d86bfa692"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}