Launch Game in Real Mode

post

Request to launch a game in real mode from The Bet Brothers Platform to the Supplier.

This request includes game and player-related details, and the response provides the game URL to launch the game in real mode.

Header parameters
X-REQUEST-SIGNstringRequired

HMAC-SHA256 signature of the request body using the shared password.

Body
tokenstringRequired

Session token to be used in every callback.

provider_namestringRequired

Name of the supplier.

provider_idintegerRequired

Unique identifier for the supplier.

ip_addressstringRequired

Player's IP address.

player_idstringRequired

Unique identifier of the user.

balanceintegerRequired

Player's balance in subunits (ISO 4217).

game_symbolstringRequired

Game symbol for the requested game.

languagestringRequired

Player language in ISO 639-1 standard (e.g., en).

currency_codestringRequired

Currency code in ISO 4217 format (e.g., EUR).

countrystringRequired

Country of the player in ISO 3166-1 alpha-2 format (e.g., MT).

lobby_urlstringRequired

URL to redirect to the operator's website.

is_mobilebooleanRequired

True if the request is from a mobile device.

brand_idintegerRequired

Unique identifier of the brand on The Bet Brothers platform.

Responses
200

Successfully returned real game URL.

application/json
post
/supplier_url
POST /supplier_url HTTP/1.1
Host: 
X-REQUEST-SIGN: text
Content-Type: application/json
Accept: */*
Content-Length: 273

{
  "provider_name": "test",
  "provider_id": 19,
  "token": "some_token",
  "ip_address": "192.168.1.143",
  "player_id": "565",
  "balance": 1000,
  "game_symbol": "MadMonkey",
  "language": "en",
  "currency_code": "EUR",
  "country": "MT",
  "lobby_url": "https://www.example.com",
  "is_mobile": true,
  "brand_id": 100
}
{
  "status": "success",
  "game_url": "https://example.com"
}

Last updated