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

REST APIsPrediction MarketsRewardsList Liquidity Rewards Events

List Liquidity Rewards Events

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

Returns the paginated list of events currently participating in the Liquidity Rewards program. Public endpoint; no authentication required. Each event includes its daily reward pool, pool source, end timestamp, and qualifying maker count. Filter by category, search by title, and sort by daily pool, end time, title, category, or competition.

GETv1/prediction-markets/liquidity-rewards/events
curl --request GET \
  --url 'https://api.gemini.com/v1/prediction-markets/liquidity-rewards/events?sort=daily_pool_desc&limit=20'

Query Parameters

categorystring
Comma-separated list of category names. Whitespace is trimmed and empty entries are dropped.
searchstring
Filter events by title substring (case-insensitive).
sortstring·enum
Sort order for the returned events. Defaults to daily_pool_desc.Enum values: daily_pool_descdaily_pool_ascends_soonestends_latesttitle_asctitle_desccategory_asccategory_desccompetition_asccompetition_descDefault: daily_pool_desc
limitinteger
Maximum number of events to return (default 50, clamped to [1, 100]).Default: 50
offsetinteger
Number of events to skip (default 0).Default: 0

Responses

Successful response

eventsarray·required
events[].event_tickerstring·required
Event ticker (e.g. `BTC2605202100`).Example: BTC2605202100
events[].titlestring·required
Event title.Example: BTC above $95,000?
events[].categorystring·required
Market category.Example: Crypto
events[].daily_pool_usdstring·required
Daily USD reward pool budgeted for this event.Example: 500.00
events[].pool_sourcestring·enum·required
Whether the pool came from a per-event override or the category default.Enum values: event_overridecategory_defaultunspecifiedExample: event_override
events[].ends_atstring (date-time)·required
ISO-8601 timestamp at which the event ends and stops scoring. `null` when the underlying event has no end timestamp set.Example: 2026-05-20T21:00:00Z
events[].qualifying_maker_countinteger (int32)·required
Number of accounts that met qualifying-maker criteria in the most recent snapshot window for this event.Example: 14
events[].icon_urlstring
Optional URL for the event icon. Omitted when not configured.Example: https://example.com/btc.png
paginationobject·required
pagination.limitinteger
Example: 50
pagination.offsetinteger
Example: 0
pagination.totalinteger
Example: 100
last_score_datestring (date)·required
Most recent date for which scoring has been written. `null` when no scoring has run yet.Example: 2026-05-19
Example Responses
{
  "events": [
    {
      "event_ticker": "BTC2605202100",
      "title": "BTC above $95,000?",
      "category": "Crypto",
      "daily_pool_usd": "500.00",
      "pool_source": "event_override",
      "ends_at": "2026-05-20T21:00:00Z",
      "qualifying_maker_count": 14,
      "icon_url": "https://example.com/btc.png"
    },
    {
      "event_ticker": "FRENCHOPEN-FINAL",
      "title": "French Open 2026 — Men's Final winner",
      "category": "Sports",
      "daily_pool_usd": "250.00",
      "pool_source": "category_default",
      "ends_at": "2026-06-07T15:00:00Z",
      "qualifying_maker_count": 7
    }
  ],
  "pagination": {
    "limit": 50,
    "offset": 0,
    "total": 2
  },
  "last_score_date": "2026-05-19"
}
PreviousGet Liquidity Rewards ConfigNextGet Liquidity Rewards Daily Summary
Last modified on May 23, 2026