Skip to main content
Use this endpoint to retrieve all games available to your operator account from a specific provider. The response includes the game code (used to launch a game), display name, thumbnail image URL, game type, and maintenance status. You can use this data to populate your game lobby UI and filter or badge games by type or availability.

Request

GET /v1/gamelist/:providerId

Headers

NameValue
AuthorizationBearer <API_TOKEN>
Content-Typeapplication/json
Acceptapplication/json

Path Parameters

providerId
number
required
The unique identifier of the provider whose game catalog you want to retrieve. You can get a list of valid provider IDs from List Providers.

Example Request

curl --request GET \
  --url "https://api.igamingace.com/v1/gamelist/1" \
  --header "Authorization: Bearer <API_TOKEN>" \
  --header "Accept: application/json" \
  --header "Content-Type: application/json"

Response

Example Response

{
  "success": true,
  "message": "OK",
  "data": [
    {
      "gameID": 644,
      "gameName": "Launch to Riches",
	  "gameSymbol": "vswaysrocktrls",
      "gameImage": "https://statics.igamingace.com/images/vswaysrocktrls.png",
	  "freeBonusMeta": {
			"betUnit": 0.2,
			"maxMultiple": 1250
	   },
	  "publishDate": "2026-04-29"
    }
  ]
}

Response Fields

success
bool
Indicates whether the API call succeeded.
message
string
Textual confirmation of the API call result (e.g., "OK").
data
array
Array of game objects available from the specified provider.