Get List Of Available Games

🎯 Get Game List (getListGames)

📘 Description

This endpoint returns a JSON object grouped by game ID inside the “games” parameter. See sample below. It was formerly known as command 24.

Each game entry includes:

  • id, name, game_type

  • Game image URLs (preview, poster, etc.)

  • Min/Max bet, RTP, lines

  • Jackpot info (jp_enabled)

  • Number of free spins supported (if any)

You must download and host the game thumbnail/icon images on your own server. Direct linking is blocked by hotlink protection.


📥 Input Parameters

Parameter

Mandatory

Description

Accepted values

*command

Must be "getListGames" to identify the correct API action

(string) getListGames

*type

Game type filter. Accepted values: arcade, scratch, table, card, videopoker, slot, slot3rs, slot5rs, slot7rs, slot9rs, dice. Use % to return all games.

string

*apiusername

API Username

(string)

*apipass

API Password

(string)

Note: Parameters are case-sensitive.

Example JSON Request input:

{ "command": "getListGames", "type": "slot" }

📤 Output Parameters

Parameter

Description

games

JSON object of games, keyed by game ID

timestamp

Timestamp of the response

Each game entry contains the following fields:

Parameter

Field Description

id

Game ID

name

Game title (EG:”Book Of NightWatchers”)

game_type

Game type (EG: slot5rs, table card mobile)

lines

Number of lines (EG: 50 for slots, 0 for table games)

image_poster,
image_poster_sqr, image_poster_tall, image_preview

Image paths (please download & host on your own server)
image_poster = landscape format, where width>height
image_poster_sqr = square format, where width equals height
image_poster_tall = tall/portrait format, where height>width
image_preview = game preview screenshot

jp_enabled

Number of jackpots (0, 1, or 3)

freespins

"1" if game supports free spins, otherwise "0"

min_bet, max_bet

Min/Max allowed bet (decimal format)

rtp

The Default Return to Player percentage (EG:”95.66”);
NOTE: The slot games have multiple RTP options. Check the paytable_version parameter from the Generate Game Play Token endpoint


🧪 Sample Decoded Response

Example
{ "games": { "5020": { "id": "5020", "name": "Conquerors of the Amazon II", "game_type": "mobile slot5rs", "lines": "50", "image_poster": "resources/html5/CWS_5RS_AMAZON2/preview_poster.jpg", "image_preview": "resources/html5/CWS_5RS_AMAZON2/preview_pic.jpg", "poster_url": "resources/html5/CWS_5RS_AMAZON2/game.gif", "jp_enabled": "3", "freespins": "1", "min_bet": "1.00", "max_bet": "1000.00", "rtp": "96.99" }, "5200": { "id": "5200", "name": "Casino War 3D Dealer", "game_type": "table card mobile", "lines": "0", "image_poster": "resources/html5/CWS_CARD_CASINO_WAR_3D/preview_poster.jpg", "image_preview": "resources/html5/CWS_CARD_CASINO_WAR_3D/preview_pic.jpg", "poster_url": "resources/html5/CWS_CARD_CASINO_WAR_3D/game.gif", "jp_enabled": "0", "freespins": "0", "min_bet": "1.00", "max_bet": "1000.00", "rtp": "97.12" } }, "timestamp": "2022-03-23 07:38:49" }

⚠️ Image Hosting Warning

You must host all image assets yourself. Do not link directly to our CDN, as hotlinking protection will prevent the images from rendering in your frontend lobby.