Bet Builder is a feature that allows users to create customized bets by combining multiple markets within a single sports event. It provides players with the flexibility to select outcomes from the same match and combine them into a single bet with dynamically calculated odds.
Key Characteristics of Bet Builder
Customizable Bets: Users can select multiple markets from a single event, such as the final score, total goals, or player-specific outcomes.
Dynamic Odds Calculation: Odds are calculated based on the dependencies between selected markets. For instance, betting on "Team A to win" and "Team A to score 2+ goals" will factor in the correlation between these outcomes.
Single Bet Type: Even when combining multiple markets, Bet Builder bets are treated as a Single bet, as they relate to one sport event.
Enhanced User Experience: Bet Builder allows users to tailor bets to their insights and predictions for a specific game.
Difference Between Bet Builder and Express (Combo) Bets?
Bet Builder and Express (Combo) bets differ in their scope, odds calculation, and use cases. The table below highlights the key differences:
Feature
Bet Builder
Express (Combo)
Event Scope
Combines multiple markets within one match.
Combines bets from different matches.
Bet Type
Single bet
Combo/Express
Odds Calculation
Adjusted for market dependencies within one match.
Multiplies independent odds from each match.
Use Case
Detailed insights into a single event (e.g. football).
Broader strategy covering multiple events.
Examples
Bet Builder (Single Bet)
Imagine a football match between Team A and Team B. User selects:
Team A to win (odds: 1.50)
Over 2.5 goals (odds: 2.00)
The combined Bet Builder odds might be calculated as 3.20, reflecting the correlation between these outcomes.
Express Bet (Combo Bet)
A user combines:
Team A to win their match (odds: 1.50)
Team B to win a different match (odds: 2.00)
The total odds for this Combo Bet would be 3.00 (1.50 × 2.00), since the outcomes are independent.
Mixing Bet Builder with Combo Bets
Bet Builder can be part of a Combo Bet when combined with other bets from different matches. For example:
A Bet Builder for Match 1 (odds: 3.20)
A Single Bet for Match 2 (odds: 2.50)
The final odds for the Express Bet would be 8.00 (3.20 × 2.50).
Detecting Bet Builder Availability for a Sport Event
To determine if the Bet Builder feature is available for a specific sport event, follow these steps:
1. Activation in STM
Before Bet Builder can be available for any event, DATA.BET admins must enable this feature in the STM system. For details on working with STM, refer to the STM Overview.
If Bet Builder is not enabled in STM, it will not appear in the odds feed, regardless of any other configuration.
2. Detecting Availability via Odds Feed
When the Bet Builder feature is available for a particular sport event, users will receive a dedicated log in the odds feed: app.data.bet/bet-builder.
This log includes the key enabled with a boolean value, indicating whether Bet Builder is active for the event.
Before a user see available selections, a POST request to /bet-builder/calculate must be sent to the MTS to define the scope of available markets for the Bet Builder. This request must also be triggered after each selection is added to ensure that the odds are recalculated and up-to-date before the bet is placed.
The response will contain the available markets with the updated odds for the selections. Each market includes the market id, the status, and an array of odds that are available for that market
Calculate Bet with bet_builder_selections
Before placing a bet, it is important to calculate the bet for the following reasons:
Calculate the total Bet Builder odd value: The calculation ensures that the odds for each Bet Builder selection are correctly combined. This results in a single total odd value that represents the overall outcome of the bet, which you must pass to the POST /bets request.
Check for Restrictions: The calculation will verify whether any restrictions apply to the bet, such as limits on stake, restrictions on certain types of bets, or any other platform-specific rules. This helps to ensure that the bet complies with all applicable constraints before proceeding.
When using the /bets/calculate endpoint, you will receive the details of the bet, including the calculated odds and any restrictions that apply. It is crucial that clients use the calculated value from the bet_builder_selections section of the response for the actual place bet request.
Once the user is satisfied with their selections in the Bet Builder, they need to place the bet by making a request to the /bets endpoint of the MTS. This request should include the bet_builder_selections in the payload.
To settle odds for bet builder bets in your sportsbook, you must ensure that your system listens for markets_updatedlogs from the odds feed. These updates provide the most recent odd statuses, which are essential for accurate bet builder calculation and settlement.
Bet Calculation Rules
Selection Status Evaluation: Assign an odd status (won, lost, refunded, etc.) to each selection in the bet builder.
If at least one selection is lost, the entire bet builder bet is considered lost.
If all selections are won, the bet builder is considered won.
Handling Voided or Refunded Selections:
If any selection in the bet builder is voided or refunded, the entire bet builder bet is refunded — it cannot be partially settled.
This differs from regular combo bets, where a voided selection would normally be removed and the odds recalculated.
Half-Win/Half-Loss Odd Statuses (Asian Markets) Not Applicable: Bet builder bets do not support half-win or half-loss statuses and asian markets in general. Each selection must be fully settled as won, lost, or refunded.
Odds in Bet Builder Selections: The odds provided in the bet_builder_selections are for informational purposes only. These odds cannot be multiplied to calculate the total bet builder odds.