Get Maker Rebate Lifetime Summary GET https://api.gemini.com/v1/prediction-markets/maker-rebate/summary/total
Returns lifetime totals for the authenticated account's Maker Rebate payouts. Provide both dateFrom and dateTo to restrict to a date window, or omit both for all-time totals.
GET v1/prediction-markets/maker-rebate/summary/total
curl --request GET \
--url https://api.gemini.com/v1/prediction-markets/maker-rebate/summary/total \
--header 'X-GEMINI-APIKEY: <string>' \
--header 'X-GEMINI-PAYLOAD: <string>' \
--header 'X-GEMINI-SIGNATURE: <string>'Roles The API key you use to access this endpoint must have the Trader role assigned. See Roles for more information.
Headers X-GEMINI-APIKEY string · required
Your API key X-GEMINI-SIGNATURE string · required
HEX-encoded HMAC-SHA384 of payload signed with API secret X-GEMINI-PAYLOAD string · required
Base64-encoded JSON payload Content-Type string
Default: text/plain Content-Length string
Default: 0 Cache-Control string
Default: no-cache Query Parameters dateFrom string
Inclusive start of the payout date window (YYYY-MM-DD, Eastern Time). Must be provided together with dateTo. dateTo string
Inclusive end of the payout date window (YYYY-MM-DD, Eastern Time). Must be on or after dateFrom and within 5 years of it. Responses Properties Example
Successful response
total_earned_usd string · required
Sum of `total_rebate_usd` across payouts in the window. Example: 152.40 total_fill_count integer (int64) · required
Sum of qualifying maker fills across payouts in the window. Example: 4218 total_volume_usd string · required
Sum of qualifying maker volume (USD) across payouts in the window. Example: 304800.00 payout_count integer (int32) · required
Number of payouts in the window. Always present; `0` when no payouts exist in the window. Example: 27 first_payout_date string (date) · required
Date of the earliest payout in the window, or `null` if no payouts exist. Example: 2026-03-19 last_payout_date string (date) · required
Date of the most recent payout in the window, or `null` if no payouts exist. Example: 2026-05-20 {
"total_earned_usd": "152.40",
"total_fill_count": 4218,
"total_volume_usd": "304800.00",
"payout_count": 27,
"first_payout_date": "2026-03-19",
"last_payout_date": "2026-05-20"
}