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

Get Liquidity Rewards Daily Summary

REST APIsPrediction MarketsRewardsGet Liquidity Rewards Daily Summary

Get Liquidity Rewards Daily Summary

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

Returns daily Liquidity Rewards payouts for the authenticated account within the requested date window. Both dateFrom and dateTo are required. Each daily entry includes the total reward, payout status, paid-at timestamp, and per-event score breakdowns.

GETv1/prediction-markets/liquidity-rewards/summary/daily
curl --request GET \
  --url https://api.gemini.com/v1/prediction-markets/liquidity-rewards/summary/daily \
  --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·required
Inclusive start of the date window (YYYY-MM-DD, Eastern Time).
dateTostring·required
Inclusive end of the date window (YYYY-MM-DD, Eastern Time). Must be on or after dateFrom.

Responses

Successful response

daily_summariesarray·required
daily_summaries[].payout_datestring (date)·required
Date the payout applies to (Eastern Time).Example: 2026-05-07
daily_summaries[].total_reward_usdstring·required
Total USD reward for the day across all events the account scored on.Example: 12.45
daily_summaries[].payout_statusstring·required
Status of the day's payout (e.g. `PENDING`, `PAID`, `ZERO_AMOUNT`).Example: PAID
daily_summaries[].paid_atstring (date-time)·required
ISO-8601 timestamp the day's payout was credited. Always present; `null` if not yet paid.Example: 2026-05-08T21:00:00Z
daily_summaries[].eventsarray·required
Per-event score breakdown showing how the day's total was distributed.
daily_summaries[].events[].event_idinteger (int64)·required
Stable event identifier.Example: 1234567890
daily_summaries[].events[].event_namestring·required
Event title.Example: BTC above $95,000?
daily_summaries[].events[].category_namestring·required
Market category.Example: Crypto
daily_summaries[].events[].normalized_scorestring·required
This account's normalized score for the event on the scoring date (0-1 range as a decimal string).Example: 0.4521
daily_summaries[].events[].snapshot_countinteger (int32)·required
Number of snapshots in which this account had a qualifying quote.Example: 1180
daily_summaries[].events[].total_snapshotsinteger (int32)·required
Total snapshots taken for the event on the scoring date.Example: 1440
daily_summaries[].events[].event_reward_usdstring·required
Portion of the day's total reward attributed to this event.Example: 8.20
Example Responses
{
  "daily_summaries": [
    {
      "payout_date": "2026-05-07",
      "total_reward_usd": "12.45",
      "payout_status": "PAID",
      "paid_at": "2026-05-08T21:00:00Z",
      "events": [
        {
          "event_id": 1234567890,
          "event_name": "BTC above $95,000?",
          "category_name": "Crypto",
          "normalized_score": "0.4521",
          "snapshot_count": 1180,
          "total_snapshots": 1440,
          "event_reward_usd": "8.20"
        },
        {
          "event_id": 9876543210,
          "event_name": "ETH above $4,000?",
          "category_name": "Crypto",
          "normalized_score": "0.2341",
          "snapshot_count": 920,
          "total_snapshots": 1440,
          "event_reward_usd": "4.25"
        }
      ]
    },
    {
      "payout_date": "2026-05-06",
      "total_reward_usd": "0",
      "payout_status": "ZERO_AMOUNT",
      "paid_at": null,
      "events": []
    }
  ]
}
PreviousList Liquidity Rewards EventsNextGet Liquidity Rewards Lifetime Summary
Last modified on May 23, 2026