Zum Inhalt springen
GET /v1/search

Search GOG games by keyword

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/gog-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "page": 1,
        "count": 20,
        "games": [
            {
                "id": "1213176929",
                "slug": "reigns_the_witcher",
                "type": "game",
                "image": "https://images.gog-statics.com/6a4c67c9cdb2343134e73e06ecaa26198588faff65c633e8b3ca5a1a76589638.png",
                "price": {
                    "base": "$5.99",
                    "free": false,
                    "final": "$4.79",
                    "amount": 4.79,
                    "currency": "USD",
                    "base_amount": 5.99,
                    "discount_pct": 20
                },
                "title": "Reigns: The Witcher",
                "genres": [
                    "Simulation",
                    "Fantasy",
                    "Adventure"
                ],
                "rating": 3.8,
                "reviews": 19,
                "store_url": "https://www.gog.com/en/game/reigns_the_witcher",
                "developers": [
                    "Nerial"
                ],
                "publishers": [
                    "Devolver Digital"
                ],
                "release_date": "2026.02.25",
                "operating_systems": [
                    "windows",
                    "osx"
                ]
            },
            {
                "id": "1441199941",
                "slug": "the_witcher_3_redkit",
                "type": "game",
                "image": "https://images.gog-statics.com/6808c0f7f179257a0eb94000b5062b87ae4afc2037119e67f30b7d68d148b59b.png",
                "price": {
                    "base": "$0.00",
                    "free": true,
                    "final": "$0.00",
                    "amount": 0,
                    "currency": "USD",
                    "base_amount": 0,
                    "discount_pct": 0
                },
                "title": "The Witcher 3 REDkit",
                "genres": [
                    "Role-playing",
                    "Action",
                    "Fantasy"
                ],
                "rating": 3.9,
                "reviews": 94,
                "store_url": "https://www.gog.com/en/game/the_witcher_3_redkit",
                "developers": [
                    "CD PROJEKT RED, Yigsoft"
                ],
                "publishers": [
                    "CD PROJEKT RED"
                ],
                "release_date": "2024.05.21",
                "operating_systems": [
                    "windows"
                ]
            },
            {
                "id": "1207666883",
                "slug": "witcher_adventure_game",
                "type": "game",
                "image": "https://images.gog-statics.com/5bc58089e14771de0c1b872c529c8b8b150b87fe28c7e4db1856389526849bb3.png",
                "price": {
                    "base": "$9.99",
                    "free": false,
                    "final": "$9.99",
                    "amount": 9.99,
                  
…