Skip to content

Win

Aim of the Bet

To select the winning (finishes in first position) horse.

Rules

Betting Rules

How to bet

Example of placing a 50p Win Bet

mutation PlaceWinBet {
  placeBets(
    input: {
      ticketId: "ticket-57d41c6d-cff5-4f50-a56b-460291f5e4a2"
      bets: [
        {
          betId: "bet-win-57d41c6d-cff5-4f50-a56b-460291f5e4a2"
          productId: "b6843994-d84d-4373-be01-6c5f0510b71d"
          stake: { currencyCode: GBP totalAmount: 0.50 }
          legs: [
            {
              productLegId: "e384157e-3132-406e-bec8-958afd803f4a"
              selections: [{ productLegSelectionID: "ee7c114b-84fe-4241-8a93-06b442640e09" }]
            }
          ]
        }
      ]
    }
  ) {
    ticket {
      id
      toteId
      bets {
        nodes {
          id
          toteId
          placement {
            status
          }
        }
      }
    }
  }
}
{
  "data": {
    "placeBets": {
      "ticket": {
        "id": "ticket-57d41c6d-cff5-4f50-a56b-460291f5e4a2",
        "toteId": "8a89047c-f93e-4943-a8e4-420165829a6f",
        "bets": {
          "nodes": [
            {
              "id": "bet-win-57d41c6d-cff5-4f50-a56b-460291f5e4a2",
              "toteId": "93a046932a8441f1b8c02fb4876e5d45",
              "placement": {
                "status": "ACCEPTED"
              }
            }
          ]
        }
      }
    }
  }
}