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
REST API
    OverviewGet Open PositionsGet Account MarginGet Funding AmountGet Next Funding TimestampGet Funding Amount Report FileList Funding PaymentsGet Funding Payment Report FileGet Funding Payment Report JSONGet Risk Stats

Get Funding Amount

PerpetualsApplies specifically to perpetual contracts.
TradingPerpetualsGet Funding Amount

Get Funding Amount

GEThttps://api.gemini.com/v1/fundingamount/{symbol}

Retrieves the current and estimated funding amounts for a perpetuals trading pair.

GETv1/fundingamount/BTCGUSDPERP
curl --request GET \
  --url https://api.gemini.com/v1/fundingamount/BTCGUSDPERP

Path Parameters

symbolstring·required
Trading pair symbol BTCGUSDPERP, etc. See symbols and minimums.

Responses

The response will be an object

symbolstring
The requested symbol. See [**symbols and minimums**](/market-data/symbols-and-minimums#all-supported-symbols)
fundingDateTimestring
UTC date time in format `yyyy-MM-ddThh:mm:ss.SSSZ` format
fundingTimestampMilliSecsnumber (long)
Current funding amount Epoc time.
nextFundingTimestampnumber (long)
Next funding amount Epoc time.
amountnumber (decimal)
The dollar amount for a Long 1 position held in the symbol for funding period (1 hour)
estimatedFundingAmountnumber (decimal)
The estimated dollar amount for a Long 1 position held in the symbol for next funding period (1 hour)
Example Responses
{
  "symbol": "BTCGUSDPERP",
  "fundingDateTime": "2025-04-22T18:00:00.000Z",
  "fundingTimestampMilliSecs": 1745344800000,
  "nextFundingTimestamp": 1745348400000,
  "fundingAmount": -1.50991,
  "estimatedFundingAmount": -2.10595
}
PreviousGet Account MarginNextGet Funding Amount Report File