Bet Placement

Bet Placement Flow

ticketBets APIchevron-right
  • Bet Placement Rules:

    • Bets are allowed as single or multi bets on Each-Way markets.

    • Multi bets are allowed only on different events with Each-Way markets.

    • When including Each-Way selections in a multi bet, the bet is essentially split into two parallel multi bets running simultaneously:

      1. Win multi — using the win part of each selection

      2. Place multi — using the place part of each selection

    • Each-Way bets are only allowed for markets with extraParameter:

      • Market.ExtraParameters : { "IsEW": "normal" or "handicap" }

    • If a bettor places €10 as Each-Way bet it needs to be sent as doubled meaning total stake is €20

Single bet example with total stake:

{  
  "id": "TestBet88",
  "player": {
    "deviceId": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36",
    "languageId": "en",
    "ip": "0.0.0.0",
    "segmentId": 1000
  },
  "priceChange": 1,
  "items": [
    {
      "eventId": 12345,
      "marketId": 71356478,
      "selectionId": 41009286,
      "price": 5.5
    }
  ],
  "betType": 0,
  "amount": {
    "currency": "EUR",
    "value": 200000,
    "precision": 4
  }
}

Multi bet example with total stake:

Last updated