人民币、美元、欧元、英镑、日元、韩元、澳元、加元、港元等160多种货币的实时汇率查询(以“updatetime”更新时间的字段为准),提供汇率转换、单个货币对应的热门货币汇率行情等API。此汇率为综合汇率,接口数据来源于公开的信息发布平台,并不对发布的金融服务信息的真实性及准确性负责,且不提供金融投资服务。仅供参考;不支持对外展示,仅可用于学习研究。
接口地址: https://api.jisuapi.com/exchange/convert
返回格式: JSON
请求方式: GET
请求示例:https://api.jisuapi.com/exchange/convert?appkey=yourappkey&from=CNY&to=USD&amount=10
接口备注:1
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
appkey | string | 是 | appkey |
from | string | 是 | 要换算的单位 |
to | string | 是 | 换算后的单位 |
amount | string | 是 | 数量 |
参数 | 类型 | 说明 |
---|---|---|
from | string | 要换算的货币 |
to | string | 换算后的货币 |
fromname | string | 要换算的货币名称 |
toname | string | 换算后的货币名称 |
updatetime | string | 更新时间 |
rate | string | 汇率 |
camount | string | 计算金额 |
{
"status": 0,
"msg": "ok",
"result": {
"from": "CNY",
"to": "USD",
"fromname": "人民币",
"toname": "美元",
"updatetime": "2015-10-26 16:56:22",
"rate": "0.1574",
"camount": "1.574"
}
}