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 Liquidity Rewards Config

REST APIsPrediction MarketsRewardsGet Liquidity Rewards Config

Get Liquidity Rewards Config

GEThttps://api.gemini.com/v1/prediction-markets/liquidity-rewards/config

Returns the Liquidity Rewards program configuration. Public endpoint; no authentication required. When fully configured, returns max_spread_cents, min_payout_threshold_usd, and enabled: true. When not yet fully configured, returns { enabled: false } only.

GETv1/prediction-markets/liquidity-rewards/config
curl --request GET \
  --url https://api.gemini.com/v1/prediction-markets/liquidity-rewards/config

Responses

Successful response

max_spread_centsinteger (int32)
Quotes wider than this spread score zero in the scoring algorithm. Only present when `enabled` is `true`.Example: 10
min_payout_threshold_usdstring
Daily reward amounts below this threshold are suppressed (sub-threshold accounts get no row at all). Only present when `enabled` is `true`.Example: 1.00
enabledboolean·required
True when the program is fully configured upstream. When false, the response collapses to `{ "enabled": false }` only.Example: true
Example Responses
{
  "max_spread_cents": 10,
  "min_payout_threshold_usd": "1.00",
  "enabled": true
}
PreviousGet Maker Rebate Lifetime SummaryNextList Liquidity Rewards Events