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
      Symbols, Prices & Networks
        List SymbolsGet Symbol DetailsList PricesFX RateGet Assets for NetworkGet Network
      Tickers & Order Books
      Candlestick Data
    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

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