我需要币安数据来构建移动应用程序。只有 USDT 对就足够了。在下面的链接中,它需要所有交易对,但我只想要 USDT 对。我应该使用哪个链接?
问问题
1711 次
1 回答
1
您可以使用币安交易所 API。无需注册。
使用的 API 调用是这样的:https ://api.binance.com/api/v3/exchangeInfo
我建议您使用 google colab 和 python,或任何其他 python 资源:
import requests
def get_response(url):
response = requests.get(url)
response.raise_for_status() # raises exception when not a 2xx response
if response.status_code != 204:
return response.json()
def get_exchange_info():
base_url = 'https://api.binance.com'
endpoint = '/api/v3/exchangeInfo'
return get_response(base_url + endpoint)
def create_symbols_list(filter='USDT'):
rows = []
info = get_exchange_info()
pairs_data = info['symbols']
full_data_dic = {s['symbol']: s for s in pairs_data if filter in s['symbol']}
return full_data_dic.keys()
create_symbols_list('USDT')
结果:
['BTCUSDT', 'ETHUSDT', 'BNBUSDT', 'BCCUSDT', 'NEOUSDT', 'LTCUSDT',...
api 调用会为您带来非常大的响应,其中包含有关交易所的有趣数据。在函数create_symbols_list中,您可以在full_data_dic字典中获取所有这些数据。
于 2021-10-03T08:39:51.023 回答