1. 10. Assets and Networks API
MIN-Global API
  • MinGlobal External API (v1)
    • 01. Overview and Quick Start
      • Step 1. Check API Reachability (no key needed)
      • Step 2. Your First Signed Request
    • 02. Authentication and Request Signing
    • 03. Spot Trading Explained
    • 04. Futures Trading Explained
    • 05. Data Formats and Conventions
    • 06. Errors and Troubleshooting
    • 07. Rate Limits, Permissions and Known Limits
    • 08. Market Data API (public, no key needed)
      • List Spot Trading Pairs
      • Get All Spot Tickers
      • Get Spot Candlesticks (Klines)
      • Get Spot Order Book (Depth)
      • Get Recent Spot Trades
      • List Futures Contracts
      • Get All Futures Tickers
      • Get Futures Candlesticks (Klines)
      • Get Futures Order Book (Depth)
      • Get Recent Futures Trades
    • 09. Wallets and Balances API
      • Get All Balances
      • Get Balances by Coin
    • 10. Assets and Networks API
      • List Supported Coins
        GET
      • List Networks for a Coin
        GET
    • 11. Spot Trading API
      • Place Spot Order (Limit Buy)
      • Place Spot Order (Market Sell)
      • List Your Spot Orders
      • Get One Spot Order
      • Cancel Spot Order
    • 12. Futures Trading API
      • Get Futures Margin Balance
      • Open Futures Position (Limit Long)
      • Close Futures Position (Reduce Only)
      • List Open Futures Orders
      • Get Futures Order History
      • Get One Futures Order
      • Cancel Futures Order
  1. 10. Assets and Networks API

List Supported Coins

GET
https://api.minglobal.io/v1/deposit/assets
Every coin the platform supports holding, with how many blockchains each one is available on.
Permission: READ_BALANCE | Parameters: none.
This is the catalogue of coins you can HOLD, not pairs you can TRADE. For tradeable pairs use GET /v1/market/symbols. The two lists are different, and using this one to decide what to trade will produce orders on markets that do not exist.
FieldNotes
assetIdThe same value as symbol. Use it as the path parameter on the networks endpoint
iconUrlA string, or null when no artwork has been uploaded
networkCountCounts active networks only
depositLocktrue means deposits are paused for this coin
Notes: sorted alphabetically by ticker. Only coins that are enabled and have at least one active network are listed. A coin with depositLock: true still appears, because the lock is applied later, when an address is issued.

Request

Header Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://api.minglobal.io/v1/deposit/assets' \
--header 'X-MG-API-KEY: {{api_key}}' \
--header 'X-MG-TIMESTAMP: <set automatically at send time>' \
--header 'X-MG-RECV-WINDOW: {{recv_window}}' \
--header 'X-MG-SIGNATURE: <set automatically at send time>' \
--header 'Origin: {{origin}}'

Responses

🟢200
application/json
Bodyapplication/json

Example
{
  "assets": [
    {
      "assetId": "BTC",
      "symbol": "BTC",
      "name": "Bitcoin",
      "iconUrl": "https://cdn.example/icons/btc.png",
      "networkCount": 2,
      "depositLock": false
    },
    {
      "assetId": "USDT",
      "symbol": "USDT",
      "name": "Tether",
      "iconUrl": null,
      "networkCount": 3,
      "depositLock": false
    }
  ]
}
Modified at 2026-09-02 09:50:41
Previous
10. Assets and Networks API
Next
List Networks for a Coin
Built with