๐ŸŽฎLaunch Game

circle-exclamation

POST /api/v1/launch

This API method retrieves a game link that allows customers to be redirected directly to the game. Upon calling this function, the system generates and returns a unique URL, enabling seamless access to the specified game for the customer.

Headers

Name
Value

Content-Type

application/json

X-Authorization-Token

<token>

Body

Name
Type
Description

playerUsername

required, alphanumeric, max length 4-20

Player username

deviceType

required, string

Game client device type "pc" or "mobile"

lang

required, string

Game client language

returnUrl

required, string, valid url format

Return or exit to your website link

playerIp

required, valid format in ipv4, ipv6

Player IP address for login to game client

launchCode

required, string

Game code identity

currencyCode

required, string, valid in ISO4217 format

Player wallet currency code

Response

{
  "code": 0,
  "msg": "Success",
  "requestUid": "UUID v4 format",
  "repsonseTime": "YYYY-MM-DD HH:mm:ss",
  "data": {
    "gameUrl": "https://redirect-to-play.com"
  }
}

Request Example