Skip to main content
Return the total rebated maker fees for your account, optionally filtered by date or event.

Endpoint

GET https://api.futuur.com/wagers/rebates/

Authentication

This endpoint requires HMAC authentication. Include the Key, Timestamp, and HMAC headers on every request. See the authentication guide for signing instructions.

Parameters

date
string
Filter rebates to a specific calendar date (YYYY-MM-DD).
event
integer
Filter rebates to a specific event ID.

Response

rebated_fee_usd
number
required
Total rebated fees in USD for the selected scope.

Example

cURL
curl --request GET \
  --url "https://api.futuur.com/wagers/rebates/?date=2026-06-25&event=1023" \
  --header "Key: YOUR_PUBLIC_KEY" \
  --header "Timestamp: 1712500000" \
  --header "HMAC: YOUR_HMAC_SIGNATURE"
Sample response
{
  "rebated_fee_usd": 12.45
}