Retrieve all wagers associated with an event. Filter to active positions, past bets, or a specific currency mode to narrow the results. This endpoint returns a non-paginated array of WagerList objects.
Endpoint
GET https://api.futuur.com/events/{id}/wagers/
Authentication
HMAC authentication is required. Include the following headers with every request:
Header Description KeyYour public API key TimestampCurrent Unix timestamp HMACSHA-512 signature of the request payload
Parameters
The unique identifier of the event.
When true, returns only wagers that are currently active (open positions). When false, returns only inactive wagers.
currency_mode
string
default: "play_money"
Filter wagers by currency mode. Accepted values: play_money, real_money.
When true, includes wagers that have already been settled or closed.
Response
Returns a JSON array of WagerList objects (no pagination wrapper). Each element includes:
Wager status: purchased, sold, won, lost, cancelled, or disabled.
Human-readable status label.
Market resource reference (read-only).
Position direction: long or short.
Human-readable position label.
Currency code for the wager.
Consolidated shares held in this wager.
Total amount associated with the wager.
Cost basis of the open position.
Return on investment for the wager.
ISO 8601 datetime of the most recent purchase.
ISO 8601 datetime of the most recent wager update.
Example
curl --request GET \
--url "https://api.futuur.com/events/1023/wagers/?currency_mode=play_money&active=true" \
--header "Key: YOUR_PUBLIC_KEY" \
--header "Timestamp: 1712500000" \
--header "HMAC: YOUR_HMAC_SIGNATURE"
[
{
"id" : 4401 ,
"status" : "purchased" ,
"status_display" : "Purchased" ,
"user" : "https://api.futuur.com/users/120/" ,
"event" : "https://api.futuur.com/events/1023/" ,
"market" : "https://api.futuur.com/markets/501/" ,
"position" : "long" ,
"position_display" : "Long" ,
"currency" : "OOM" ,
"shares" : 50.0 ,
"shares_in_canonical" : 50.0 ,
"total_amount" : "31.00" ,
"purchases_amount" : 31.0 ,
"active_purchases_amount" : "31.00" ,
"roi" : "8.06" ,
"earnings" : "2.50" ,
"amount_on_win" : "50.00" ,
"amount_on_sell" : "33.50" ,
"last_profit" : null ,
"last_purchase" : "2026-03-15T14:22:10Z" ,
"last_update" : "2026-03-15T14:22:10Z" ,
"actions_count" : 1
}
]