Demo launch
Returns the URL that opens a game in demo (play money) mode. No player account
and no wallet callbacks are involved. Only games with has_demo: 1 in the
Gamelist can be launched this way.
Request
[GET] {PROVIDER_URL}/v1/rundemo?casino_id={casino_id}&game_id=19773&user_ip=127.0.0.1| Parameter | Type | Required | Description |
|---|---|---|---|
| casino_id | integer | yes | provided by the game provider |
| game_id | integer | yes | unique game id |
| user_ip | string | yes | user’s IP address (IPv4) |
Response
Successful response will be returned as a json object.
{
"code": 200,
"url": "https://example.com/3rd/integrations/games/wild7fruits/?token=xxx"
}| Parameter | Type | Description |
|---|---|---|
| code | integer | 200 on success |
| url | string | demo game URL to open for the player |
Last updated on