首页 金融理财 汇率查询
汇率查询

汇率查询

  • 1446
  • 1512
人民币、美元、欧元、英镑、日元、韩元、澳元、加元、港元等160多种货币的实时汇率查询(以“updatetime”更新时间的字段为准),提供汇率转换、单个货币对应的热门货币汇率行情等API。此汇率为综合汇率,接口数据来源于公开的信息发布平台,并不对发布的金融服务信息的真实性及准确性负责,且不提供金融投资服务。如您通过接口数据进入第三方网站进行金融投资行为,由此产生的财务损失,本公司不承担任何责任。
免费
https://api.jisuapi.com/exchange/convert
JSON,JSONP
GET POST
https://api.jisuapi.com/exchange/convert?appkey=yourappkey&from=CNY&to=USD&amount=10

请求参数:

API在线测试
参数名称类型必填说明
from string 要换算的单位
to string 换算后的单位
amount string 数量

返回参数:

参数名称类型说明
from string 要换算的货币
to string 换算后的货币
fromname string 要换算的货币名称
toname string 换算后的货币名称
updatetime string 更新时间
rate string 汇率
camount string 计算金额

请求代码:

查看代码
<?php

require_once 'curl.func.php';

$appkey = 'your_appkey_here';//你的appkey
$from = 'CNY';
$to = 'USD';
$amount = 10;
$url = "https://api.jisuapi.com/exchange/convert?appkey=$appkey&from=$from&to=$to&amount=$amount";
$result = curlOpen($url, ['ssl'=>true]);

$jsonarr = json_decode($result, true);
//exit(var_dump($jsonarr));

if($jsonarr['status'] != 0)
{
    echo $jsonarr['msg'];
    exit();
}

$result = $jsonarr['result'];
echo $result['from'].' '.$result['to'].' '.$result['fromname'].' '.$result['toname'].' '.$result['updatetime'].' '.$result['rate'].' '.$result['camount'].'
';

JSON返回示例 :

{
    "status": 0,
    "msg": "ok",
    "result": {
        "from": "CNY",
        "to": "USD",
        "fromname": "人民币",
        "toname": "美元",
        "updatetime": "2015-10-26 16:56:22",
        "rate": "0.1574",
        "camount": "1.574"
    }
}
                    

API错误码:

代号说明
201 要兑换的货币为空
202 兑换后的货币为空
203 兑换数量为空
204 要兑换的货币有误
205 兑换后的货币有误
206 货币为空
207 货币有误
208 没有信息

系统错误码:

代号说明
101 APPKEY为空或不存在
102 APPKEY已过期
103 APPKEY无请求此数据权限
104 请求超过次数限制
105 IP被禁止
106 IP请求超过限制
107 接口维护中
108 接口已停用

活动推荐ACTIVITY 更多

  • orc活动

其它推荐RECOMMENDED DATA 更多