GeminiGemini
Demo environmentGet API key
  • Overview
  • Crypto Trading
  • Prediction Markets
  • Perpetuals
  • Stocks
  • API Reference
  • SDKs & Tools
Changelog
Gemini logoGemini logo

© 2026 Gemini Space Station, Inc.

Overview
Spot
    OverviewGet started
    Orders API
    Market Data API
    Fund Management API
    Instant Orders API
    WebSocket API
    FIX API
Margin
    Overview
    Margin REST API
      Get Margin Account SummaryGet Margin Interest RatesPreview Margin Order Impact
Staking
    Overview
    Staking REST API
      List Staking BalancesStake Crypto FundsUnstake Crypto FundsList Staking Event HistoryList Staking RatesList Staking Rewards
Clearing
    Clearing REST API
      Clearing Orders
      Broker & Trade Operations

List Staking Rates

TradingStakingList Staking Rates

List Staking Rates

GEThttps://api.gemini.com/v1/staking/rates

Returns the current Gemini Staking interest rates (in bps). The response is grouped by provider and includes each supported asset's rate, APY, and deposit limit.

GETv1/staking/rates
curl --request GET \
  --url https://api.gemini.com/v1/staking/rates

Responses

JSON response with staking rates

provider_uuidobject
Currency Symbol Keys
provider_uuid.currency_symbolobject
provider_uuid.currency_symbol.providerIdstring
Provider Id, in uuid4 formatExample: 62bb4d27-a9c8-4493-a737-d4fa33994f1f
provider_uuid.currency_symbol.ratenumber (decimal)
Staking interest rate in bps (Expressed as a simple rate. Interest on Staking balances compounds daily. In mobile and web applications, APYs are derived from this rate and rounded to 1/10th of a percent.)Example: 429.386
provider_uuid.currency_symbol.apyPctnumber (decimal)
Staking interest APY (Expressed as a percentage derived from the rate and rounded to 1/10th of a percent.)Example: 4.39
provider_uuid.currency_symbol.ratePctnumber (decimal)
`rate` expressed as a percentageExample: 4.29386
provider_uuid.currency_symbol.depositUsdLimitinteger
Maximum new amount in USD notional of this crypto that can participate in Gemini Staking per account per monthExample: 500000
Example Responses
{
  "62bb4d27-a9c8-4493-a737-d4fa33994f1f": {
    "MATIC": {
      "providerId": "62bb4d27-a9c8-4493-a737-d4fa33994f1f",
      "rate": 95.8909,
      "apyPct": 0.96,
      "ratePct": 0.958909,
      "depositUsdLimit": 500000
    },
    "ETH": {
      "providerId": "62bb4d27-a9c8-4493-a737-d4fa33994f1f",
      "rate": 228.0197,
      "apyPct": 2.31,
      "ratePct": 2.280197,
      "depositUsdLimit": 500000
    },
    "SOL": {
      "providerId": "62bb4d27-a9c8-4493-a737-d4fa33994f1f",
      "rate": 321.5282,
      "apyPct": 3.27,
      "ratePct": 3.215282,
      "depositUsdLimit": 500000
    }
  }
}
PreviousList Staking Event HistoryNextList Staking Rewards