1. Main Chain & Token Enumeration API

Description

This endpoint returns all main chains and their corresponding supported tokens in the OpenAPI.


1. Endpoint URL

GET /openapi/v3/chains/enum

2. Request Parameters

Parameter Type Required Description
apikey string true API key

3. Response Parameters

{
  "code": 200,
  "msg": "success",
  "data": {
    "list": [
      {
        "coin_list": [
          "BTC"
        ],
        "chain": "Bitcoin"
      },
      {
        "coin_list": [
          "ETH",
          "USDT",
          "USDC"
        ],
        "chain": "Ethereum"
      },
      {
        "coin_list": [
          "TRX",
          "USDT",
          "USDC"
        ],
        "chain": "TRON"
      },
      ......
    ]
  }
}

Field Descriptions

FieldTypeDescription
codeintegerResponse status code. 200 indicates success.
msgstringResponse message.
dataobjectResponse data container.
listarrayList of supported main chains.
chainstringMain chain name.
coin_listarrayList of supported tokens under the corresponding chain.