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}| Parameter | Type | Required | Description |
|---|---|---|---|
| casino_id | integer | yes | provided 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
}
...
]
}| Parameter | Type | Description |
|---|---|---|
| code | integer | 200 on success |
| total | integer | number of games in games |
| games | array | the game objects described below |
Game object
| Field | Type | Description |
|---|---|---|
| id | integer | unique game id, use it as game_id everywhere else |
| name | string | display name of the game |
| brand | string | game studio the title comes from |
| category | string | game category, for example Classic Slots |
| new | integer | 1 if the game is flagged as new, otherwise 0 |
| image | string | main thumbnail URL |
| position | integer | null | sort order hint, null when not set |
| is_mobile | integer | 1 if the game runs on mobile |
| all_platform | integer | 1 if the game runs on every supported platform |
| has_lobby | integer | null | 1 if the game has its own lobby |
| has_demo | integer | 1 if Demo launch is available |
| has_freespins | integer | 1 if Gift Spins are supported |
| launch_url | string | null | preset launch URL, null when the game is launched via rungame |
| demo_launch_url | string | null | preset demo URL, null when the demo is launched via rundemo |
| landscape | string | null | landscape artwork URL, null when not provided |
| portrait | string | null | portrait artwork URL, null when not provided |
| oval | string | null | oval artwork URL, null when not provided |
| background | string | null | background artwork URL, null when not provided |
Last updated on