Endpoint

Endpoint:

Cashout Feed

Revision is UNIX timestamp seconds, in case you need to recover the availability of cashout and price value for existing bets. It can return data for max 3 days in past. But it will only return data for the bets that are in the subscription at the moment of connection.

Stream message with cashout amount for a single bet:

{
    playerId: "player1",
    betId: "id1",
    status: 1, //enum value, Available = 1, NotSupported = 2, CashedOut = 3
    reason: null, //string, reason if cashout is not available
    amount: {
        localAmount: 40000,
        precision: 4,
        currency: "USD",
    }
    timestamp: "2025-07-16T14:30:00Z",
}

Last updated