Skip to content

Superfecta

Aim of the Bet

To select the winner, the second, the third horse and fourth horse in the correct order.

Rules

Betting Rules

How to bet

Example of placing a 50p single line Superfecta bet. Use the position value to specify the finishing position for that selection.

mutation PlaceSuperfectaBet {
  placeBets(
    input: {
      ticketId: "ticket-ee48953d-6b6d-4d02-bd0b-24453d6525e6"
      bets: [
        {
          betId: "bet-trifecta-ee48953d-6b6d-4d02-bd0b-24453d6525e6"
          productId: "08f0a04e-0f38-4f6e-9d00-1834dba6190e"
          stake: { currencyCode: GBP, totalAmount: 0.50 }
          legs: [
            {
              productLegId: "ca524b02-fccf-43cd-aebe-1c719f768047"
              selections: [
                { productLegSelectionID: "797687f5-14ef-43ea-95aa-36722edee1bf", position: 1 }
                { productLegSelectionID: "a108f607-cb78-4345-9e5e-02d924cb9a5e", position: 2 }
                { productLegSelectionID: "47483547-da7b-490d-a517-7778d0d57887", position: 3 }
                { productLegSelectionID: "47483547-da7b-490d-a517-7778d0d57887", position: 4 }
              ]
            }
          ]
        }
      ]
    }
  ) {
    ticket {
      id
      toteId
      bets {
        nodes {
          id
          toteId
          placement {
            status
          }
        }
      }
    }
  }
}
{
  "data": {
    "placeBets": {
      "ticket": {
        "id": "ticket-ee48953d-6b6d-4d02-bd0b-24453d6525e6",
        "toteId": "dbcdb496-1ff6-4d52-b2d5-40c0641bf81e",
        "bets": {
          "nodes": [
            {
              "id": "bet-trifecta-ee48953d-6b6d-4d02-bd0b-24453d6525e6",
              "toteId": "c5204b3d6abf4ffd9769178df44124b5",
              "placement": {
                "status": "ACCEPTED"
              }
            }
          ]
        }
      }
    }
  }
}