| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Collection of auto-generated PHP connectors for Binance APIs.
Before using the connectors, ensure you have:
For detailed information, refer to the Binance API Documentation.
All connectors are within the same package and can be install with the command:
composer require binance/binance-connector-phpSince this repository contains auto-generated code using OpenAPI Generator, we encourage you to:
When creating REST clients (such as SpotRestApi), you use one of the following types of Signature Generator to create signatures (for SIGNED endpoints) based on your security preference:
$configurationBuilder = SpotRestApiUtil::getConfigurationBuilder();
$configurationBuilder->apiKey('apiKey')->secretKey('mySecretKey');
$api = new SpotRestApi($configurationBuilder->build()); $configurationBuilder = SpotRestApiUtil::getConfigurationBuilder();
$configurationBuilder
->apiKey('apiKey')
->privateKey('file:///path/to/private.key')
// if the private key is protected by a password
->privateKeyPass("myPrivateKeyPass");
$api = new SpotRestApi($configurationBuilder->build()); // set up a client array
$configurationBuilder = SpotRestApiUtil::getConfigurationBuilder();
// define the proxies
$proxies = [
'http' => 'http://localhost:8080',
'https' => 'http://localhost:8080',
];
$configurationBuilder->setProxy($proxies);
$api = new SpotRestApi($configurationBuilder->build());Algo: Rest API
Alpha: Rest API
C2c: Rest API
Convert: Rest API
Copy Trading: Rest API
Crypto Loan: Rest API
Derivatives Trading Coin Futures: Rest API
Derivatives Trading Options: Rest API
Derivatives Trading Portfolio Margin: Rest API
Derivatives Trading Portfolio Margin Pro: Rest API
Derivatives Trading Usds Futures: Rest API
Dual Investment: Rest API
Fiat: Rest API
Gift Card: Rest API
Margin Trading: Rest API
Mining: Rest API
Nft: Rest API
Pay: Rest API
Rebate: Rest API
Simple Earn: Rest API
Spot: Rest API
Staking: Rest API
Sub Account: Rest API
Vip Loan: Rest API
W3W Prediction: Rest API
Wallet: Rest API
This project is licensed under the MIT License - see the LICENSE file for details.
| Back | FazBrowse Home | New Git URL |