binance

binance

完整的Node.js SDK集成Binance API和WebSocket功能

这是一个集成Binance REST API和WebSocket的JavaScript和Node.js SDK。该SDK支持Binance多个产品线API,包括现货、保证金和期货。它提供TypeScript支持和强类型定义,具有可靠的性能,支持HMAC和RSA身份验证,并实现智能WebSocket管理。SDK经过全面的自动化测试,并有活跃的社区支持。该SDK为开发者提供了全面的Binance API接入方案,简化了与Binance平台的交互过程,适用于各种交易场景和应用开发需求。

BinanceNode.jsJavaScriptWebSocketREST APIGithub开源项目

Node.js & JavaScript SDK for Binance REST APIs & WebSockets

Build & Test npm version npm size npm downloads last commit CodeFactor Telegram

<p align="center"> <a href="https://www.npmjs.com/package/binance"> <picture> <source media="(prefers-color-scheme: dark)" srcset="https://github.com/tiagosiebler/binance/blob/master/docs/images/logoDarkMode2.svg?raw=true#gh-dark-mode-only"> <img alt="SDK Logo" src="https://github.com/tiagosiebler/binance/blob/master/docs/images/logoBrightMode2.svg?raw=true#gh-light-mode-only"> </picture> </a> </p>

Updated & performant JavaScript & Node.js SDK for the Binance REST APIs and WebSockets:

  • Extensive integration with Binance REST APIs and WebSockets.
  • TypeScript support (with type declarations for most API requests & responses).
  • Supports Binance REST APIs for Binance Spot, Margin, Isolated Margin, USDM & CoinM Futures.
    • Strongly typed on most requests and responses.
    • Automated end-to-end tests on most API calls, ensuring no breaking changes are released.
  • Extremely robust & performant JavaScript/Node.js Binance SDK with significant trading volume in production (livenet).
  • Actively maintained with a modern, promise-driven interface.
  • Support for seamless HMAC and RSA authentication for private Binance REST API and WebSocket calls.
    • Passing a private key as a secret will automatically revert to RSA authentication.
  • Supports Websockets for Binance Spot, Margin, Isolated Margin, USDM & CoinM Futures.
    • Event driven messaging.
    • Smart websocket persistence
      • Automatically handle silent websocket disconnections through timed heartbeats, including the scheduled 24hr disconnect.
      • Automatically handle listenKey persistence and expiration/refresh.
      • Emit reconnected event when dropped connection is restored.
    • Strongly typed on most websocket events, with typeguards available for TypeScript users.
    • Optional:
      • Automatic beautification of Websocket events (from one-letter keys to descriptive words, and strings with floats to numbers).
      • Automatic beautification of REST responses (parsing numbers in strings to numbers).
  • Heavy automated end-to-end testing with real API calls.
    • End-to-end testing before any release.
    • Real API calls in e2e tests.
  • Proxy support via axios integration.
  • Active community support & collaboration in telegram: Node.js Algo Traders.

Installation

npm install binance --save

Examples

Refer to the examples folder for implementation demos.

Issues & Discussion

  • Issues? Check the issues tab.
  • Discuss & collaborate with other node devs? Join our Node.js Algo Traders engineering community on telegram.
  • Questions about Binance APIs & WebSockets? Ask in the official Binance API group on telegram.

Related projects

Check out my related JavaScript/TypeScript/Node.js projects:

Documentation

Most methods accept JS objects. These can be populated using parameters specified by Binance's API documentation.

Structure

This project uses typescript. Resources are stored in 3 key structures:

  • src - the whole connector written in typescript
  • lib - the javascript version of the project (compiled from typescript). This should not be edited directly, as it will be overwritten with each release.
  • dist - the packed bundle of the project for use in browser environments.

Usage

Create API credentials at Binance

REST API Clients

There are several REST API modules as there are some differences in each API group.

  1. MainClient for most APIs, including: spot, margin, isolated margin, mining, BLVT, BSwap, Fiat & sub-account management.
  2. USDMClient for USD-M futures APIs.
  3. CoinMClient for COIN-M futures APIs.

Vanilla Options connectors are not yet available, though contributions are welcome!

REST Spot/Margin/etc

Start by importing the spot client. API credentials are optional, though an error is thrown when attempting any private API calls without credentials.

const { MainClient } = require('binance'); const API_KEY = 'xxx'; const API_SECRET = 'yyy'; const client = new MainClient({ api_key: API_KEY, api_secret: API_SECRET, }); client .getAccountTradeList({ symbol: 'BTCUSDT' }) .then((result) => { console.log('getAccountTradeList result: ', result); }) .catch((err) => { console.error('getAccountTradeList error: ', err); }); client .getExchangeInfo() .then((result) => { console.log('getExchangeInfo inverse result: ', result); }) .catch((err) => { console.error('getExchangeInfo inverse error: ', err); });

See spot-client.ts for further information.

REST USD-M Futures

Start by importing the usd-m client. API credentials are optional, though an error is thrown when attempting any private API calls without credentials.

const { USDMClient } = require('binance'); const API_KEY = 'xxx'; const API_SECRET = 'yyy'; const client = new USDMClient({ api_key: API_KEY, api_secret: API_SECRET, }); client .getBalance() .then((result) => { console.log('getBalance result: ', result); }) .catch((err) => { console.error('getBalance error: ', err); }); client .get24hrChangeStatististics() .then((result) => { console.log('get24hrChangeStatististics inverse futures result: ', result); }) .catch((err) => { console.error('get24hrChangeStatististics inverse futures error: ', err); });

See usdm-client.ts for further information.

REST COIN-M Futures

Start by importing the coin-m client. API credentials are optional, though an error is thrown when attempting any private API calls without credentials.

const { CoinMClient } = require('binance'); const API_KEY = 'xxx'; const API_SECRET = 'yyy'; const client = new CoinMClient({ api_key: API_KEY, api_secret: API_SECRET, }); client .getSymbolOrderBookTicker() .then((result) => { console.log('getSymbolOrderBookTicker result: ', result); }) .catch((err) => { console.error('getSymbolOrderBookTicker error: ', err); });

See coinm-client.ts for further information.

WebSockets

All websockets are accessible via the shared WebsocketClient. As before, API credentials are optional unless the user data stream is required.

const { WebsocketClient } = require('binance'); const API_KEY = 'xxx'; const API_SECRET = 'yyy'; // optionally override the logger const logger = { ...DefaultLogger, silly: (...params) => {}, }; const wsClient = new WebsocketClient( { api_key: key, api_secret: secret, beautify: true, // Disable ping/pong ws heartbeat mechanism (not recommended) // disableHeartbeat: true }, logger, ); // receive raw events wsClient.on('message', (data) => { console.log('raw message received ', JSON.stringify(data, null, 2)); }); // notification when a connection is opened wsClient.on('open', (data) => { console.log('connection opened open:', data.wsKey, data.ws.target.url); }); // receive formatted events with beautified keys. Any "known" floats stored in strings as parsed as floats. wsClient.on('formattedMessage', (data) => { console.log('formattedMessage: ', data); }); // read response to command sent via WS stream (e.g LIST_SUBSCRIPTIONS) wsClient.on('reply', (data) => { console.log('log reply: ', JSON.stringify(data, null, 2)); }); // receive notification when a ws connection is reconnecting automatically wsClient.on('reconnecting', (data) => { console.log('ws automatically reconnecting.... ', data?.wsKey); }); // receive notification that a reconnection completed successfully (e.g use REST to check for missing data) wsClient.on('reconnected', (data) => { console.log('ws has reconnected ', data?.wsKey); }); // Recommended: receive error events (e.g. first reconnection failed) wsClient.on('error', (data) => { console.log('ws saw error ', data?.wsKey); }); // Call methods to subcribe to as many websockets as you want. // Each method spawns a new connection, unless a websocket already exists for that particular request topic. // wsClient.subscribeSpotAggregateTrades(market); // wsClient.subscribeSpotTrades(market); // wsClient.subscribeSpotKline(market, interval); // wsClient.subscribeSpotSymbolMini24hrTicker(market); // wsClient.subscribeSpotAllMini24hrTickers(); // wsClient.subscribeSpotSymbol24hrTicker(market); // wsClient.subscribeSpotAll24hrTickers(); // wsClient.subscribeSpotSymbolBookTicker(market); // wsClient.subscribeSpotAllBookTickers(); // wsClient.subscribeSpotPartialBookDepth(market, 5); // wsClient.subscribeSpotDiffBookDepth(market); wsClient.subscribeSpotUserDataStream(); wsClient.subscribeMarginUserDataStream(); wsClient.subscribeIsolatedMarginUserDataStream('BTCUSDT'); wsClient.subscribeUsdFuturesUserDataStream(); // each method also restores the WebSocket object, which can be interacted with for more control // const ws1 = wsClient.subscribeSpotSymbolBookTicker(market); // const ws2 = wsClient.subscribeSpotAllBookTickers(); // const ws3 = wsClient.subscribeSpotUserDataStream(listenKey); // optionally directly open a connection to a URL. Not recommended for production use. // const ws4 = wsClient.connectToWsUrl(`wss://stream.binance.com:9443/ws/${listenKey}`, 'customDirectWsConnection1');

See websocket-client.ts for further information. Also see ws-userdata.ts for user data examples.


Customise Logging

Pass a custom logger which supports the log methods silly, debug, notice, info, warning and error, or override methods from the default logger as desired.

const { WebsocketClient, DefaultLogger } = require('binance'); // Enable all logging on the silly level DefaultLogger.silly = (...params) => { console.log('sillyLog: ', params); }; const ws = new WebsocketClient( api_key: 'xxx', api_secret: 'yyyy', DefaultLogger );

Browser/Frontend Usage

Import

This is the "modern" way, allowing the package to be directly imported into frontend projects with full typescript support.

  1. Install these dependencies
    npm install crypto-browserify stream-browserify
  2. Add this to your tsconfig.json
    { "compilerOptions": { "paths": { "crypto": [ "./node_modules/crypto-browserify" ], "stream": [ "./node_modules/stream-browserify" ] }
  3. Declare this in the global context of your application (ex: in polyfills for angular)
    (window as any).global = window;

Webpack

This is the "old" way of using this package on webpages. This will build a minified js bundle that can be pulled in using a script tag on a website.

Build a bundle using webpack:

  • npm install
  • npm build
  • npm pack

The bundle can be found in dist/. Altough usage should be largely consistent, smaller differences will exist. Documentation is still TODO.

However, note that browser usage will lead to CORS errors due to Binance.


Contributions & Thanks

Have my projects helped you? Share the love, there are many ways you can show your thanks:

  • Star & share my projects.
  • Are my projects useful? Sponsor me on Github and support my effort to maintain & improve them: https://github.com/sponsors/tiagosiebler
  • Have an interesting project? Get in touch & invite me to it.
  • Or buy me all the coffee:
    • ETH(ERC20): 0xA3Bda8BecaB4DCdA539Dc16F9C54a592553Be06C <!-- metamask -->

For more ways to give thanks & support my efforts, visit Contributions & Thanks!

Contributions & Pull Requests

Contributions are encouraged, I will review any incoming pull requests. See the issues tab for todo items.

Star History

[![Star History

编辑推荐精选

扣子-AI办公

扣子-AI办公

职场AI,就用扣子

AI办公助手,复杂任务高效处理。办公效率低?扣子空间AI助手支持播客生成、PPT制作、网页开发及报告写作,覆盖科研、商业、舆情等领域的专家Agent 7x24小时响应,生活工作无缝切换,提升50%效率!

堆友

堆友

多风格AI绘画神器

堆友平台由阿里巴巴设计团队创建,作为一款AI驱动的设计工具,专为设计师提供一站式增长服务。功能覆盖海量3D素材、AI绘画、实时渲染以及专业抠图,显著提升设计品质和效率。平台不仅提供工具,还是一个促进创意交流和个人发展的空间,界面友好,适合所有级别的设计师和创意工作者。

图像生成AI工具AI反应堆AI工具箱AI绘画GOAI艺术字堆友相机AI图像热门
码上飞

码上飞

零代码AI应用开发平台

零代码AI应用开发平台,用户只需一句话简单描述需求,AI能自动生成小程序、APP或H5网页应用,无需编写代码。

Vora

Vora

免费创建高清无水印Sora视频

Vora是一个免费创建高清无水印Sora视频的AI工具

Refly.AI

Refly.AI

最适合小白的AI自动化工作流平台

无需编码,轻松生成可复用、可变现的AI自动化工作流

酷表ChatExcel

酷表ChatExcel

大模型驱动的Excel数据处理工具

基于大模型交互的表格处理系统,允许用户通过对话方式完成数据整理和可视化分析。系统采用机器学习算法解析用户指令,自动执行排序、公式计算和数据透视等操作,支持多种文件格式导入导出。数据处理响应速度保持在0.8秒以内,支持超过100万行数据的即时分析。

AI工具酷表ChatExcelAI智能客服AI营销产品使用教程
TRAE编程

TRAE编程

AI辅助编程,代码自动修复

Trae是一种自适应的集成开发环境(IDE),通过自动化和多元协作改变开发流程。利用Trae,团队能够更快速、精确地编写和部署代码,从而提高编程效率和项目交付速度。Trae具备上下文感知和代码自动完成功能,是提升开发效率的理想工具。

AI工具TraeAI IDE协作生产力转型热门
AIWritePaper论文写作

AIWritePaper论文写作

AI论文写作指导平台

AIWritePaper论文写作是一站式AI论文写作辅助工具,简化了选题、文献检索至论文撰写的整个过程。通过简单设定,平台可快速生成高质量论文大纲和全文,配合图表、参考文献等一应俱全,同时提供开题报告和答辩PPT等增值服务,保障数据安全,有效提升写作效率和论文质量。

AI辅助写作AI工具AI论文工具论文写作智能生成大纲数据安全AI助手热门
博思AIPPT

博思AIPPT

AI一键生成PPT,就用博思AIPPT!

博思AIPPT,新一代的AI生成PPT平台,支持智能生成PPT、AI美化PPT、文本&链接生成PPT、导入Word/PDF/Markdown文档生成PPT等,内置海量精美PPT模板,涵盖商务、教育、科技等不同风格,同时针对每个页面提供多种版式,一键自适应切换,完美适配各种办公场景。

AI办公办公工具AI工具博思AIPPTAI生成PPT智能排版海量精品模板AI创作热门
潮际好麦

潮际好麦

AI赋能电商视觉革命,一站式智能商拍平台

潮际好麦深耕服装行业,是国内AI试衣效果最好的软件。使用先进AIGC能力为电商卖家批量提供优质的、低成本的商拍图。合作品牌有Shein、Lazada、安踏、百丽等65个国内外头部品牌,以及国内10万+淘宝、天猫、京东等主流平台的品牌商家,为卖家节省将近85%的出图成本,提升约3倍出图效率,让品牌能够快速上架。

下拉加载更多