首页 生活服务 汇率查询
汇率查询

汇率查询

  • 5899
  • 1
汇率查询,历史汇率、人民币外汇牌价、银联国际汇率等
http[s]://api.liangmlk.cn?appid=44&ak=*****
暂无
JSON
1 点/次
GET
5822

GET请求参数:

参数名称 参数类型 必填 默认值 示例值 备注
scur string true usd 原币种编号
tcur string true cny 目标币种编号
ag string false 扩展栏位 openPrice,yesyPrice,highPrice,lowPrice,changePrice,changeMargin

请求示例代码:

<?php

    header('content-type:text/html;charset=utf-8');
	$ch  = curl_init();
	$url = 'https://api.liangmlk.cn?ak=xxxx&appid=44&scur=xxxx&tcur=xxxx';
	curl_setopt($ch,CURLOPT_URL,$url);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
    curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
	$res = curl_exec($ch);
	curl_close($ch);
	return json_decode($res,true);
                    

JSON返回示例 [仅供参考,请以实际返回为准]:

其它推荐RECOMMENDED DATA 更多