KuCoin API - LabMazurokCom/Blockchain GitHub Wiki

Intro

Website: https://www.kucoin.com/#/

Documentation: https://kucoinapidocs.docs.apiary.io/

Limits: UNKNOWN.

Fee used in bot: 0.1%

Order book

https://api.kucoin.com/v1/open/orders?symbol=BTC-USDT&limit=50

Response:

{
    'success': True,
    'code': 'OK',
    'msg': 'Operation succeeded.',
    'timestamp': 1523622759658,
    'data': {
        'SELL': [
            [8120.0, 0.28370509, 2303.6853308],
            [8136.380224, 0.0091773, 74.67000222],
            ...
        ],
        'BUY': [
            [8110.6462, 0.06547938, 531.08008458],
            [8110.000409, 0.31273321, 2536.266461],
            ...
        ]
    }
}

Ticker

https://api.kucoin.com/v1/open/tick?symbol=BTC-USDT

Response:

{
    'success': True,
    'code': 'OK',
    'msg': 'Operation succeeded.',
    'timestamp': 1523622489599,
    'data': {
        'coinType': 'BTC',
        'trading': True,
        'symbol': 'BTC-USDT',
        'lastDealPrice': 8110.000409,
        'buy': 8110.000409,
        'sell': 8128.243844,
        'change': 176.085085,
        'coinTypePair': 'USDT',
        'sort': 100,
        'feeRate': 0.001,
        'volValue': 2552044.24264598,
        'high': 8200.0,
        'datetime': 1523622488000,
        'vol': 324.79328084,
        'low': 7550.0,
        'changeRate': 0.0222
    }
}

Unfortunately no explanation is provided in official documentation