dev-master
9999999-devA PHP implementation of the Bittrex API
MIT
The Requires
- php ^5.6 || ^7.0
- paragonie/random_compat >=2
- guzzlehttp/guzzle ^6.3
by John Kosmetos
api php library bittrex
A PHP implementation of the Bittrex API
A PHP implementation of the Bittrex API, (*1)
Using Composer, (*2)
composer require jkosmetos/php-bittrex-api
The API KEY
and SECRET
can be obtained via your Bittrex profile, under Settings > Manage API Keys. For all available methods, consult the API documentation, (*3)
$client = new Client(); $currencies = $client->getCurrencies(); var_dump($currencies);
$client = new Client('KEY', 'SECRET'); $balances = $client->getBalances(); var_dump($balances);
$client = new Client('KEY', 'SECRET'); $orders = $client->getOpenOrders(); // Optionally add a market ie: 'ETH-XRP' var_dump($orders);
This project is licensed under the MIT License - see the LICENSE file for details, (*4)
A PHP implementation of the Bittrex API
MIT
api php library bittrex