Get Liquidity Rewards Daily Summary GET https://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.
GET v1/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-APIKEY string · required
Your API key X-GEMINI-SIGNATURE string · required
HEX-encoded HMAC-SHA384 of payload signed with API secret X-GEMINI-PAYLOAD string · required
Base64-encoded JSON payload Content-Type string
Default: text/plain Content-Length string
Default: 0 Cache-Control string
Default: no-cache Query Parameters dateFrom string · required
Inclusive start of the date window (YYYY-MM-DD, Eastern Time). dateTo string · required
Inclusive end of the date window (YYYY-MM-DD, Eastern Time). Must be on or after dateFrom. Responses Properties Example
Successful response
daily_summaries array · required
daily_summaries[].payout_date string (date) · required
Date the payout applies to (Eastern Time). Example: 2026-05-07 daily_summaries[].total_reward_usd string · required
Total USD reward for the day across all events the account scored on. Example: 12.45 daily_summaries[].payout_status string · required
Status of the day's payout (e.g. `PENDING`, `PAID`, `ZERO_AMOUNT`). Example: PAID daily_summaries[].paid_at string (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[].events array · required
Per-event score breakdown showing how the day's total was distributed. daily_summaries[].events[].event_id integer (int64) · required
Stable event identifier. Example: 1234567890 daily_summaries[].events[].event_name string · required
Event title. Example: BTC above $95,000? daily_summaries[].events[].category_name string · required
Market category. Example: Crypto daily_summaries[].events[].normalized_score string · 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_count integer (int32) · required
Number of snapshots in which this account had a qualifying quote. Example: 1180 daily_summaries[].events[].total_snapshots integer (int32) · required
Total snapshots taken for the event on the scoring date. Example: 1440 daily_summaries[].events[].event_reward_usd string · required
Portion of the day's total reward attributed to this event. Example: 8.20 {
"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": []
}
]
}