Skip to content

edinsoncs/coinbene

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 

Repository files navigation

#API COINBENE

##Install

npm install coinbene --save
const coinbene = require("node-coinbene");

##Use methods

getTicker

coinbene.getTicker('rifbtc').then((dt:any) => { return JSON.parse(dt); });
result:
{
     "ticker": [
         {
            "symbol": "BTCUSDT",
             "24hrHigh": "6798.39",
             "last": "6714.54",
             "24hrVol": "5591.1010",
             "ask": "6714.55",
             "24hrLow": "6611.98",
             "bid": "6714.54",
             "24hrAmt": "37694522.351754"
         }
     ],
     "status": "ok",
     "timestamp": 1529598925985
 }

getTrade

coinbene.getTrade('rifbtc', 30).then((dt:any) => { return JSON.parse(dt); })
{
     "symbol": "ETHUSDT",
     "trades": [
         {
             "price": "529.07",
             "quantity": "0.01",
             "time": 1529599014000,
             "take": "sell",
             "tradeId": "201806220035559610014931201806220036548650015602"
         },
         {
             "price": "529.07",
             "quantity": "0.11",
             "time": 1529599014000,
             "take": "sell",
             "tradeId": "201806220035559610014931201806220036541990015342"
         }
     ],
     "status": "ok",
     "timestamp": 1529599015128
}

About

No description or website provided.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published