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

Field
Type
Description

code

integer

Response status code. 200 indicates success.

msg

string

Response message.

data

object

Response data container.

list

array

List of supported main chains.

chain

string

Main chain name.

coin_list

array

List of supported tokens under the corresponding chain.

Last updated