"BingoRush" Half-Screen Event Description

Used in live broadcast apps to request period results, player betting information, win/loss results, and follow-up betting operations. It facilitates user interaction within the app.

1、Players' betting results notification

The platform obtains the betting information of each player and then synchronizes it to the live broadcast room.

Step: op:"Bet",

Data parameter description

Name
Type
Description

gameId

number

Game ID

curGameId

number

Current game id

userId

number

Player ID

name

string

Third-party player name

id

string

Third-party player ID

amount

number

Bet Amount

currency

string

Currency name (USDT, etc., see the currency list for details)

bets.betType

number

Betting type: 1:Graphic mode, 2:Jackpot, 3:Combo mode

bets.ball

number[]

15 number balls to bet on

bets.currency

string

Currency name (USDT, etc., see the currency list for details)

bets.amount

number

Bet amount

Example

{
	action: 'sendData', 
	data:{
		op:"Bet",
		data:
		{
			gameId:123,         
			curGameId:123,    
			userId:123,      
		        name:"name",       
		        id:"12323",   
			amoung:123,        
			currency:"usdt", 
			
			bets:{
				betType: 0,		
				ball:  [8,22,34,57,66,7,21,45,52,69,4,27,0,51,68], 
				currency:"usdt",	
				amount:number;      
			}[]
		}
	}
}

2、Lottery result notification

Lottery result notification

Step: op:"ShowRound",

Data parameter description

Name
Type
Description

gameId

number

game id

roundId

number

Issue number

nums

number[]

Numerical results display

Example

{
	action: 'sendData', 
	data: {
		
		op:"Bet",
		data:{
			gameId:123123			//gameid
			roundId:202504090002,		//Issue number
			nums:[3, 1, 25, 38, 51, 49, 12, 26, 27, 9, 8, 39, 23, 50, 32, 16, 17, 18, 19, 20, 21, 22, 30, 24, 14, 41, 46, 28, 29, 42, 35, 36, 44, 45]		//Digital display, 40 balls are opened in each game, the first 30 related graphics are rewarded, and the last ten are additional
	}
}

3、Winning player winning amount notification

Used to synchronize winning amount of players in the live broadcast room

Step: op:"Reward",

data parameter description

Name
Type
Description

id

string

Third-party player ID

name

string

Third-party player name

userId

number

userID

channel

string

Channel Name

gameID

number

game ID

amount

number

Bet Amount

currency

string

Currency name (USDT, etc., see the currency list for details)

multi

number

multiple

payout

number

reward

Example

{
	action: 'sendData', 
	data: {
		op:"Reward",
		data:{
			userId:123,   
			id:123,      
			name:"PlayerName",
			channel:"Channel",称
			gameID:10001,
			amount:1,
			currency:"usdt",
			multi:1,
			payout:1
		} 
	}
}

4、Player follow-up investment request

Refer to the demo code:

// Follow-up investment
const FollowUpInvestment = () => {
    if(!postData.data.data){
        return;
    }
    iframe.contentWindow.postMessage(JSON.stringify(postData), '*');
}

Step: op:"Follow",

Data parameter description

Name
Type
Description

gameId

number

Game ID

curGameId

number

Current game id

userId

number

Player ID

name

string

Third-party player name

id

string

Third-party player ID

amount

number

Bet Amount

currency

string

Currency name (USDT, etc., see the currency list for details)

bets.betType

number

Betting type: 1:Graphic mode, 2:Jackpot, 3:Combo mode

bets.ball

number[]

15 number balls to bet on

bets.currency

string

Currency name (USDT, etc., see the currency list for details)

bets.amount

number

Bet amount

Example

{
	action: 'sendData', 
	data:{
		op:"Bet",
		data:
		{
			gameId:123,         
			curGameId:123,    
			userId:123,      
		        name:"name",       
		        id:"12323",   
			amoung:123,        
			currency:"usdt", 
			
			bets:{
				betType: 0,		
				ball:  [8,22,34,57,66,7,21,45,52,69,4,27,0,51,68], 
				currency:"usdt",	
				amount:number;      
			}[]
		}
	}
}

Step 1 of forwarding the player's betting information: just the betting information of op: "Bet".

Last updated