Skip to Content
API MethodsGamelist

Gamelist

Returns every game enabled for the casino. The id returned here is the game_id used by all other methods and callbacks.

Request

[GET] {PROVIDER_URL}/v1/gamelist?casino_id={casino_id}
ParameterTypeRequiredDescription
casino_idintegeryesprovided by the game provider

Response

Successful response will be returned as a json object.

{ "code": 200, "total": 910, "games": [ { "id": 19773, "name": "888 Dragons", "brand": "Pragmaticplay", "category": "Classic Slots", "new": 0, "image": "https://example.com/image/888_dragons.webp", "position": null, "is_mobile": 1, "all_platform": 1, "has_lobby": null, "has_demo": 1, "has_freespins": 0, "launch_url": null, "demo_launch_url": null, "landscape": null, "portrait": null, "oval": null, "background": null } ... ] }
ParameterTypeDescription
codeinteger200 on success
totalintegernumber of games in games
gamesarraythe game objects described below

Game object

FieldTypeDescription
idintegerunique game id, use it as game_id everywhere else
namestringdisplay name of the game
brandstringgame studio the title comes from
categorystringgame category, for example Classic Slots
newinteger1 if the game is flagged as new, otherwise 0
imagestringmain thumbnail URL
positioninteger | nullsort order hint, null when not set
is_mobileinteger1 if the game runs on mobile
all_platforminteger1 if the game runs on every supported platform
has_lobbyinteger | null1 if the game has its own lobby
has_demointeger1 if Demo launch is available
has_freespinsinteger1 if Gift Spins are supported
launch_urlstring | nullpreset launch URL, null when the game is launched via rungame
demo_launch_urlstring | nullpreset demo URL, null when the demo is launched via rundemo
landscapestring | nulllandscape artwork URL, null when not provided
portraitstring | nullportrait artwork URL, null when not provided
ovalstring | nulloval artwork URL, null when not provided
backgroundstring | nullbackground artwork URL, null when not provided
Last updated on