Exacta
Aim of the Bet¶
To select the winner and the second horse in the correct order. It is Tote's version of the computer straight forecast or CSF.
Rules¶
How to bet¶
Example of placing a 50p single line Exacta Bet. Make 2 selections from the leg, and supply a finish position for each selection.
mutation PlaceExactaBet {
placeBets(
input: {
ticketId: "ticket-e25b77de-1430-40bb-bf5b-3c53bf338358"
bets: [
{
betId: "bet-exacta-e25b77de-1430-40bb-bf5b-3c53bf338358"
productId: "4f29c739-9945-4dbb-a2ed-d8327e310a80"
stake: { currencyCode: GBP, totalAmount: 0.50 }
legs: [
{
productLegId: "80abfc18-090c-41a0-b1d2-4f2fc7a267a3"
selections: [
{ productLegSelectionID: "312e57e1-f228-45a3-ab3d-0a429940be9e", position: 1 }
{ productLegSelectionID: "f9afcb8f-56f3-4848-9b05-447aed22edb1", position: 2 }
]
}
]
}
]
}
) {
ticket {
id
toteId
bets {
nodes {
id
toteId
placement {
status
}
}
}
}
}
}
{
"data": {
"placeBets": {
"ticket": {
"id": "ticket-e25b77de-1430-40bb-bf5b-3c53bf338358",
"toteId": "dc0152a1-64ef-4e8c-9e5b-3e79a47889a5",
"bets": {
"nodes": [
{
"id": "bet-exacta-e25b77de-1430-40bb-bf5b-3c53bf338358",
"toteId": "0278e9689ad341f1a5b32b8d5f72af0c",
"placement": {
"status": "ACCEPTED"
}
}
]
}
}
}
}
}
Permutations¶
You can make more than two selections, and this will perm up the bet to cover multiple lines. In the example below, we make 2 selections in first place and 2 selections in second place, this makes for a total of 2 lines, at 25p per line for a total bet of 50p.
Lines Covered
- 1st - 1219831 & 2nd - 1219832
- 1st - 1219832 & 2nd - 1219831
mutation PlaceExactaPermBet {
placeBets(
input: {
ticketId: "ticket-46b0b17d-9352-4cd3-8297-fa0f83013915"
bets: [
{
betId: "bet-exacta-perm-46b0b17d-9352-4cd3-8297-fa0f83013915"
productId: 439868
stake: { currencyCode: GBP, totalAmount: 0.50 }
legs: [
{
productLegId: 498487
selections: [
{ productLegSelectionID: 1219831, position: 1 }
{ productLegSelectionID: 1219832, position: 1 }
{ productLegSelectionID: 1219831, position: 2 }
{ productLegSelectionID: 1219832, position: 2 }
]
}
]
}
]
}
) {
ticket {
id
toteId
bets {
nodes {
id
toteId
placement {
status
}
}
}
}
}
}
Response
{
"data": {
"placeBets": {
"ticket": {
"id": "ticket-57b00eaf-b644-47d3-ad33-76be283f5409",
"toteId": "f3cb399a-a96f-41c9-84ac-3a7022d8b041",
"bets": {
"nodes": [
{
"id": "bet-swinger-perm-57b00eaf-b644-47d3-ad33-76be283f5409",
"toteId": "f2d1fca49328453cb34ed17697a048d0",
"placement": {
"status": "ACCEPTED"
}
}
]
}
}
}
}
}