jaggedsoft / php-binance-api

PHP Binance API is an asynchronous PHP library for the Binance API designed to be easy to use. https://github.com/binance-exchange/php-binance-api

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

User wallet data

stodolapatrik opened this issue · comments

Hello, how can I get actual user wallet content ? Is it possible ? Or is there any other way ?

Using api - private and public key i mean

$api = new Binance\API('key','key2');
$ticker = $api->prices();
$balances = $api->balances($ticker);
$balance_eur = $balances['EUR']['available'];

Like this?