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

© 2026 Gemini Space Station, Inc.

REST APIs
    Orders
    Market Data
    Derivatives
    Margin Trading
    Staking
    Clearing
    Instant Orders
    Fund Management
      Get Available BalancesGet Notional BalancesList Deposit AddressesCreate New Deposit AddressList Past TransfersList Custody Fee TransfersWithdraw Crypto FundsGet Gas Fee EstimationAdd BankAdd Bank (CAD)List Payment MethodsList Approved AddressesCreate New Approved AddressRemove Approved AddressTransfer Between AccountsGet Transaction History
WebSocket
    AuthenticationMessage Format
    Streams
      Book TickerL2 Partial DepthL2 Differential DepthTrade StreamOrder EventsBalance Updates
    Playground
      Overviewconninfopingtimesubscribeunsubscribelist_subscriptionsdepthorder.placeorder.cancelorder.cancel_allorder.cancel_session
Agentic
FIX

Withdraw Crypto Funds

TradingFund ManagementWithdraw Crypto Funds

Withdraw Crypto Funds

POSThttps://api.gemini.com/v1/withdraw/{currency}

Allows cryptocurrency withdrawal to a pre-approved address. The account must have an approved address list, the destination address must already be on that list, and the API key must have the Fund Manager role.

POSTv1/withdraw/eth
curl --request POST \
  --url https://api.gemini.com/v1/withdraw/eth \
  --header 'Content-Type: application/json' \
  --header 'X-GEMINI-APIKEY: <string>' \
  --header 'X-GEMINI-PAYLOAD: <string>' \
  --header 'X-GEMINI-SIGNATURE: <string>' \
  --data '
{
  "request": "/v1/withdraw/eth",
  "nonce": "<nonce>",
  "address": "0xA63123350Acc8F5ee1b1fBd1A6717135e82dBd28",
  "amount": "2.34567"
}
'

Roles

The API key you use to access this endpoint must have the Fund Manager role assigned. See Roles for more information.

The OAuth scope must have crypto:send 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

Path Parameters

networkstring·required
Can be bitcoin, ethereum, bitcoincash, litecoin, zcash, filecoin, dogecoin, tezos, solana, polkadot, avalanche, cosmos, or xrpl
tickerstring·required
The cryptocurrency ticker code (e.g., btc, eth, usdc). See Symbols and minimums.

Request Body

addressstring·required
The destination address for the withdrawal
amountstring·required
The amount to withdraw
memostring
Required for certain networks that use memos (e.g., Solana, XRP, Cosmos). The destination tag or memo for the withdrawal.
clientTransferIdstring (uuid)
A unique UUID for idempotent withdrawals. If provided, duplicate requests with the same `clientTransferId` will not create additional withdrawals.
Example request body
{
  "address": "mi98Z9brJ3TgaKsmvXatuRahbFRUFKRUdR",
  "amount": "1"
}

Responses

Successful operation

withdrawalIdstring
A unique ID for the withdrawal
addressstring
Standard string format of the withdrawal destination address
amountstring
The withdrawal amount
currencystring
The currency code of the withdrawn asset
feestring
The fee charged for the withdrawal
Example Responses
{
  "withdrawalId": "02176a83-a6b1-4202-9b85-1c1c92dd25c4",
  "address": "mi98Z9brJ3TgaKsmvXatuRahbFRUFKRUdR",
  "amount": "1",
  "currency": "BTC",
  "fee": "0"
}
PreviousList Custody Fee TransfersNextGet Gas Fee Estimation
Last modified on May 5, 2026