kucoin-fishing-sdk
v0.0.4
Published
> The detailed document [https://docs.kucoin.com](https://docs.kucoin.com), in order to receive the latest API change notifications.
Downloads
1
Readme
Node SDK for KuCoin API
The detailed document https://docs.kucoin.com, in order to receive the latest API change notifications.
使用说明
1、配置 Http
import KuCoin =form ('kucoin-fishing-sdk');
KuCoin.config({
host: 'https://openapi-sandbox.kucoin.com', // host
prefix: '/api/v1', // prefix
signatureConfig: { // header 配置
key: '5c92fa59ef83c7606d1dd676',
secret: '2a165555-5327-4f03-85c8-324f76a9bbc7',
passphrase: 'Aa123456',
}
});
2、方法调用
如调用 Account 部分的 getAccountList 方法
KuCoin.getAccountList()
补充说明:
该sdk只是简单的处理了请求,对于返回的结果并未做任何处理,且更新的速度不定
如果有新的api提供,但是本sdk 并未更新时,可以使用 /utils/Controller
自行封装