GeminiGemini
Demo environmentGet API key
  • Overview
  • Crypto Trading
  • Prediction Markets
  • Perpetuals
  • Stocks
  • API Reference
  • SDKs & Tools
Changelog
Gemini logoGemini logo

© 2026 Gemini Space Station, Inc.

Overview
Core Concepts
    Events, contracts, and outcomesCombo contracts
Market Data
    OverviewFetching Markets
    Ticker formats
      OverviewCryptoSportsSports Market TaxonomyCommoditiesWeather
Trading
    QuickstartOrder lifecycle and settlement
    Full REST reference
      Combo RFQ
      Events
      Volume
      Terms
      Order Management
      Positions
      Rewards
        Get Maker Rebate RatesList Maker Rebate PayoutsGet Maker Rebate Lifetime SummaryGet Liquidity Rewards ConfigList Liquidity Rewards EventsGet Liquidity Rewards Daily SummaryGet Liquidity Rewards Lifetime Summary
    WebSocket APIs
      OverviewAuthenticationMessage format
      Streams
        Book tickerL2 partial depthL2 differential depthTrade streamOrder eventsBalance updatesPosition updatesContract statusPrediction
      Utility
      Subscriptions
      L2 Data
      Order management
      Combo RFQ
        OverviewWebSocket streamsQuote methodsMaker integrationExamples
Market Makers
    Maker Fee-Free Trading PromoTaker Rewards ProgramMaker Rebate ProgramLiquidity Rewards ProgramMarket Maker Program
Resources
    SchemasDemo environmentRate limitsErrors

Get Maker Rebate Lifetime Summary

REST APIsPrediction MarketsRewardsGet Maker Rebate Lifetime Summary

Get Maker Rebate Lifetime Summary

GEThttps://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.

GETv1/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-APIKEYstring·required
Your API key
X-GEMINI-SIGNATUREstring·required
HEX-encoded HMAC-SHA384 of payload signed with API secret
X-GEMINI-PAYLOADstring·required
Base64-encoded JSON payload
Content-Typestring
Default: text/plain
Content-Lengthstring
Default: 0
Cache-Controlstring
Default: no-cache

Query Parameters

dateFromstring
Inclusive start of the payout date window (YYYY-MM-DD, Eastern Time). Must be provided together with dateTo.
dateTostring
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

Successful response

total_earned_usdstring·required
Sum of `total_rebate_usd` across payouts in the window.Example: 152.40
total_fill_countinteger (int64)·required
Sum of qualifying maker fills across payouts in the window.Example: 4218
total_volume_usdstring·required
Sum of qualifying maker volume (USD) across payouts in the window.Example: 304800.00
payout_countinteger (int32)·required
Number of payouts in the window. Always present; `0` when no payouts exist in the window.Example: 27
first_payout_datestring (date)·required
Date of the earliest payout in the window, or `null` if no payouts exist.Example: 2026-03-19
last_payout_datestring (date)·required
Date of the most recent payout in the window, or `null` if no payouts exist.Example: 2026-05-20
Example Responses
{
  "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"
}
PreviousList Maker Rebate PayoutsNextGet Liquidity Rewards Config