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_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.
📥 Input Parameters
Note: Parameters are case-sensitive.
Example JSON Request input:
{ "command": "getListGames", "type": "slot" }📤 Output Parameters
Each game entry contains the following fields:
🧪 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.