pavlyshyn / bittrex
There is no license information available for the latest version (0.1.0) of this package.
API Wrapper for the Bittrex cryptocurrency exchange
0.1.0
2017-08-05 20:37 UTC
Requires
- php: ^7.0
- ext-curl: *
This package is auto-updated.
Last update: 2024-10-27 01:41:03 UTC
README
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.
Requirements
- Account on bittrex.com, with an API key and API secret.
Usage
Install this package using:
composer require pavlyshyn/bittrex
Create an instance of the bittrex object, and call one of the available methods.
use Pavlyshyn\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);