Skip to main content
List all betting actions (wager activity) associated with an event. For real money events, user-identifying information is anonymized in the response. You can filter the feed to show only your own bets or bets from users you follow.

Endpoint

GET https://api.futuur.com/events/{id}/actions/

Authentication

HMAC authentication is required. Include the following headers with every request:
HeaderDescription
KeyYour public API key
TimestampCurrent Unix timestamp
HMACSHA-512 signature of the request payload

Parameters

id
integer
required
The unique identifier of the event.
currency_mode
string
Filter actions by currency mode. Accepted values: play_money, real_money. Leave empty to return actions for both modes.
following
boolean
default:"false"
When true, returns only actions from users you follow.
my_bets
boolean
default:"false"
When true, returns only your own betting actions.
Full-text search query to filter actions. Maximum 100 characters.

Response

results
object[]
required
Array of wager action objects.

Example

cURL
curl --request GET \
  --url "https://api.futuur.com/events/1023/actions/?currency_mode=play_money&my_bets=false" \
  --header "Key: YOUR_PUBLIC_KEY" \
  --header "Timestamp: 1712500000" \
  --header "HMAC: YOUR_HMAC_SIGNATURE"
Sample response
{
  "results": [
    {
      "id": 8801,
      "action_type": "buy",
      "market": 501,
      "outcome": 1,
      "shares": 50.0,
      "amount": 31.0,
      "price": 0.62,
      "currency_mode": "play_money",
      "user": {
        "id": 204,
        "username": "trader_jane"
      },
      "created_at": "2026-03-15T14:22:10Z"
    },
    {
      "id": 8802,
      "action_type": "sell",
      "market": 501,
      "outcome": 2,
      "shares": 20.0,
      "amount": 7.6,
      "price": 0.38,
      "currency_mode": "real_money",
      "user": {
        "id": null,
        "username": "anonymous"
      },
      "created_at": "2026-03-15T14:30:45Z"
    }
  ]
}