getBalance(credentials, callback)getMyOrders(credentials, pair, callback)addOrder(credentials, orderDetails, callback)cancelOrder(credentials, tid, callback)getAccountHistory(credentials, from, to, callback)createMerchantCheckout(credentials, checkoutDetails, callback)
Returns a ticker of a given pair.
pair- A string of the currency type. Either 'BtcNis' or 'LtcBtc'
Returns closed trades of a given pair.
pair- A string of the currency type. Either 'BtcNis' or 'LtcBtc'since- Return transactions for the last 'tid'
Returns the orderbook of a given pair.
pair- A string of the currency type. Either 'BtcNis' or 'LtcBtc'
Returns the balance of the given account
credentials- An object of type {key: your-key, secret: your-secret}
Returns the live orders of the given account
credentials- An object of type {key: your-key, secret: your-secret}pair- A string of the currency type. Either 'BtcNis' or 'LtcBtc'
Adds an order to the order book.
credentials- An object of type {key: your-key, secret: your-secret}orderDetails- An object of the type: {Amount: amount, Price: price, Total: total: IsBid: true/false, Pair: pair}
Cancel an order
credentials- An object of type {key: your-key, secret: your-secret}- tid - The transaction id
Returns the account history in the interval of [from, to] Important - This function is about to be changed soon
credentials- An object of type {key: your-key, secret: your-secret}from- A date of from, in basically any formatto- A date of to, in basically any format
Merchant create checkout button id
credentials- An object of type {key: your-key, secret: your-secret}checkoutDetails- An object of type: {Price: price, Description: description, CoinType: 'btc', ReturnUrl: url, CancelUrl: url, NotifyByEmail: true/false}}