Skip to main content

1、获取汇率接口

#简要描述: 获取货币汇率接口

查询参数

参数名称类型必填参数含义参数说明
fromCurrencystring币种(从)示例:CNY
toCurrencystring币种(到)示例:USDT
请求json样例
{  
    "fromCurrency": "CNY",
    "toCurrency": "USDT"
}

返回值

参数名称类型参数含义参数说明
codeint请求状态通信状态 成功返回:0,其它表示失败
successboolean成功状态true 成功
messagestring描述
datajson参数参数详见下面说明
返回示例
{  
    "code": 0,
    "success": true,
    "message": null,
    "data": {
        "bizType": "DIGITAL_PAIR_LEGAL",
        "baseCurrency": "USDT",
        "quoteCurrency": "CNY",
        "tradePair": "USDT/CNY",
        "rate": 7.33278,
        "costRate": 0.13637392639626444,
        "costReverseRate": 7.33278,
        "exchangeAction": "BUY",
        "expression": "1CNY≈0.13USDT",
        "quoteExpression": "1USDT≈7.33CNY",
        "fromCurrency": "CNY",
        "fromCurrencyInfo": {
            "code": "CNY",
            "symbol": "¥",
            "type": "LEGAL",
            "name": "人民币",
            "decimalPlace": 2,
            "scale": 2
        },
        "fromAmount": 0,
        "fromAmountScale": 0,
        "toCurrency": "USDT",
        "toCurrencyInfo": {
            "code": "USDT",
            "symbol": "₮",
            "type": "DIGITAL",
            "name": "TetherUS",
            "decimalPlace": 6,
            "scale": 6
        },
        "toAmount": 0,
        "toAmountScale": 0
    }
}
data参数说明
参数名称类型参数含义备注
bizTypeenum业务类型bizType类型说明如下
baseCurrencystring基础货币
quoteCurrencynumber报价货币
tradePairstring交易对
ratenumber价格
costRatenumber计算价格( FROM x rate = TO )
costReverseRatenumber反相计算价格( TO x rate = FROM )
exchangeActionenum交易类型BUY:买入| SELL: 卖出
expressionstring表达式
quoteExpressionstring以报价记的表达式
fromCurrencystring币种(从)
fromCurrencyInfoobject
└ codestring货币代码
└ symbolstring货币符号
└ typeenum货币类型DIGITAL:数字币 | LEGAL: 法币
└ namestring货币名称
└ decimalPlaceint32计算精度
└ scaleint32显示精度
fromAmountnumber金额(从)
fromAmountScalenumber格式化金额(从)
toCurrencystring币种(到)
toCurrencyInfoobject格式化金额(到)
└ codestring货币代码
└ symbolstring货币符号
└ typeenum货币类型DIGITAL:数字币 | LEGAL: 法币
└ namestring货币名称
└ decimalPlaceint32计算精度
└ scaleint32显示精度
toAmountnumber金额(到)
toAmountScalenumber使用金额(到)

bizType类型说明:

1、PAYMENT_WALLET_SCAN 点付钱包扫码支付
2、PAYMENT_TRANSFER 数字币绑定地址直充
3、PAYMENT_ANY_DIGITAL_SCAN 数字币任意金额扫码支付
4、WITHDRAW_WALLET 提款至点付钱包
5、WITHDRAW_ANY_DIGITAL_WALLET 提款数字币至任意钱包
6、PAYMENT_FIXED_DIGITAL_SCAN 数字币限定金额扫码支付
7、BATCH_PAY 批量代付