> For the complete documentation index, see [llms.txt](https://docs.cn.omnibridge.pro/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.cn.omnibridge.pro/integration/chain-fee.md).

# 查询目标链GAS费接口

> 根据币种获取对应链的gas费用

**1. 接口调用：**

```
https://{host}/api/v1/chainFeeList
```

**2. 请求参数示例**

| 参数       | 是否必须 | 说明                        |
| -------- | ---- | ------------------------- |
| coinCode | 是    | <p>币种简称（例如ETH)</p><p></p> |

**3. 请求参数示例**

```
{
    "coinCode": "BNB(BSC)"
}
```

**4. 返回参数示例**

```
{
    "data": [
        {
            "chainFee": "0.001",//兑换完成发币需扣除的网络手续费
            "coinCode": "BNB(BSC)"
        }
    ],
    "resCode": "800",
    "resMsg": "成功",
    "resMsgEn": ""
}
```

**5. 返回参数说明**

<table><thead><tr><th>字段名称</th><th>字段</th><th width="250">数据类型</th><th>备注</th></tr></thead><tbody><tr><td>手续费用</td><td>chianFee</td><td>String</td><td>兑换完成发币需扣除的网络手续费</td></tr><tr><td>币种简称</td><td>coinCode</td><td>String</td><td>币种简称</td></tr></tbody></table>

### 调用示例

#### Postman示例

![](/files/xtwZYx9vUwBUL5gBRSvA)

#### 返回结果示例

```
{
    "data": [
        {
            "chainFee": "0.001",//兑换完成发币需扣除的网络手续费
            "coinCode": "BNB(BSC)"
        }
    ],
    "resCode": "800",
    "resMsg": "成功",
    "resMsgEn": ""
}
```
