dev-master
9999999-dev http://www.ypho.nlAPI Wrapper for the Bittrex cryptocurrency exchange
The Requires
- php ^7.0
- ext-curl *
by Ivo Geersen
cryptocurrency bitcoins bittrex
API Wrapper for the Bittrex cryptocurrency exchange
This package is a wrapper for the Bittrex.com Exchange. It can be used to check the current market, check your portfolio and place buy and sell orders., (*1)
Install this package using:, (*2)
composer require ypho/bittrex
Create an instance of the bittrex object, and call one of the available methods., (*3)
use Ypho\Bittrex\Client; $key = 'here-comes-the-api-key-from-bittrex'; $secret = 'this-is-the-api-secret-from-bittrex'; // Create a new Bittrex client object $btx = new Client($key, $secret); // Get the current values for the BTC-LTC market $ticker = $btx->ticker('BTC-LTC); // Get the current orderbook for the BTC-DGB market $oderBook = $btx->orderBook('BTC-DGB'); // Get your open orders for the BTC-ETH market $orders = $btx->orderHistory('BTC-ETH);
API Wrapper for the Bittrex cryptocurrency exchange
cryptocurrency bitcoins bittrex