๐ฏ 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_typeGame 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.
Parameter | Mandatory | Description | Accepted values |
| โ | Must be | (string) |
| โ | Game type filter. Accepted values: | string |
| โ | API Username | (string) |
| โ | API Password | (string) |
Note: Parameters are case-sensitive.
Example JSON Request input:
{ "command": "getListGames", "type": "slot" }Parameter | Description |
| JSON object of games, keyed by game ID |
| Timestamp of the response |
Each game entry contains the following fields:
Parameter | Field Description |
| Game ID |
| Game title (EG:โBook Of NightWatchersโ) |
| Game type (EG: |
| Number of lines (EG: |
| Image paths (please download & host on your own server) |
| Number of jackpots (0, 1, or 3) |
|
|
| Min/Max allowed bet (decimal format) |
| The Default Return to Player percentage (EG:โ95.66โ); |
{
"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"
}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.