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 Networks for a Coin

GET
https://api.minglobal.io/v1/deposit/assets/{assetId}/networks
Which blockchains a given coin can be deposited on, and what each one requires.
Permission: READ_BALANCE
FieldNotes
networkIdChain identifier, for example ETHEREUM, BSC, TRON
labelDisplay form, usually name (tokenStandard)
contractToken contract address, or null for a native asset
confirmationsBlocks required before a deposit is credited
memoRequiredtrue on chains that need a memo or tag. Getting this wrong loses the deposit
depositsEnabledComputed: the coin is enabled and the network is active
Notes: the asset object here carries fewer fields than the list entry on the previous endpoint. There is no networkCount and no depositLock. Inactive networks are left out entirely rather than returned as disabled.
Errors
StatuscodeCause
400VALIDATION_ERRORassetId breaks the length or character rule
404NOT_FOUNDMessage "Unknown asset". Returned both for a coin that does not exist and for one with no active networks. This is deliberate, so the catalogue cannot be mapped out by guessing

Request

Path Params

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 --globoff 'https://api.minglobal.io/v1/deposit/assets/{{asset_id}}/networks' \
--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
{
  "asset": {
    "assetId": "USDT",
    "symbol": "USDT",
    "name": "Tether",
    "iconUrl": null
  },
  "networks": [
    {
      "networkId": "BSC",
      "name": "BNB Smart Chain",
      "label": "BNB Smart Chain (BEP20)",
      "tokenStandard": "BEP20",
      "contract": "0x55d398326f99059ff775485246999027b3197955",
      "confirmations": 15,
      "memoRequired": false,
      "depositsEnabled": true
    }
  ]
}
🟠404
Modified at 2026-09-02 09:50:41
Previous
List Supported Coins
Next
11. Spot Trading API
Built with