Gathering detailed insights and metrics for @binance/derivatives-trading-portfolio-margin-pro
Gathering detailed insights and metrics for @binance/derivatives-trading-portfolio-margin-pro
Gathering detailed insights and metrics for @binance/derivatives-trading-portfolio-margin-pro
Gathering detailed insights and metrics for @binance/derivatives-trading-portfolio-margin-pro
npm install @binance/derivatives-trading-portfolio-margin-pro
Typescript
Module System
Node Version
NPM Version
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
Latest Version
7.0.1
Package Id
@binance/derivatives-trading-portfolio-margin-pro@7.0.1
Unpacked Size
684.07 kB
Size
59.59 kB
File Count
9
NPM Version
8.19.4
Node Version
16.20.2
Published on
Jul 08, 2025
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
4
This is a client library for the Binance Derivatives Trading Portfolio Margin Pro API, enabling developers to interact programmatically with Binance's API to suit their derivative trading needs, through three distinct endpoints:
/fapi/*
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:
1nvm install 22.12.0 2nvm use 22.12.0
Then install the library using npm
:
1npm install @binance/derivatives-trading-portfolio-margin-pro
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.
1import { DerivativesTradingPortfolioMarginPro } from '@binance/derivatives-trading-portfolio-margin-pro'; 2 3const configurationRestAPI = { 4 apiKey: 'your-api-key', 5 apiSecret: 'your-api-secret', 6}; 7const client = new DerivativesTradingPortfolioMarginPro({ configurationRestAPI }); 8 9client.restAPI 10 .getPortfolioMarginProAccountInfo() 11 .then((res) => res.data()) 12 .then((data) => console.log(data)) 13 .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 derivatives-trading-portfolio-margin-pro
is used for subscribing to user 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 user data stream, which sends account-level events such as account and order updates. First create a listen-key via REST API; then:
1import { DerivativesTradingPortfolioMarginPro, DERIVATIVES_TRADING_PORTFOLIO_MARGIN_PRO_WS_STREAMS_PROD_URL } from '@binance/derivatives-trading-portfolio-margin-pro'; 2 3const configurationWebsocketStreams = { 4 wsURL: DERIVATIVES_TRADING_PORTFOLIO_MARGIN_PRO_WS_STREAMS_PROD_URL, 5}; 6const client = new DerivativesTradingPortfolioMarginPro({ configurationWebsocketStreams }); 7 8client.websocketStreams 9 .connect() 10 .then((connection) => { 11 const stream = connection.userData('listenKey'); 12 stream.on('message', (data) => { 13 switch (data.e) { 14 case 'riskLevelChange': 15 console.log('risk level change stream', data); 16 break; 17 default: 18 console.log('unknown stream', data); 19 break; 20 } 21 }); 22 }) 23 .catch((err) => console.error(err));
You can unsubscribe from the user data streams using the unsubscribe
method. This is useful for managing active subscriptions without closing the connection.
1import { DerivativesTradingPortfolioMarginPro, DERIVATIVES_TRADING_PORTFOLIO_MARGIN_PRO_WS_STREAMS_PROD_URL } from '@binance/derivatives-trading-portfolio-margin-pro'; 2 3const configurationWebsocketStreams = { 4 wsURL: DERIVATIVES_TRADING_PORTFOLIO_MARGIN_PRO_WS_STREAMS_PROD_URL, 5}; 6const client = new DerivativesTradingPortfolioMarginPro({ configurationWebsocketStreams }); 7 8client.websocketStreams 9 .connect() 10 .then((connection) => { 11 const stream = connection.userData('listenKey'); 12 stream.on('message', (data) => { 13 switch (data.e) { 14 case 'riskLevelChange': 15 console.log('risk level change stream', data); 16 break; 17 default: 18 console.log('unknown stream', data); 19 break; 20 } 21 }); 22 23 setTimeout(() => { 24 stream.unsubscribe(); 25 console.log('Unsubscribed from user data streams'); 26 }, 10000); 27 }) 28 .catch((err) => console.error(err));
If wsURL
is not provided, it defaults to wss://fstream.binance.com/pm-classic
.
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:
1npm install 2 3npm run test
The tests cover:
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:
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.
No vulnerabilities found.
No security vulnerabilities found.