The Bet Brothers
HomeNewsLinkedIn
  • The Bet Brothers APIS
    • 🧩Core Concepts
    • 🔁API Flow
  • OPERATOR API
    • 🔗Operator Integration Service
    • 🔑Protocol API
      • Create api-token
      • Revoke api-token
  • 🚀Game Launcher API
    • Get Game Providers
    • Get Games
    • Launch Game in Demo Mode
    • Launch game in Real Mode
  • 💰Wallet API
    • Balance
    • Bet
    • Win
    • Refund
    • Rollback Win
  • ⚡Free Spin API
    • Add Free Spin
    • Cancel Free Spin
  • 🎮Game Insights
    • Get Game Bet Levels
    • Get Round Info
  • 📖Addendum
    • TBB Error Codes
    • Wallet Error Response
  • SUPPLIER API
    • 🔗Supplier Integration Service
    • 🔑Supplier Protocol API
    • 🚀Game Launcher API
      • Launch Game in Demo Mode
      • Launch Game in Real Mode
  • 🎲Game Events
    • Balance
    • Bet
    • Win
    • Refund
  • 📖Addendum
    • TBB Error Codes
Powered by GitBook
On this page
  1. SUPPLIER API
  2. Game Launcher API

Launch Game in Real Mode

PreviousLaunch Game in Demo ModeNextGame Events

Last updated 9 days ago

🚀
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 on the Operator's side.

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.

Responses
200
Successfully returned real game URL.
application/json
403
Forbidden - signature does not match.
application/json
post
POST /supplier/url HTTP/1.1
Host: 
X-REQUEST-SIGN: text
Content-Type: application/json
Accept: */*
Content-Length: 258

{
  "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
}
{
  "status": "success",
  "game_url": "https://example.com"
}