Skip to main content
Fetch the full catalog of games available to your integration. Use the returned game IDs when calling /userAuth and /createfreegame. Call /gamelist to retrieve every game currently available to your integration. The response includes each game’s unique ID, display name, and a thumbnail URL. You’ll need the gameID values from this response whenever you call /userAuth to launch a game or /createfreegameto grant a free spin bonus.

Endpoint

GET https://api.igamingace.com/gamelist
Replace https://api.igamingace.com with the base URL provided to you by iGamingAce.

Request Headers

NameValueExample
AuthorizationBearer Token (apitoken)Authorization: Bearer 4ca8890730e64aa69bd168eb8a3f374c
Acceptapplication/jsonAccept: application/json
Content-Typeapplication/jsonContent-Type: application/json

Request Parameters

There are no parameters required when fetching game list

Response Example

Success:
{
  	"code": 0,
    "message": "OK",
    "data": [
        {
            "vendorid": "Pragmatic Play",
            "gameid": 2373,
            "name": "Tales of Egypt",
            "symbol": "vs20egypt",
            "iconurl1": "https://static.igamingace.net/game_pic/rec/188/vs20egypt.png",
            "iconurl2": "https://static.igamingace.net/game_pic/rec/325/vs20egypt.png",
            "miniBet": 0.2,
            "minlevel": 1,
            "maxlevel": 1250,
            "replay": false
        },
        {
            "vendorid": "Pragmatic Play",
            "gameid": 2277,
            "name": "Great Reef",
            "symbol": "vs25sea",
            "iconurl1": "https://static.igamingace.net/game_pic/rec/188/vs25sea.png",
            "iconurl2": "https://static.igamingace.net/game_pic/rec/325/vs25sea.png",
            "miniBet": 0.25,
            "minlevel": 1,
            "maxlevel": 1000,
            "replay": false
        }
}
Failed:
{
    "code": 7,
    "message": "invalid token"
}