# 1、主链代币枚举值接口

说明：获取openapi接口支持的主链和代币名称

#### 1. 接口URL

GET /openapi/v3/chains/enum

#### 2. 请求参数

| **参数名** | **数据类型** | **是否必传** | **描述** |
| ------- | -------- | -------- | ------ |
| apikey  | string   | true     | apikey |

#### 3. 返回参数

```json
{
    "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"
            },
            ......
        ]
    }
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.bokk.ltd/readme/v3-ban/1-zhu-lian-dai-bi-mei-ju-zhi-jie-kou.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
