155API

Bet Types

Available bet types and selection requirements


Games support different bet types that determine how players make selections and how winnings are calculated.

Available Bet Types

Bet TypeDescriptionSelection Size
PickWinnerPick one or more items - win if any of your picks comes first1+ items
StraightForecastPick 2 items to finish 1st and 2nd in exact order2 items
ReverseForecastPick 2 items to finish 1st and 2nd in any order2 items
TricastPick 3 items to finish 1st, 2nd, and 3rd in exact order3 items
CombinationTricastPick 3 items to finish in top 3 in any order3 items

Bet Type Details

PickWinner

The player selects one or more items they believe will win. If any of their selected items finishes first, the bet wins.

{
  "meta": {
    "betType": "PickWinner",
    "selection": ["item-uuid-1", "item-uuid-2"]
  }
}

Some games allow selecting multiple items for PickWinner bets. The bet wins if any of the selected items comes first.

StraightForecast

The player predicts exactly which items will finish 1st and 2nd, in that specific order.

{
  "meta": {
    "betType": "StraightForecast",
    "selection": ["1st-place-uuid", "2nd-place-uuid"]
  }
}

ReverseForecast

The player picks 2 items that must finish in the top 2 positions, but the order doesn't matter.

{
  "meta": {
    "betType": "ReverseForecast",
    "selection": ["item-uuid-1", "item-uuid-2"]
  }
}

Tricast

The player predicts exactly which items will finish 1st, 2nd, and 3rd, in that specific order.

{
  "meta": {
    "betType": "Tricast",
    "selection": ["1st-place-uuid", "2nd-place-uuid", "3rd-place-uuid"]
  }
}

CombinationTricast

The player picks 3 items that must finish in the top 3 positions, but the order doesn't matter.

{
  "meta": {
    "betType": "CombinationTricast",
    "selection": ["item-uuid-1", "item-uuid-2", "item-uuid-3"]
  }
}

Game Support

Not all games support all bet types. Check the allowedBetTypes field in the Get Games response to see which bet types are available for each game.

{
  "id": "game-uuid",
  "name": "Marble Race",
  "allowedBetTypes": ["PickWinner", "StraightForecast", "ReverseForecast"]
}

On this page