Skip to content

Placepot

Aim of the Bet

To select a horse to be placed in each of the nominated races. The standard Tote Placepot will typically involve the first six races of each meeting

Rules

Betting Rules

How to bet

Example of placing a 50p single line Placepot bet.

mutation PlacePlacepotBet {
  placeBets(
    input: {
      ticketId: "ticket-ccaf2fb2-03b5-4c5b-98b1-1f156f0ba3f6"
      bets: [
        {
          betId: "bet-placepot-ccaf2fb2-03b5-4c5b-98b1-1f156f0ba3f6"
          productId: "512e57e1-f228-45a3-ab3d-0a429940be9e"
          stake: { currencyCode: GBP, totalAmount: 0.50 }
          legs: [
            {
              productLegId: "4a5c58dc-e3c5-455d-a1e4-586a328ba406"
              selections: [{ productLegSelectionID: "248f7658-9215-4b89-8cba-df5ff039b416" }]
            }
            {
              productLegId: "0f22ca97-5486-4214-ab1e-c5dc90b5e05c"
              selections: [{ productLegSelectionID: "f9ebf219-4121-438c-a1eb-9e8903440fd8" }]
            }
            {
              productLegId: "aed0dddb-538c-4b1c-be29-6194a54c7cb1"
              selections: [{ productLegSelectionID: "ad2656f3-6be2-41fc-a151-104a32e0933a" }]
            }
            {
              productLegId: "d73a8091-eebe-4bd9-9ec0-a5b391142878"
              selections: [{ productLegSelectionID: "31a4396f-1abf-44a1-b3ae-8efb4a8e8ea9" }]
            }
            {
              productLegId: "80abfc18-090c-41a0-b1d2-4f2fc7a267a3"
              selections: [{ productLegSelectionID: "192e57e1-f228-45a3-ab3d-0a429940be9e" }]
            }
            {
              productLegId: "d9b9bcd4-76e2-4342-bc22-54d0de88f3fc"
              selections: [{ productLegSelectionID: "3b37e4b0-45e6-49bb-bd02-46b6c044f8ad" }]
            }
          ]
        }
      ]
    }
  ) {
    ticket {
      id
      toteId
      bets {
        nodes {
          id
          toteId
          placement {
            status
          }
        }
      }
    }
  }
}
{
  "data": {
    "placeBets": {
      "ticket": {
        "id": "ticket-ccaf2fb2-03b5-4c5b-98b1-1f156f0ba3f6",
        "toteId": "46cb108a-92d5-4dab-8998-e2cf23c976b8",
        "bets": {
          "nodes": [
            {
              "id": "bet-placepot-ccaf2fb2-03b5-4c5b-98b1-1f156f0ba3f6",
              "toteId": "ee1f5ca18f90418f8f70a36dfda9efe0",
              "placement": {
                "status": "ACCEPTED"
              }
            }
          ]
        }
      }
    }
  }
}