Game List
Retrieve the full catalogue of available games.
⚠️ These endpoints are available only for whitelisted IP addresses.
POST /game-list
POST{provider endpoint}/game-list
Retrieve the list of available games with metadata for a given wallet and operator.
Request
Headers: X-Server-Authorization: hmac_sha256_hash
{
"walletId": "777casino-platform",
"operatorId": "777casino-uk"
}
Request Parameters
| Field | Type | Description | |
|---|---|---|---|
| walletId | string | required | Platform wallet identifier, provided by NeverEnding |
| operatorId | string | required | Your operator identifier. Used to filter the game catalogue to operator-enabled games only |
Response
✓ 200 OK
[
{
"game": "firefruit-sevens-classic",
"type": "slot",
"title": "Firefruit Sevens Classic",
"thumbnail": "https://example.com/firefruit-sevens-classic.png"
},
{
"game": "ultimate-hot-coins",
"type": "slot",
"title": "Ultimate Hot Coins",
"thumbnail": "https://example.com/ultimate-hot-coins.png"
}
]
Response Parameters — array of game objects
| Field | Type | Description |
|---|---|---|
| game | string | Game slug / identifier used in all other API calls that reference a game |
| type | string | Game category (e.g. slot) |
| title | string | Human-readable display name of the game |
| thumbnail | string (URL) | Absolute URL to the game thumbnail image |