返回介绍

AkShare 货币数据

发布于 2020-08-25 15:53:38 字数 8865 浏览 1583 评论 0 收藏 0

货币报价最新数据

接口: currency_latest

目标地址: https://currencyscoop.com/

描述: 获取货币报价最新数据

限量: 单次返回指定货币的最新报价数据-免费账号每月限量访问 5000 次

输入参数

名称类型必选描述
basestrYbase="USD"
api_keystrYapi_key="Please put your api key here"; you can register currencyscoop, Gmail well be better

输出参数

名称类型默认显示描述
datestrY日期时间-注意时区
basefloatY货币
ratesstrY比率

接口示例

import akshare as ak
currency_latest_df = ak.currency_latest(base="USD", api_key="Please put your api key here")
print(currency_latest_df)

数据示例

                         date base       rates
AED 2020-03-07 13:45:25+00:00  USD    3.672500
AFN 2020-03-07 13:45:25+00:00  USD   76.099722
ALL 2020-03-07 13:45:25+00:00  USD  108.450334
AMD 2020-03-07 13:45:25+00:00  USD  479.819972
ANG 2020-03-07 13:45:25+00:00  USD    1.786501
..                        ...  ...         ...
XPT 2020-03-07 13:45:25+00:00  USD    0.001113
YER 2020-03-07 13:45:25+00:00  USD  250.279406
ZAR 2020-03-07 13:45:25+00:00  USD   15.667657
ZMW 2020-03-07 13:45:25+00:00  USD   15.245795
ZWD 2020-03-07 13:45:25+00:00  USD  361.899994

货币报价历史数据

接口: currency_history

目标地址: https://currencyscoop.com/

描述: 获取货币报价历史数据

限量: 单次返回指定货币在指定交易日的报价历史数据-免费账号每月限量访问 5000 次

输入参数

名称类型必选描述
basestrYbase="USD"
datestrYdate="2020-02-03"
api_keystrYapi_key="Please put your api key here"; you can register currencyscoop, Gmail well be better

输出参数

名称类型默认显示描述
datestrY日期时间-注意时区
basefloatY货币
ratesstrY比率

接口示例

import akshare as ak
currency_history_df = ak.currency_history(base="USD", date="2020-02-03", api_key="Please put your api key here")
print(currency_history_df)

数据示例

          date base       rates
AED 2020-02-03  USD    3.672500
AFN 2020-02-03  USD   76.350078
ALL 2020-02-03  USD  110.256982
AMD 2020-02-03  USD  478.447633
ANG 2020-02-03  USD    1.790009
..         ...  ...         ...
XPT 2020-02-03  USD    0.001032
YER 2020-02-03  USD  250.312033
ZAR 2020-02-03  USD   14.826424
ZMW 2020-02-03  USD   14.627862
ZWD 2020-02-03  USD  361.899994

货币报价时间序列数据

接口: currency_time_series

目标地址: https://currencyscoop.com/

描述: 获取货币报价时间序列数据

限量: 单次返回指定货币在指定交易日到另一指定交易日的报价数据-免费账号每月限量访问 5000 次

输入参数

名称类型必选描述
basestrYbase="USD"
start_datestrYstart_date="2020-02-03"
end_datestrYend_date="2020-03-04"
api_keystrYapi_key="Please put your api key here"; you can register currencyscoop, Gmail well be better

输出参数

名称类型默认显示描述
datestrY日期时间-注意时区
basefloatY货币
ratesstrY比率

接口示例

import akshare as ak
currency_time_series_df = ak.currency_time_series(base="USD", start_date="2020-02-03", end_date="2020-03-04", api_key="Please put your api key here")
print(currency_time_series_df)

数据示例(由于没有权限,此示例仅作占位)

          date base       rates
AED 2020-02-03  USD    3.672500
AFN 2020-02-03  USD   76.350078
ALL 2020-02-03  USD  110.256982
AMD 2020-02-03  USD  478.447633
ANG 2020-02-03  USD    1.790009
..         ...  ...         ...
XPT 2020-02-03  USD    0.001032
YER 2020-02-03  USD  250.312033
ZAR 2020-02-03  USD   14.826424
ZMW 2020-02-03  USD   14.627862
ZWD 2020-02-03  USD  361.899994

货币基础信息查询

接口: currency_currencies

目标地址: https://currencyscoop.com/

描述: 获取所有货币的基础信息

限量: 单次返回指定所有货币基础信息-免费账号每月限量访问 5000 次

输入参数

名称类型必选描述
c_typestrYc_type="fiat"
api_keystrYapi_key="Please put your api key here"; you can register currencyscoop, Gmail well be better

输出参数

名称类型默认显示描述
currency_namestrY货币名称
currency_codestrY货币代码
decimal_unitsintY小数点位
countriesstrY使用此货币的国家

接口示例

import akshare as ak
currency_currencies_df = ak.currency_currencies(c_type="fiat", api_key="Please put your api key here")
print(currency_currencies_df)

数据示例

                     currency_name  ...                          countries
AED    United Arab Emirates dirham  ...             [United Arab Emirates]
AFN                 Afghan afghani  ...                      [Afghanistan]
ALL                   Albanian lek  ...                          [Albania]
AMD                  Armenian dram  ...                          [Armenia]
ANG  Netherlands Antillean guilder  ...  [Curaçao (CW), Sint Maarten (SX)]
..                             ...  ...                                ...
XXX                    No currency  ...                                 []
YER                    Yemeni rial  ...                            [Yemen]
ZAR             South African rand  ...   [Lesotho, Namibia, South Africa]
ZMW                 Zambian kwacha  ...                           [Zambia]
ZWL              Zimbabwean dollar  ...                         [Zimbabwe]

货币对价格转换

接口: currency_convert

目标地址: https://currencyscoop.com/

描述: 获取指定货币对指定货币数量的转换后价格

限量: 单次返回指定货币对的转换后价格-免费账号每月限量访问 5000 次

输入参数

名称类型必选描述
basestrYbase="USD"
tostrYto="CNY"
amountstrYamount="10000"
api_keystrYapi_key="Please put your api key here"; you can register currencyscoop, Gmail well be better

输出参数

名称类型默认显示描述
currency_namestrY货币名称
currency_codestrY货币代码
decimal_unitsintY小数点位
countriesstrY使用此货币的国家

接口示例

import akshare as ak
currency_convert_se = ak.currency_convert(base="USD", to="CNY", amount="10000", api_key="Please put your api key here")
print(currency_convert_se)

数据示例

timestamp    2020-03-07 13:45:31
date                  2020-03-07
from                         USD
to                           CNY
amount                     10000
value                      69320

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文