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

© 2026 Gemini Space Station, Inc.

Getting StartedAPI Specifications
Maker and Taker Incentives
    Market Maker ProgramMaker Rebate ProgramLiquidity Rewards ProgramTaker 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
      List EventsGet EventGet Strike Price for EventList Event CategoriesList Newly Listed EventsList Recently Settled EventsList Upcoming Events
    Volume
    Terms
    Order Management
    Positions
    Rewards
Combo Contracts
    Overview
Combos Request-for-Quote (RFQ)
    OverviewWebSocket StreamsQuote MethodsMaker IntegrationExamples
Tickers & Taxonomy
    OverviewCryptoSportsSports Market TaxonomyCommoditiesWeather
Schemas

Get Strike Price for Event

REST APIsPrediction MarketsEventsGet Strike Price for Event

Get Strike Price for Event

GEThttps://api.gemini.com/v1/prediction-markets/events/{eventTicker}/strike

Returns strike price information for a specific prediction market event. Useful for crypto Up/Down contracts where the strike price becomes available at the start of the observation window (typically ~5 minutes before expiry for 5M contracts). For Up/Down contracts, the value field will be null until the strike is captured at availableAt time.

GETv1/prediction-markets/events/BTC05M2603271950/strike
curl --request GET \
  --url https://api.gemini.com/v1/prediction-markets/events/BTC05M2603271950/strike

Path Parameters

eventTickerstring·required
The event ticker symbol (e.g., "BTC05M2603271950")

Responses

Successful response

valuestring
The strike price value. Null for "reference" type strikes where the value is determined at availableAt time. For sports contracts, this represents the derived numeric strike value (e.g. spread margin, total line, or position/rank threshold).Example: 87500.00
typestring·enum
Strike or condition inequality type for contract threshold evaluation. - `reference`: Crypto Up/Down reference strike price captured at `availableAt` time. - `above`: Higher/Lower contract threshold. - `spread`: Point, run, or goal handicap spread line. - `over`: Total or prop threshold evaluated as strict greater than (`>`). - `over_or_equal`: Total or prop threshold evaluated as greater than or equal to (`>=`). - `under`: Total or prop threshold evaluated as strict less than (`<`). - `under_or_equal`: Position, rank, or total threshold evaluated as less than or equal to (`<=`).Enum values: referenceabovespreadoverover_or_equalunderunder_or_equalExample: spread
availableAtstring (date-time)
When the strike price becomes availableExample: 2026-03-27T19:45:00.000Z
Example Responses
{
  "value": "98000.50",
  "type": "reference",
  "availableAt": "2026-03-27T19:45:00.000Z"
}
PreviousGet EventNextList Event Categories
Last modified on August 11, 2026