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:
- Supported Features
- Installation
- Documentation
- REST APIs
- Testing
- Migration Guide
- Contributing
- Licence
- REST API Endpoints:
/fapi/*
- 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/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.
import { DerivativesTradingPortfolioMarginPro } from '@binance/derivatives-trading-portfolio-margin-pro';
const configurationRestAPI = {
apiKey: 'your-api-key',
apiSecret: 'your-api-secret',
};
const client = new DerivativesTradingPortfolioMarginPro({ configurationRestAPI });
client.restAPI
.getPortfolioMarginProAccountInfo()
.then((res) => res.data())
.then((data) => 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.
For testing purposes, /fapi/*
endpoints can be used in the Futures Testnet. Update the basePath
in your configuration:
import { DerivativesTradingPortfolioMarginPro, DERIVATIVES_TRADING_PORTFOLIO_MARGIN_REST_API_TESTNET_URL } from '@binance/derivatives-trading-portfolio-margin-pro';
const configurationRestAPI = {
apiKey: 'your-api-key',
apiSecret: 'your-api-secret',
basePath: DERIVATIVES_TRADING_PORTFOLIO_MARGIN_REST_API_TESTNET_URL,
};
const client = new DerivativesTradingPortfolioMarginPro({ configurationRestAPI });
If basePath
is not provided, it defaults to https://api.binance.com
.
To run the tests:
npm install
npm run test
The tests cover:
- REST API endpoints
- WebSocket Streams
- 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:
- Open a GitHub issue describing your suggestion or the bug you've identified.
- 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.