Livecoin API - LabMazurokCom/Blockchain GitHub Wiki

Intro

Website: https://www.livecoin.net

Documentation: https://www.livecoin.net/api/public

Fee used in bot: 0.18% (maker and taker for monthly volume less than 100K USD)

Order book

https://api.livecoin.net/exchange/order_book?currencyPair=BTC/USD&depth=2&groupByPrice=true

Result

{
    "timestamp": 1528210174511,
    "asks": [
        ["7.72E+3", "0.12784757"],
        ["7720.14053", "0.00188070"]
    ],
    "bids": [
        ["7700.78001", "0.03252210"],
        ["7700.78", "0.0996"]
    ]
}

Ticker

https://api.livecoin.net/exchange/ticker?currencyPair=BTC/USD

Result

{
    "cur": "BTC",
    "symbol": "BTC/USD",
    "last": 7.72E+3,
    "high": 7869,
    "low": 7629.35586,
    "volume": 1761.09585105,
    "vwap": 7743.31389865,
    "max_bid": 76999,
    "min_ask": 773,
    "best_bid": 7700.78001,
    "best_ask": 7.72E+3
}