实时汇率API接口,免费好用

1、前言
实时汇率API接口,支持汇率查询,汇率列表和特定货币汇率查询功能。
查看接口完整信息:https://www.idmayi.com/doc/detail?id=27

2、接口明细
注意:app_id和app_secret是临时秘钥,如果真正使用,需要去 https://www.idmayi.com 申请属于自己的专属秘钥。

2.1 支持的货币编号列表
接口地址: https://www.idmayi.com/api/exchange_rate/configs
返回格式: JSON
请求方式: GET
请求示例:
https:/www.idmayi.com/api/exchange_rate/configs?app_id=jgrmyqjcibxhsnqd&app_secret=cmtQREQ2RkthQ2s4bVpOR0R6dGJDQT09
接口备注: 获取支持的货币编号列表

返回示例:
在这里插入图片描述
2.2 获取汇率列表信息
接口地址: https://www.idmayi.com/api/exchange_rate/list
返回格式: JSON
请求方式: GET
请求示例:
https://www.idmayi.com/api/exchange_rate/list?app_id=jgrmyqjcibxhsnqd&app_secret=cmtQREQ2RkthQ2s4bVpOR0R6dGJDQT09
接口备注: 获取热门汇率列表信息

返回示例:
在这里插入图片描述
2.3 获取指定货币编号的汇率信息
接口地址: https://www.idmayi.com/api/exchange_rate/aim
返回格式: JSON
请求方式: GET
请求示例:
https://www.idmayi.com/api/exchange_rate/aim?from=CNY&to=MXN&app_id=jgrmyqjcibxhsnqd&app_secret=cmtQREQ2RkthQ2s4bVpOR0R6dGJDQT09
接口备注: 查看指定货币编号的汇率信息

返回示例:
在这里插入图片描述

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
你可以使用以下的Java代码获取实时汇率信息: ```java import java.io.BufferedReader; import java.io.InputStreamReader; import java.net.HttpURLConnection; import java.net.URL; import java.nio.charset.StandardCharsets; public class CurrencyConverter { public static void main(String[] args) { String fromCurrency = "USD"; String toCurrency = "EUR"; double amount = 100; double exchangeRate = getExchangeRate(fromCurrency, toCurrency); double convertedAmount = exchangeRate * amount; System.out.println(amount + " " + fromCurrency + " = " + convertedAmount + " " + toCurrency); } public static double getExchangeRate(String fromCurrency, String toCurrency) { String url = "https://api.exchangerate-api.com/v4/latest/" + fromCurrency; try { URL urlObj = new URL(url); HttpURLConnection connection = (HttpURLConnection) urlObj.openConnection(); connection.setRequestMethod("GET"); BufferedReader in = new BufferedReader(new InputStreamReader(connection.getInputStream(), StandardCharsets.UTF_8)); String inputLine; StringBuilder response = new StringBuilder(); while ((inputLine = in.readLine()) != null) { response.append(inputLine); } in.close(); String jsonResponse = response.toString(); double exchangeRate = Double.parseDouble(jsonResponse.split("\"" + toCurrency + "\":")[1].split(",")[0]); return exchangeRate; } catch (Exception e) { e.printStackTrace(); return 0; } } } ``` 上述的代码使用了 https://exchangerate-api.com 提供的 API 来获取实时汇率信息。你需要将上述的代码中的 `fromCurrency` 和 `toCurrency` 更改为你所需的货币代码,并将 `amount` 更改为你所需的金额。你也可以使用其他的实时汇率 API 来获取汇率信息,只需要将上述代码中的 `url` 更改为对应的 API 地址即可。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

weixin_A222666568

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值