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
      Get TermsGet Terms StatusAccept Terms
    Order Management
    Positions
    Rewards
Combo Contracts
    Overview
Tickers
    OverviewCryptoSportsCommoditiesWeather
Schemas

Get Terms Status

REST APIsPrediction MarketsTermsGet Terms Status

Get Terms Status

GEThttps://api.gemini.com/v1/prediction-markets/terms/status

Returns whether the authenticated account group has accepted the latest Prediction Markets terms.

GETv1/prediction-markets/terms/status
curl --request GET \
  --url https://api.gemini.com/v1/prediction-markets/terms/status \
  --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 or Auditor role assigned. See Roles for more information.

The OAuth scope must have orders:read assigned to access this endpoint. See OAuth Scopes 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

Authenticated Payload

Sign the private REST payload with

Code
request: "/v1/prediction-markets/terms/status"
and a fresh
Code
nonce
. This endpoint has no endpoint-specific request body.

Responses

Terms acceptance status

hasAcceptedLatestboolean·required
Whether the account group has accepted the latest configured Prediction Markets termsExample: false
acceptedVersioninteger
Latest terms version accepted by the account group, if anyExample: 2
latestVersioninteger
Latest configured Prediction Markets terms version, if availableExample: 3
Example Responses
{
  "hasAcceptedLatest": true,
  "acceptedVersion": 3,
  "latestVersion": 3
}
PreviousGet TermsNextAccept Terms
Last modified on May 23, 2026