-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhighrollers.graphql
More file actions
49 lines (48 loc) · 1.08 KB
/
highrollers.graphql
File metadata and controls
49 lines (48 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# Get highroller sport bets (public feed — no token required)
# Requires: NO authentication
#
# highrollerSportBets returns the largest recent bets on the platform.
# Use limit/offset for pagination (max ~25 per request recommended).
#
# bettor.name — Stake username of the bettor
# amount — bet size in the bet's currency
# Use a price API (e.g. Binance) to convert to USD.
query GetHighrollers($limit: Int, $offset: Int) {
highrollerSportBets(limit: $limit, offset: $offset) {
bet {
... on SportBet {
id
amount
currency
status
payout
payoutMultiplier
potentialMultiplier
createdAt
user {
name
}
outcomes {
odds
fixtureName
outcome {
name
}
fixture {
name
status
tournament {
name
category {
sport {
name
slug
}
}
}
}
}
}
}
}
}