GeminiGemini
SandboxGet API key
  • Crypto Trading
  • Prediction Markets
Changelog
Gemini Crypto Exchange LogoGemini Crypto Exchange Logo

© 2026 Gemini Space Station, Inc.

Getting Started
Market Makers
    Maker Rebate ProgramLiquidity Rewards Program
WebSocket
    IntroductionAuthenticationMessage Format
    Streams
      Book TickerL2 Partial DepthL2 Differential DepthTrade StreamOrder EventsBalance UpdatesPosition UpdatesContract Status
    Playground
      OverviewconninfopingtimeSUBSCRIBEUNSUBSCRIBELIST_SUBSCRIPTIONSdepthorder.placeorder.cancelorder.cancel_allorder.cancel_session
REST APIs
    Combos
    Events
    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
Combo Contracts
    Overview
Tickers
    OverviewCryptoSportsCommoditiesWeather
Schemas

List Maker Rebate Payouts

REST APIsPrediction MarketsRewardsList Maker Rebate Payouts

List Maker Rebate Payouts

POSThttps://api.gemini.com/v1/prediction-markets/maker-rebate/payouts

Returns the authenticated account's Maker Rebate payout history, most recent first. Pagination is read from limit (clamped to [1, 100], default 50) and offset (default 0) query parameters.

POSTv1/prediction-markets/maker-rebate/payouts
curl --request POST \
  --url https://api.gemini.com/v1/prediction-markets/maker-rebate/payouts \
  --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

limitinteger
Maximum number of payouts to return (default 50, clamped to [1, 100]).Default: 50
offsetinteger
Number of payouts to skip (default 0).Default: 0

Responses

Successful response

payoutsarray·required
payouts[].idinteger (int64)·required
Stable payout identifier.Example: 9182
payouts[].total_volume_usdstring·required
Total qualifying maker volume contributing to this payout, in USD.Example: 12450.00
payouts[].total_rebate_usdstring·required
Total rebate paid, in USD.Example: 6.23
payouts[].total_fill_countinteger (int32)·required
Number of qualifying maker fills that contributed to the payout.Example: 187
payouts[].statusstring·required
Payout status (e.g. `PENDING`, `PAID`).Example: PAID
payouts[].paid_atstring (date-time)·required
ISO-8601 timestamp at which the rebate was credited. Always present; `null` for payouts that have not yet been paid.Example: 2026-05-20T21:00:00Z
payouts[].created_atstring (date-time)·required
ISO-8601 timestamp at which the payout row was created. Always present.Example: 2026-05-20T20:55:12Z
Example Responses
{
  "payouts": [
    {
      "id": 9182,
      "total_volume_usd": "12450.00",
      "total_rebate_usd": "6.23",
      "total_fill_count": 187,
      "status": "PAID",
      "paid_at": "2026-05-20T21:00:00Z",
      "created_at": "2026-05-20T20:55:12Z"
    },
    {
      "id": 9173,
      "total_volume_usd": "8920.50",
      "total_rebate_usd": "4.46",
      "total_fill_count": 124,
      "status": "PAID",
      "paid_at": "2026-05-19T21:00:00Z",
      "created_at": "2026-05-19T20:55:08Z"
    }
  ]
}
PreviousGet Maker Rebate RatesNextGet Maker Rebate Lifetime Summary
Last modified on May 23, 2026