![]() |
VOOZH | about |
dotnet add package JK.BingX.Net --version 3.12.0
NuGet\Install-Package JK.BingX.Net -Version 3.12.0
<PackageReference Include="JK.BingX.Net" Version="3.12.0" />
<PackageVersion Include="JK.BingX.Net" Version="3.12.0" />Directory.Packages.props
<PackageReference Include="JK.BingX.Net" />Project file
paket add JK.BingX.Net --version 3.12.0
#r "nuget: JK.BingX.Net, 3.12.0"
#:package JK.BingX.Net@3.12.0
#addin nuget:?package=JK.BingX.Net&version=3.12.0Install as a Cake Addin
#tool nuget:?package=JK.BingX.Net&version=3.12.0Install as a Cake Tool
π .NET
π License
π Since
BingX.Net is a client library for accessing the BingX REST and Websocket API.
The library is targeting both .NET Standard 2.0 and .NET Standard 2.1 for optimal compatibility, as well as the latest dotnet versions to use the latest framework features.
| .NET implementation | Version Support |
|---|---|
| .NET Core | 2.0 and higher |
| .NET Framework | 4.6.1 and higher |
| Mono | 5.4 and higher |
| Xamarin.iOS | 10.14 and higher |
| Xamarin.Android | 8.0 and higher |
| UWP | 10.0.16299 and higher |
| Unity | 2018.1 and higher |
π NuGet version
π Nuget downloads
dotnet add package JK.BingX.Net
BingX.Net is available on GitHub packages. You'll need to add https://nuget.pkg.github.com/JKorf/index.json as a NuGet package source.
The NuGet package files are added along side the source with the latest GitHub release which can found here.
Basic request:
// Get the ETH/USDT ticker via rest request
var restClient = new BingXRestClient();
var tickerResult = await restClient.SpotApi.ExchangeData.GetTickersAsync("ETH-USDT");
var lastPrice = tickerResult.Data.Single().LastPrice;
Place order:
var restClient = new BingXRestClient(opts => {
opts.ApiCredentials = new BingXCredentials("APIKEY", "APISECRET");
});
// Place Limit order to go long for 0.1 ETH at 2000
var orderResult = await restClient.PerpetualFuturesApi.Trading.PlaceOrderAsync(
"ETHUSDT",
OrderSide.Buy,
FuturesOrderType.Limit,
PositionSide.Long,
0.1m,
2000,
timeInForce: TimeInForce.GoodTillCanceled);
WebSocket subscription:
// Subscribe to ETH/USDT ticker updates via the websocket API
var socketClient = new BingXSocketClient();
var tickerSubscriptionResult = socketClient.SpotApi.SubscribeToTickerUpdatesAsync("ETH-USDT", (update) =>
{
var lastPrice = update.Data.LastPrice;
});
For information on the clients, dependency injection, response processing and more see the documentation or have a look at the examples here or here.
For AI coding assistants and quick onboarding:
BingX.Net is based on the CryptoExchange.Net base library. Other exchange API implementations based on the CryptoExchange.Net base library are available and follow the same logic.
CryptoExchange.Net also allows for easy access to different exchange API's.
π Nuget version
A Discord server is available here. For discussion and/or questions around the CryptoExchange.Net and implementation libraries, feel free to join.
| API | Supported | Location |
|---|---|---|
| Market Interface | β | restClient.SpotApi.ExchangeData |
| Wallet deposits and withdrawals | β | restClient.SpotApi.Account |
| Spot account | β | restClient.SpotApi.Account |
| Trade interface | β | restClient.SpotApi.Trading |
| Websocket Market Data | β | socketClient.SpotApi |
| Websocket Account Data | β | socketClient.SpotApi |
| API | Supported | Location |
|---|---|---|
| Market Interface | β | restClient.PerpetualFuturesApi.ExchangeData |
| Account Interface | β | restClient.PerpetualFuturesApi.Account |
| Trade Interface | β | restClient.PerpetualFuturesApi.Account/restClient.PerpetualFuturesApi.Trading |
| Websocket Market Data | β | socketClient.PerpetualFuturesApi |
| Websocket Account Data | β | socketClient.PerpetualFuturesApi |
| API | Supported | Location |
|---|---|---|
| Standard Contract Interface | X |
| API | Supported | Location |
|---|---|---|
| Spot account | β | restClient.SpotApi.Account |
| Wallet deposits and withdrawals | β | restClient.SpotApi.Account |
| Sub-account | X |
| API | Supported | Location |
|---|---|---|
| Standard Contract Interface | X |
Any support is greatly appreciated.
Make a one time donation in a crypto currency of your choice. If you prefer to donate a currency not listed here please contact me.
Btc: bc1q277a5n54s2l2mzlu778ef7lpkwhjhyvghuv8qf
Eth: 0xcb1b63aCF9fef2755eBf4a0506250074496Ad5b7
USDT (TRX) TKigKeJPXZYyMVDgMyXxMf17MWYia92Rjd
Alternatively, sponsor me on Github using Github Sponsors.
Version 3.12.0 - 08 Jun 2026
Version 3.11.1 - 02 Jun 2026
Version 3.11.0 - 26 May 2026
Version 3.10.2 - 01 May 2026
Version 3.10.1 - 24 Apr 2026
Version 3.10.0 - 09 Apr 2026
Version 3.9.1 - 24 Mar 2026
Version 3.9.0 - 24 Mar 2026
Updated CryptoExchange.Net to version 11.0.1, see https://github.com/JKorf/CryptoExchange.Net/releases/ for full release notes
Updated class for supplying API credentials from ApiCredentials to BingXCredentials
Updated Shared order status parsing to default to Unknown value if not parsable
Added missing SymbolStatus Enum value
Added LastUpdateId property to BingXOrderBook model
Added MaxMarketNotional property to BingXSymbol model
Added MarkPrice property to BingXFundingRateHistory model
Added FundingIntervalHours, MinFundingRate, MaxFundingRate and UpdateTime properties to BingXFundingRate
Added OfflineTime, MaintenanceTime and LaunchTime properties on BingXContract model
Added LastUpdateId and UpdateTime properties on BingXFuturesBookTicker model
Fixed Timestamp mapping on BingXFuturesTrade model
Notes for updating:
ApiCredentials = new ApiCredentials(..) β ApiCredentials = new BingXCredentials(..)Version 3.8.0 - 06 Mar 2026
Version 3.7.0 - 24 Feb 2026
Version 3.6.0 - 16 Feb 2026
Version 3.5.0 - 10 Feb 2026
Version 3.4.0 - 06 Feb 2026
Version 3.3.0 - 22 Jan 2026
Version 3.2.1 - 14 Jan 2026
Version 3.2.0 - 13 Jan 2026
Version 3.1.0 - 07 Jan 2026
Version 3.0.1 - 18 Dec 2025
Version 3.0.0 - 16 Dec 2025
Version 2.12.0 - 11 Nov 2025
Version 2.11.0 - 06 Nov 2025
Version 2.10.0 - 03 Nov 2025
Version 2.9.0 - 16 Oct 2025
Version 2.8.0 - 30 Sep 2025
Version 2.7.0 - 01 Sep 2025
Version 2.6.1 - 26 Aug 2025
Version 2.6.0 - 25 Aug 2025
Version 2.5.1 - 21 Aug 2025
Version 2.5.0 - 20 Aug 2025
Version 2.4.0 - 04 Aug 2025
Version 2.3.0 - 23 Jul 2025
Version 2.2.2 - 17 Jul 2025
Version 2.2.1 - 16 Jul 2025
Version 2.2.0 - 15 Jul 2025
Version 2.1.1 - 20 Jun 2025
Version 2.1.0 - 02 Jun 2025
Version 2.0.0 - 13 May 2025
Version 2.0.0-beta3 - 01 May 2025
Version 2.0.0-beta2 - 23 Apr 2025
Version 2.0.0-beta1 - 22 Apr 2025
Version 1.21.0 - 11 Feb 2025
Version 1.20.1 - 06 Feb 2025
Version 1.20.0 - 05 Feb 2025
Version 1.19.2 - 04 Feb 2025
Version 1.19.1 - 07 Jan 2025
Version 1.19.0 - 23 Dec 2024
Version 1.18.2 - 20 Dec 2024
Version 1.18.1 - 03 Dec 2024
Version 1.18.0 - 28 Nov 2024
Version 1.17.0 - 25 Nov 2024
Version 1.16.0 - 19 Nov 2024
Version 1.15.1 - 15 Nov 2024
Version 1.15.0 - 13 Nov 2024
Version 1.14.0 - 06 Nov 2024
Version 1.13.0 - 04 Nov 2024
Version 1.12.0 - 28 Oct 2024
Version 1.11.2 - 21 Oct 2024
Version 1.11.1 - 14 Oct 2024
Version 1.11.0 - 27 Sep 2024
Version 1.10.0 - 11 Sep 2024
Version 1.9.2 - 28 Aug 2024
Version 1.9.1 - 23 Aug 2024
Version 1.9.0 - 19 Aug 2024
Version 1.8.0 - 07 Aug 2024
Version 1.7.0 - 27 Jul 2024
Version 1.6.0 - 16 Jul 2024
Version 1.5.0 - 02 Jul 2024
Version 1.4.0 - 26 Jun 2024
Version 1.3.2 - 23 Jun 2024
Version 1.3.1 - 13 Jun 2024
Version 1.3.0 - 11 Jun 2024
Version 1.2.0 - 02 Jun 2024
Version 1.1.1 - 07 May 2024
Version 1.1.0 - 02 May 2024
Version 1.0.5 - 01 May 2024
Version 1.0.4 - 28 Apr 2024
Version 1.0.3 - 23 Apr 2024
Version 1.0.2 - 18 Apr 2024
Version 1.0.1 - 10 Apr 2024
Version 1.0.0 - 25 Mar 2024
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 net5.0 was computed. net5.0-windows net5.0-windows was computed. net6.0 net6.0 was computed. net6.0-android net6.0-android was computed. net6.0-ios net6.0-ios was computed. net6.0-maccatalyst net6.0-maccatalyst was computed. net6.0-macos net6.0-macos was computed. net6.0-tvos net6.0-tvos was computed. net6.0-windows net6.0-windows was computed. net7.0 net7.0 was computed. net7.0-android net7.0-android was computed. net7.0-ios net7.0-ios was computed. net7.0-maccatalyst net7.0-maccatalyst was computed. net7.0-macos net7.0-macos was computed. net7.0-tvos net7.0-tvos was computed. net7.0-windows net7.0-windows was computed. net8.0 net8.0 is compatible. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 is compatible. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 is compatible. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
| .NET Core | netcoreapp2.0 netcoreapp2.0 was computed. netcoreapp2.1 netcoreapp2.1 was computed. netcoreapp2.2 netcoreapp2.2 was computed. netcoreapp3.0 netcoreapp3.0 was computed. netcoreapp3.1 netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 netstandard2.0 is compatible. netstandard2.1 netstandard2.1 is compatible. |
| .NET Framework | net461 net461 was computed. net462 net462 was computed. net463 net463 was computed. net47 net47 was computed. net471 net471 was computed. net472 net472 was computed. net48 net48 was computed. net481 net481 was computed. |
| MonoAndroid | monoandroid monoandroid was computed. |
| MonoMac | monomac monomac was computed. |
| MonoTouch | monotouch monotouch was computed. |
| Tizen | tizen40 tizen40 was computed. tizen60 tizen60 was computed. |
| Xamarin.iOS | xamarinios xamarinios was computed. |
| Xamarin.Mac | xamarinmac xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos xamarinwatchos was computed. |
Showing the top 2 NuGet packages that depend on JK.BingX.Net:
| Package | Downloads |
|---|---|
|
CryptoClients.Net
CryptoClients.Net offers full easy access to 27 different cryptocurrency exchange API's, such as Binance, Bybit, HyperLiquid and many more. It offers a unified way to access the API's and tools to dynamically call endpoints on different exchanges. |
|
|
Le.CryptoClients.Net
CryptoClients.Net is a collection of multiple cryptocurrency exchange API clients for accessing both the REST API's and WebSocket API's. Supports order and account management and requesting and streaming both public and private data. |
Showing the top 1 popular GitHub repositories that depend on JK.BingX.Net:
| Repository | Stars |
|---|---|
|
JKorf/CryptoExchange.Net
A C# .netstandard base library used for implementing cryptocurrency exchange API's.
|
| Version | Downloads | Last Updated |
|---|---|---|
| 3.12.0 | 271 | 6/8/2026 |
| 3.11.1 | 316 | 6/2/2026 |
| 3.11.0 | 346 | 5/26/2026 |
| 3.10.2 | 1,054 | 5/1/2026 |
| 3.10.1 | 252 | 4/24/2026 |
| 3.10.0 | 659 | 4/9/2026 |
| 3.9.1 | 952 | 3/24/2026 |
| 3.9.0 | 128 | 3/24/2026 |
| 3.8.0 | 1,351 | 3/6/2026 |
| 3.7.0 | 1,107 | 2/24/2026 |
| 3.6.0 | 901 | 2/16/2026 |
| 3.5.0 | 345 | 2/10/2026 |
| 3.4.0 | 163 | 2/6/2026 |
| 3.3.0 | 1,557 | 1/22/2026 |
| 3.2.1 | 357 | 1/14/2026 |
| 3.2.0 | 262 | 1/13/2026 |
| 3.1.0 | 263 | 1/7/2026 |
| 3.0.1 | 1,066 | 12/18/2025 |
| 3.0.0 | 538 | 12/16/2025 |
| 2.12.0 | 1,766 | 11/11/2025 |