Binance Connector JS
    Preparing search index...

    Module @binance/margin-trading

    Binance JavaScript Margin Trading Connector

    Open Issues Code Style: Prettier npm version npm Downloads Node.js Version Known Vulnerabilities Docs License: MIT

    This is a client library for the Binance Margin Trading API, enabling developers to interact programmatically with Binance's Margin Trading trading platform. The library provides tools to use funds provided by a third party to conduct asset transactions through the REST API:

    • REST API Endpoints:
      • /sapi/v1/margin/*
      • /sapi/v1/bnbBurn/*
      • /sapi/v1/userDataStream/*
    • Inclusion of test cases and examples for quick onboarding.

    To use this library, ensure your environment is running Node.js version 22.12.0 or later. If you're using nvm (Node Version Manager), you can set the correct version as follows:

    nvm install 22.12.0
    nvm use 22.12.0

    Then install the library using npm:

    npm install @binance/margin-trading
    

    For detailed information, refer to the Binance API Documentation.

    All REST API endpoints are available through the rest-api module. Note that some endpoints require authentication using your Binance API credentials.

    import { MarginTrading, MarginTradingRestAPI } from '@binance/margin-trading';

    const configurationRestAPI = {
    apiKey: 'your-api-key',
    apiSecret: 'your-api-secret',
    };
    const client = new MarginTrading({ configurationRestAPI });

    client.restAPI
    .getSummaryOfMarginAccount()
    .then((res) => res.data())
    .then((data: MarginTradingRestAPI.GetSummaryOfMarginAccountResponse) => console.log(data))
    .catch((err) => console.error(err));

    More examples can be found in the examples/rest-api folder.

    The REST API supports the following advanced configuration options:

    • timeout: Timeout for requests in milliseconds (default: 1000 ms).
    • proxy: Proxy configuration:
      • host: Proxy server hostname.
      • port: Proxy server port.
      • protocol: Proxy protocol (http or https).
      • auth: Proxy authentication credentials:
        • username: Proxy username.
        • password: Proxy password.
    • keepAlive: Enable HTTP keep-alive (default: true).
    • compression: Enable response compression (default: true).
    • retries: Number of retry attempts for failed requests (default: 3).
    • backoff: Delay in milliseconds between retries (default: 1000 ms).
    • httpsAgent: Custom HTTPS agent for advanced TLS configuration.
    • privateKey: RSA or ED25519 private key for authentication.
    • privateKeyPassphrase: Passphrase for the private key, if encrypted.

    You can configure a timeout for requests in milliseconds. If the request exceeds the specified timeout, it will be aborted. See the Timeout example for detailed usage.

    The REST API supports HTTP/HTTPS proxy configurations. See the Proxy example for detailed usage.

    Enable HTTP keep-alive for persistent connections. See the Keep-Alive example for detailed usage.

    Enable or disable response compression. See the Compression example for detailed usage.

    Configure the number of retry attempts and delay in milliseconds between retries for failed requests. See the Retries example for detailed usage.

    Customize the HTTPS agent for advanced TLS configurations. See the HTTPS Agent example for detailed usage.

    The REST API supports key pair-based authentication for secure communication. You can use RSA or ED25519 keys for signing requests. See the Key Pair Based Authentication example for detailed usage.

    To enhance security, you can use certificate pinning with the httpsAgent option in the configuration. This ensures the client only communicates with servers using specific certificates. See the Certificate Pinning example for detailed usage.

    The REST API provides detailed error types to help you handle issues effectively:

    • ConnectorClientError: General client error.
    • RequiredError: Thrown when a required parameter is missing.
    • UnauthorizedError: Indicates missing or invalid authentication credentials.
    • ForbiddenError: Access to the requested resource is forbidden.
    • TooManyRequestsError: Rate limit exceeded.
    • RateLimitBanError: IP address banned for exceeding rate limits.
    • ServerError: Internal server error.
    • NetworkError: Issues with network connectivity.
    • NotFoundError: Resource not found.
    • BadRequestError: Invalid request.

    See the Error Handling example for detailed usage.

    If basePath is not provided, it defaults to https://api.binance.com.

    WebSocket Streams in margin-trading is used for subscribing to risk and trade data streams. Use the websocket-streams module to interact with it.

    The WebSocket Streams API supports the following advanced configuration options:

    • reconnectDelay: Specify the delay between reconnection attempts (default: 5000 ms).
    • compression: Enable or disable compression for WebSocket messages (default: true).
    • agent: Customize the WebSocket agent for advanced configurations.
    • mode: Choose between single and pool connection modes.
      • single: A single WebSocket connection.
      • pool: A pool of WebSocket connections.
    • poolSize: Define the number of WebSocket connections in pool mode.

    You can consume the risk and trade data stream, which sends account-level events such as account and order updates. First create a listen-key via REST API; then:

    import { MarginTrading, MARGIN_TRADING_WS_STREAMS_PROD_URL } from '@binance/margin-trading';

    const configurationWebsocketStreams = {
    wsURL: MARGIN_TRADING_WS_STREAMS_PROD_URL,
    };
    const client = new MarginTrading({ configurationWebsocketStreams });

    client.websocketStreams
    .connect()
    .then((connection) => {
    const tradeStream = connection.tradeData('listenKey');
    tradeStream.on('message', (data) => {
    switch (data.e) {
    case 'balanceUpdate':
    console.log('balance update stream', data);
    break;
    case 'outboundAccountPosition':
    console.log('outbound account position stream', data);
    break;
    // …handle other variants…
    default:
    console.log('unknown stream', data);
    break;
    }
    });
    })
    .catch((err) => console.error(err));
    import { MarginTrading, MARGIN_TRADING_RISK_WS_STREAMS_PROD_URL } from '@binance/margin-trading';

    const configurationWebsocketStreams = {
    wsURL: MARGIN_TRADING_RISK_WS_STREAMS_PROD_URL,
    };
    const client = new MarginTrading({ configurationWebsocketStreams });

    client.websocketStreams
    .connect()
    .then((connection) => {
    const riskStream = connection.riskData('listenKey');
    riskStream.on('message', (data) => {
    switch (data.e) {
    case 'MARGIN_LEVEL_STATUS_CHANGE':
    console.log('risk level change stream', data);
    break;
    case 'USER_LIABILITY_CHANGE':
    console.log('risk level change stream', data);
    break;
    default:
    console.log('unknown stream', data);
    break;
    }
    });
    })
    .catch((err) => console.error(err));

    You can unsubscribe from the risk and trade data streams using the unsubscribe method. This is useful for managing active subscriptions without closing the connection.

    import { MarginTrading, MARGIN_TRADING_WS_STREAMS_PROD_URL } from '@binance/margin-trading';

    const configurationWebsocketStreams = {
    wsURL: MARGIN_TRADING_WS_STREAMS_PROD_URL,
    };
    const client = new MarginTrading({ configurationWebsocketStreams });

    client.websocketStreams
    .connect()
    .then((connection) => {
    const tradeStream = connection.tradeData('listenKey');
    tradeStream.on('message', (data) => {
    switch (data.e) {
    case 'balanceUpdate':
    console.log('balance update stream', data);
    break;
    case 'outboundAccountPosition':
    console.log('outbound account position stream', data);
    break;
    default:
    console.log('unknown stream', data);
    break;
    }
    });

    setTimeout(() => {
    stream.unsubscribe();
    console.log('Unsubscribed from trade data streams');
    }, 10000);
    })
    .catch((err) => console.error(err));

    If wsURL is not provided, it defaults to wss://stream.binance.com:9443.

    The WebSocket connection is automatically renewed for both WebSocket API and WebSocket Streams connections, before the 24 hours expiration of the API key. This ensures continuous connectivity.

    To run the tests:

    npm install

    npm run test

    The tests cover:

    • REST API endpoints
    • Error handling and edge cases

    If you are upgrading to the new modularized structure, refer to the Migration Guide for detailed steps.

    Contributions are welcome!

    Since this repository contains auto-generated code, we encourage you to start by opening a GitHub issue to discuss your ideas or suggest improvements. This helps ensure that changes align with the project's goals and auto-generation processes.

    To contribute:

    1. Open a GitHub issue describing your suggestion or the bug you've identified.
    2. If it's determined that changes are necessary, the maintainers will merge the changes into the main branch.

    Please ensure that all tests pass if you're making a direct contribution. Submit a pull request only after discussing and confirming the change.

    Thank you for your contributions!

    This project is licensed under the MIT License. See the LICENCE file for details.

    Namespaces

    MarginTradingRestAPI
    MarginTradingWebsocketStreams

    Classes

    BadRequestError
    ConnectorClientError
    ForbiddenError
    MarginTrading
    NetworkError
    NotFoundError
    RateLimitBanError
    RequiredError
    ServerError
    TooManyRequestsError
    UnauthorizedError

    Interfaces

    ConfigurationMarginTrading

    Variables

    MARGIN_TRADING_REST_API_PROD_URL
    MARGIN_TRADING_RISK_WS_STREAMS_PROD_URL
    MARGIN_TRADING_WS_STREAMS_PROD_URL