获取汇率报价信息。
| 更新日期 | 更新内容 |
| 2025-09-16 | 添加返回 fixedFee、preRatedFee 字段 |
| 2025-10-15 | 添加返回 fullPay、fullPayFee 字段 |
${baseUrl}/tf/v4/quotes
- Method: POST
- Content-Type: application/json
| 参数名 | 必选 | 类型 | 说明 |
| sourceCurrency | 是 | string | 资金来源币种,可从 balance 接口获取支持的币种 |
| country | 是 | string | 目标国家,例如 CHN |
| business | 是 | string | 业务类型,例如 C2C |
| type | 是 | string | 下发通道,例如 ewallet |
| targetCurrency | 是 | string | 下发币种,例如 CNY |
{
"data": {
"input": "USD",
"output": "CNY",
"rate": 6.402552,
"fixedFee": 5,
"preRatedFee": 0.012,
"fullPay": true,
"fullPayFee": 20
},
"msg": "操作成功",
"status": 200,
"success": true
}
| 参数名称 | 示例 | 参数说明 | schema |
| data | json | 响应数据,data 信息 | |
| msg | 操作成功 | 响应消息 | |
| status | 200 | 响应码 | |
| success | true | 是否成功:成功 true,失败 false | |
| 参数名称 | 示例 | 参数说明 |
| input | USD | 输入币种 |
| output | CNY | 输出币种 |
| rate | 6.402552 | 汇率报价 |
| fixedFee | 12 | 固定费用,币种与 input 相同 |
| preRatedFee | 0.012 | 按比例收取的费用,例如发送金额为 100,该费用为 100*0.012 |
| fullPay | true | 是否支持 fullPay |
| fullPayFee | 20 | fullPay 的费用 |