CEX Wallet Status¶
Bases: API
Client to fetch wallet status data from DataMaxi+ API.
Parameters:
-
api_key
(str
, default:None
) –The DataMaxi+ API key
-
**kwargs
(Any
, default:{}
) –Keyword arguments used by
datamaxi.api.API
.
get
¶
get(
exchange: str, asset: str, pandas: bool = True
) -> Union[Dict, pd.DataFrame]
Fetch wallet status data
GET /api/v1/wallet-status
https://docs.datamaxiplus.com/rest/cex/wallet-status/data
Parameters:
-
exchange
(str
) –Exchange name
-
asset
(str
) –Asset name
-
pandas
(bool
, default:True
) –Return data as pandas DataFrame
Returns:
-
Union[Dict, DataFrame]
–Wallet status data
exchanges
¶
exchanges() -> List[str]
Fetch supported exchanges accepted by datamaxi.CexWalletStatus.get API.
GET /api/v1/wallet-status/exchanges
https://docs.datamaxiplus.com/rest/cex/wallet-status/exchanges
Returns:
-
List[str]
–List of supported exchange
assets
¶
assets(exchange: str) -> List[str]
Fetch supported assets accepted by datamaxi.CexWalletStatus.get API.
GET /api/v1/wallet-status/assets
https://docs.datamaxiplus.com/rest/cex/wallet-status/assets
Parameters:
-
exchange
(str
) –Exchange name
Returns:
-
List[str]
–List of supported assets