Skip to content
GET /v1/meta

Service metadata

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/gog-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

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

Example response

A real response from this endpoint, captured by the latest 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
}