bybit.net.api
1.0.2
See the version list below for details.
dotnet add package bybit.net.api --version 1.0.2
NuGet\Install-Package bybit.net.api -Version 1.0.2
<PackageReference Include="bybit.net.api" Version="1.0.2" />
paket add bybit.net.api --version 1.0.2
#r "nuget: bybit.net.api, 1.0.2"
// Install bybit.net.api as a Cake Addin #addin nuget:?package=bybit.net.api&version=1.0.2 // Install bybit.net.api as a Cake Tool #tool nuget:?package=bybit.net.api&version=1.0.2
Bybit Open API Connector .Net6
Table of Contents
About
Bybit.Net.Api offers an official, powerful, and efficient .NET connector to the Bybit public Trading API
Dive into a plethora of functionalities:
- Market Data Retrieval
- Trade Execution
- Position Management
- Account and Asset Info Retrieval
- User Management
- Public Websocket Streaming
- Private Websocket Streaming
This initiative, originated by the renowned .NET developer Victor, now flourishes under the meticulous care of Bybit's dedicated team of in-house .NET professionals. Your contributions are warmly welcomed and appreciated!
Development
Bybit.Net.Api constantly evolves, keeping pace with the freshest features from Bybit's API. Crafted for efficiency, the library maintains a slim profile by minimizing external dependencies. If you've broadened its horizons or ironed out bugs, we eagerly await your pull request.
Installation
Ensure you're using .NET 6 or newer. This SDK depends on Microsoft.Extensions.Logging 7.0.0 and Newtonsoft 13.0.3. Dotnet CLI
dotnet add package bybit.net.api
Nuget tool
NuGet\Install-Package bybit.net.api
Package reference
<PackageReference Include="bybit.net.api"/>
Usage
RESTful APIs
- Market Kline
BybitMarketDataService market = new BybitMarketDataService();
var klineInfo = await market.GetMarketKline("spot", "BTCUSDT", "1");
Console.WriteLine(klineInfo);
Authentication - RESTful APIs
- Place Single Order
BybitTradeService tradeService = new BybitTradeService(apiKey: "xxxxxxxxxxx", apiSecret: "xxxxxxxxxxxxxxxx");
var orderInfo = await tradeService.PlaceOrder(category: Category.LINEAR, symbol: "BLZUSDT", side: Side.BUY, orderType: OrderType.MARKET, qty: "15", timeInForce: TimeInForce.GTC);
Console.WriteLine(orderInfo);
- Account Wallet
BybitAccountService accountService = new BybitAccountService(apiKey: "xxxxxxxx", apiSecret: "xxxxxxxxxxxxxxx");
var accountInfo = await accountService.GetAccountBalance(accountType: AccountType.Unified);
Console.WriteLine(accountInfo);
- Position Info
BybitPositionService positionService = new BybitPositionService(apiKey: "xxxxxxxxxxxxxxxxxxxx", apiSecret: "xxxxxxxxxxxxxxxxx");
var positionInfo = await positionService.GetPositionInfo(category: Category.LINEAR, symbol: "BLZUSDT");
Console.WriteLine(positionInfo);
Websocket public channel
- Trade Subscribe
var websocket = new BybitLinearWebSocket();
websocket.OnMessageReceived(
(data) =>
{
Console.WriteLine(data);
return Task.CompletedTask;
}, CancellationToken.None);
await websocket.ConnectAsync(new string[] { "publicTrade.BTCUSDT" }, CancellationToken.None);
Websocket private channel
- Order Subscribe
var websocket = new BybitPrivateWebsocket(apiKey: "xxxxxxxxx", apiSecret: "xxxxxxxxxxxxxxxxxx");
websocket.OnMessageReceived(
(data) =>
{
Console.WriteLine(data);
return Task.CompletedTask;
}, CancellationToken.None);
await websocket.ConnectAsync(new string[] { "order" }, CancellationToken.None);
Contact
For support, join our Bybit API community on Telegram.
Contributors
List of other contributors
<table>
<tr>
<td align="center">
<a href="https://github.com/wuhewuhe">
<img src="https://avatars.githubusercontent.com/u/32245754?v=4" width="100px;" alt=""/>
<br />
<sub>
<b>Victor</b>
</sub>
</a>
<br />
<a href="https://github.com/wuhewuhe/bybit.net.api/commits?author=wuhewuhe" title="Code">💻</a>
<a href="https://github.com/wuhewuhe/bybit.net.api/commits?author=wuhewuhe" title="Documentation">📖</a>
</td>
<td align="center">
<a href="https://github.com/dimibatch">
<img src="https://avatars.githubusercontent.com/u/42719618?v=4" width="100px;" alt=""/>
<br />
<sub>
<b>Dimitri</b>
</sub>
</a>
<br />
<a href="https://github.com/wuhewuhe/bybit.net.api/commits?author=dimibatch" title="Code">💻</a>
<a href="https://github.com/wuhewuhe/bybit.net.api/commits?author=dimibatch" title="Documentation">📖</a>
</td>
<td align="center">
<a href="https://github.com/Doom-Prince">
<img src="https://avatars.githubusercontent.com/u/124635036?v=4" width="100px;" alt=""/>
<br />
<sub>
<b>Doom</b>
</sub>
</a>
<br />
<a href="https://github.com/wuhewuhe/bybit.net.api/commits?author=Doom-Prince" title="Code">💻</a>
<a href="https://github.com/wuhewuhe/bybit.net.api/commits?author=Doom-Prince" title="Documentation">📖</a>
</td>
</tr>
</table>
Donations
Your donations keep our development active and our community growing. Donate USDT to our ERC20 Wallet Address.
Note: Replace placeholders (like YOUR_API_KEY, links, or other details) with the actual information. You can also customize this template to better fit the actual state and details of your DotNet API.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net6.0
- Microsoft.Extensions.Logging (>= 7.0.0)
- Newtonsoft.Json (>= 13.0.3)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
implemented bybit v5 api and websocket, support market data, Trade and position,
need to finishall open api endpoint about account, asset, spot margin service and instituion service.