Naar de inhoud
GET /v1/meta

Service metadata

Probeer het live

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

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

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

Verkrijg een API-sleutel

Codefragmenten

curl "https://api.oanor.com/gog-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/gog-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/gog-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/gog-api/v1/meta",
    headers={"x-oanor-key": "oanor_test_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "note": "search takes q (e.g. witcher, cyberpunk, baldur), optional page, limit (1-48) and order (score, popularity, price_asc, price_desc, newest, discount, reviews, title). game takes a numeric GOG product id (from search). Prices reflect the requested store region (USD by default).",
        "sample": {
            "price": "$4.79",
            "title": "Reigns: The Witcher"
        },
        "source": "GOG public catalogue (catalog.gog.com) + product API (api.gog.com), live",
        "service": "gog-api",
        "endpoints": {
            "GET /v1/game": "One game in full by GOG product id (id=1640424747).",
            "GET /v1/meta": "This document.",
            "GET /v1/search": "Search GOG games by keyword (q=witcher, order, page, limit)."
        },
        "description": "Live game catalogue & prices from GOG.com (the DRM-free PC game store by CD Projekt), keyless. Search the store for any game and get each title's current price (with discount), genres, developers, publishers, rating, review count, release date, supported OS, cover image and store link; open one game by id for its full detail (description, OS compatibility, release, store URL). Live, no key, nothing stored. The DRM-free game-store layer for gaming, deal-tracking, library and price apps. Distinct from game-giveaway and deal aggregators — GOG's own catalogue and live prices.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-14T08:04:41.400Z",
        "request_id": "3dfed1dd-10f1-472f-8246-9a4d32c1acf2"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}