> For the complete documentation index, see [llms.txt](https://docs.thndr.io/integration/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.thndr.io/integration/operator-api/game-list.md).

# Game list

**Sandbox**

```
GET https://operator-sandbox.thndr-api.com/v1/games
```

**Production**

```
GET https://operator.thndr-api.com/v1/games
```

**Request headers**

```
x-operator-id: your_operator_id
x-api-key: your_api_key
```

**Response**

This endpoint retrieves all games. Each game entry includes:

* A unique game identifier (`id`)
* A list of [ISO-3166](https://en.wikipedia.org/wiki/ISO_3166) country codes and region codes where the game is restricted (`restrictedCountries`)
* A list of [ISO-4217](https://en.wikipedia.org/wiki/ISO_4217) currency codes supported for the game (see [Currencies](/integration/server-webhooks/currencies.md))

```json
{
  "games": [
    {
      "id": "blackjack",
      "restrictedCountries": [
        "AF", "BY", "BE", "BA", "BG", "CD", "CI", "HR", "CU",
        "CY", "CZ", "EG", "EE", "FR", "GF", "PF", "TF", "GR",
        "HU", "IN", "ID", "IR", "IQ", "IT", "JP", "XK", "LV",
        "LT", "MY", "MT", "ME", "MM", "NG", "KP", "MK", "PK",
        "CN", "PL", "PT", "RO", "RU", "RS", "SK", "SI", "SD",
        "SY", "TR", "UA", "VN", "ZW",
        "US-AZ", "US-CT", "US-HI", "US-ID", "US-IN", "US-IA",
        "US-LA", "US-ME", "US-MI", "US-MT", "US-NV",
        "US-SC", "US-TN"
      ],
      "currencies": ["USD", "CNY", "EUR", "GBP", "BTC"]
    },
    ...
  ]
}
```
