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
      List SymbolsGet Symbol DetailsGet TickerList CandlesList Derivative CandlesList Fee PromosGet Current Order BookList TradesList PricesFX RateGet Assets for NetworkGet Network
    Derivatives
    Margin Trading
    Staking
    Clearing
    Instant Orders
WebSocket
    AuthenticationMessage Format
    Streams
      Book TickerL2 Partial DepthL2 Differential DepthTrade StreamOrder EventsBalance Updates
    Playground
      Overviewconninfopingtimesubscribeunsubscribelist_subscriptionsdepthorder.placeorder.cancelorder.cancel_allorder.cancel_session
Agentic
FIX

Get Assets for Network

TradingMarket DataGet Assets for Network

Get Assets for Network

GEThttps://api.gemini.com/v2/networks/{network}/assets

Retrieves the enabled assets (tokens) available on a specified blockchain network. Use this endpoint to discover all tokens that support deposits and withdrawals on a particular blockchain network. The `assets` field in the response is always an array, sorted alphabetically, containing one or more enabled asset codes.

GETv2/networks/ethereum/assets
curl --request GET \
  --url https://api.gemini.com/v2/networks/ethereum/assets

Path Parameters

networkstring·required
Blockchain network identifier (lowercase). Supported networks include: ethereum, solana, bitcoin, optimism, arbitrum, base, monad, avalanche, litecoin, bitcoincash, dogecoin, zcash, filecoin, tezos, polkadot, cosmos, xrpl, linea, and more.

Responses

The response will be a JSON object containing the network name and its supported assets.

networkstring
The blockchain network identifier.Example: ethereum
assetsarray
Alphabetically sorted array of enabled asset/token codes available on this network. Assets include both exchange-tradable and custody-supported tokens.Example: AAVE,BAT,DAI,ETH,LINK,MATIC,UNI,USDC,USDT,WBTC
Example Responses
{
  "network": "ethereum",
  "assets": [
    "AAVE",
    "BAT",
    "DAI",
    "ETH",
    "LINK",
    "MATIC",
    "UNI",
    "USDC",
    "USDT",
    "WBTC"
  ]
}
PreviousFX RateNextGet Network
Last modified on April 29, 2026