mirror of
https://github.com/aljazceru/bitfinex-api-py.git
synced 2025-12-19 23:04:21 +01:00
Added get all exchange pairs endpoint (REST)
This commit is contained in:
@@ -370,6 +370,15 @@ class BfxRest:
|
||||
stats = await self.fetch(endpoint)
|
||||
return stats
|
||||
|
||||
async def get_conf_list_pair_exchange(self):
|
||||
"""
|
||||
Get list of available exchange pairs
|
||||
# Attributes
|
||||
@return Array [ SYMBOL ]
|
||||
"""
|
||||
endpoint = "conf/pub:list:pair:exchange"
|
||||
pairs = await self.fetch(endpoint)
|
||||
return pairs
|
||||
|
||||
##################################################
|
||||
# Authenticated Data #
|
||||
|
||||
Reference in New Issue
Block a user