Bet Placement

Bet Placement Flow

ticketBets APIchevron-right

Since a market can start as a Starting Price (SP) market and later become a normal market after a configured timepoint, bet placement should follow these rules:

  • Bet Placement Rules:

    • Bet placement is allowed only for single and multi bets on Starting Price markets.

    • Starting Price bets should only be allowed when:

      Market.ExtraParameters : { "IsSp": "true" }

    • Odds are not provided during SP bet placement.

    • Live events are not allowed to accept bets for Starting Price markets.

Bet placement example:

{
  "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": 1,
      "selectionId": 2,
      "racingSelection": null,
      "price": null
    }
  ],
  "betType": 0,
  "amount": {
    "currency": "EUR",
    "value": 10000,
    "precision": 4
  }
}

Last updated