Bitfinex.Net 7.1.0-beta2

This is a prerelease version of Bitfinex.Net.
There is a newer version of this package available.
See the version list below for details.
dotnet add package Bitfinex.Net --version 7.1.0-beta2
                    
NuGet\Install-Package Bitfinex.Net -Version 7.1.0-beta2
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Bitfinex.Net" Version="7.1.0-beta2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Bitfinex.Net" Version="7.1.0-beta2" />
                    
Directory.Packages.props
<PackageReference Include="Bitfinex.Net" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Bitfinex.Net --version 7.1.0-beta2
                    
#r "nuget: Bitfinex.Net, 7.1.0-beta2"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Bitfinex.Net@7.1.0-beta2
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Bitfinex.Net&version=7.1.0-beta2&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=Bitfinex.Net&version=7.1.0-beta2&prerelease
                    
Install as a Cake Tool

.Bitfinex.Net Bitfinex.Net

.NET License

Bitfinex.Net is a wrapper around the Bitfinex API as described on Bitfinex, including all features the API provides using clear and readable objects, both for the REST as the websocket API's.

Supported Frameworks

The library is targeting both .NET Standard 2.0 and .NET Standard 2.1 for optimal compatibility

.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

Get the library

Nuget version Nuget downloads

dotnet add package Bitfinex.Net

How to use

  • REST Endpoints
      // Get the ETH/USDT ticker via rest request
      var restClient = new BitfinexRestClient();
      var tickerResult = await restClient.SpotApi.ExchangeData.GetTickerAsync("tETHUST");
      var lastPrice = tickerResult.Data.LastPrice;
    
  • Websocket streams
      // Subscribe to ETH/USDT ticker updates via the websocket API
      var socketClient = new BitfinexSocketClient();
      var tickerSubscriptionResult = socketClient.SpotApi.SubscribeToTickerUpdatesAsync("tETHUST", (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.

CryptoExchange.Net

Bitfinex.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.

Exchange Repository Nuget
Binance JKorf/Binance.Net Nuget version
Bitget JKorf/Bitget.Net Nuget version
Bybit JKorf/Bybit.Net Nuget version
CoinEx JKorf/CoinEx.Net Nuget version
CoinGecko JKorf/CoinGecko.Net Nuget version
Huobi/HTX JKorf/Huobi.Net Nuget version
Kraken JKorf/Kraken.Net Nuget version
Kucoin JKorf/Kucoin.Net Nuget version
Mexc JKorf/Mexc.Net Nuget version
OKX JKorf/OKX.Net Nuget version

Discord

Nuget version
A Discord server is available here. Feel free to join for discussion and/or questions around the CryptoExchange.Net and implementation libraries.

Supported functionality

API Supported Location
Rest Public Endpoints restClient.SpotApi.ExchangeData
Rest Public Pulse Endpoints X
Calculation Endpoints restClient.SpotApi.ExchangeData
Rest Authenticated Endpoints restClient.SpotApi.Account / restClient.SpotApi.Trading
Rest Authenticated Pulse Endpoints X
Rest Authenticated Merchant Endpoints X
Websocket Public Channels socketClient.SpotApi
Websocket Authenticated Channels socketClient.SpotApi
Websocket Authenticated Inputs socketClient.SpotApi

Support the project

I develop and maintain this package on my own for free in my spare time, 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: bc1qz0jv0my7fc60rxeupr23e75x95qmlq6489n8gh
Eth: 0x8E21C4d955975cB645589745ac0c46ECA8FAE504

Alternatively, sponsor me on Github using Github Sponsors.

Release notes

  • Version 7.1.0-beta2 - 17 Feb 2024

    • Fixed socket authentication
  • Version 7.1.0-beta1 - 06 Feb 2024

    • Updated CryptoExchange.Net and implemented reworked websocket message handling. For release notes for the CryptoExchange.Net base library see: https://github.com/JKorf/CryptoExchange.Net/tree/beta?tab=readme-ov-file#release-notes
    • Combined multiple private websocket subscriptions into single subscription
    • Fixed issue in DI registration causing http client to not be correctly injected
    • Removed excessive constructor overload for BitfinexRestClient
    • Removed UpdateType from BitfinexTradeSimple model in favor of the UpdateType in the DataEvent wrapper
  • Version 7.0.5 - 03 Dec 2023

    • Updated CryptoExchange.Net
  • Version 7.0.4 - 24 Oct 2023

    • Updated CryptoExchange.Net
  • Version 7.0.3 - 09 Oct 2023

    • Updated CryptoExchange.Net version
  • Version 7.0.2 - 21 Sep 2023

    • Fixed incorrect url SpotApi.Account.WalletTransferAsync
  • Version 7.0.1 - 19 Sep 2023

    • Fixed socket ticker stream model
  • Version 7.0.0 - 17 Sep 2023

    • Updated all endpoints to V2 API (expect for Account.WithdrawAsync)
    • Updated all parameters and response models
    • Created endpoints for all possible requests for the Configs and Stats endpoints
    • Split the endpoints and subscriptions for trading symbols and funding symbols where necesarry
    • Added Account.GetMovementsDetailsAsync endpoint
    • Added Account.GetLoginHistoryAsync endpoint
    • Added Account.GetApiKeyPermissionsAsync endpoint
    • Added Account.GetAccountChangeLogAsync endpoint
    • Added ExchangeData.GetDerivativesStatusAsync endpoint
    • Added ExchangeData.GetLiquidationsAsync endpoint
    • Added ExchangeData.GetFundingStatisticsAsync endpoint
    • Added Trading.IncreasePositionAsync endpoint
    • Added Trading.GetIncreasePositionInfoAsync endpoint
    • Added Trading.GetPositionSnapshotsAsync endpoint
    • Added SubscribeToLiquidationUpdatesAsync stream
    • Added SubscribeToDerivativesUpdatesAsync stream
    • Added SubmitFundingOfferAsync socket request
    • Added CancelFundingOfferAsync socket request
  • Version 6.0.1 - 25 Aug 2023

    • Updated CryptoExchange.Net
  • Version 6.0.0 - 25 Jun 2023

    • Updated CryptoExchange.Net to version 6.0.0
    • Renamed BitfinexClient to BitfinexRestClient
    • Renamed SpotStreams to SpotApi on the BitfinexSocketClient
    • Updated endpoints to consistently use a base url without any path as basis to make switching environments/base urls clearer
    • Added IBitfinexOrderBookFactory and implementation for creating order books
    • Updated dependency injection register method (AddBitfinex)
  • Version 5.2.0 - 16 Apr 2023

    • Added GetTickerHistoryAsync endpoint
    • Updated socket PlaceOrderAsync parameters
    • Added missing order flag values
  • Version 5.1.2 - 18 Mar 2023

    • Updated CryptoExchange.Net
  • Version 5.1.1 - 14 Feb 2023

    • Updated CryptoExchange.Net
  • Version 5.1.0 - 17 Nov 2022

    • Updated CryptoExchange.Net
  • Version 5.0.16 - 25 Sep 2022

    • Fixed SpotApi.ExchangeData.GetOrderBookAsync() endpoint Bids/Asks being reversed
  • Version 5.0.15 - 18 Jul 2022

    • Updated CryptoExchange.Net
  • Version 5.0.14 - 16 Jul 2022

    • Updated CryptoExchange.Net
  • Version 5.0.13 - 10 Jul 2022

    • Fixed WalletTransferAsync success checking
    • Updated CryptoExchange.Net
  • Version 5.0.12 - 12 Jun 2022

    • Updated CryptoExchange.Net
  • Version 5.0.11 - 24 May 2022

    • Updated CryptoExchange.Net
  • Version 5.0.10 - 22 May 2022

    • Updated CryptoExchange.Net
  • Version 5.0.9 - 08 May 2022

    • Updated CryptoExchange.Net
  • Version 5.0.8 - 01 May 2022

    • Updated CryptoExchange.Net which fixed an timing related issue in the websocket reconnection logic
    • Added seconds representation to KlineInterval enum
    • Added allowed order book levels 1 and 250
  • Version 5.0.7 - 14 Apr 2022

    • Fixed deserialization error in ClosePositionAsync
    • Fixed WalletTransferAsync serialization issue
    • Updated CryptoExchange.Net
  • Version 5.0.6 - 14 Mar 2022

    • Added SubmitFundingAutoRenewAsync endpoint
    • Added GetFundingAutoRenewStatusAsync endpoint
  • Version 5.0.5 - 10 Mar 2022

    • Updated CryptoExchange.Net
  • Version 5.0.4 - 08 Mar 2022

    • Updated CryptoExchange.Net
  • Version 5.0.3 - 01 Mar 2022

    • Updated CryptoExchange.Net improving the websocket reconnection robustness
  • Version 5.0.2 - 27 Feb 2022

    • Updated CryptoExchange.Net
  • Version 5.0.1 - 24 Feb 2022

    • Updated CryptoExchange.Net
  • Version 5.0.0 - 18 Feb 2022

  • Version 4.2.4 - 03 Nov 2021

    • Fixed raw order book stream not accounting for checksum updates
  • Version 4.2.3 - 08 Oct 2021

    • Updated CryptoExchange.Net to fix some socket issues
  • Version 4.2.2 - 06 Oct 2021

    • Updated CryptoExchange.Net, fixing socket issue when calling from .Net Framework
  • Version 4.2.1 - 05 Oct 2021

    • Updated CryptoExchange.Net
  • Version 4.2.0 - 29 Sep 2021

    • Split GetTickerAsync in GetTickerAsync and GetTickersAsync, changed params to IEnumerable
    • Updated CryptoExchange.Net
  • Version 4.1.2 - 22 Sep 2021

    • Fixed nonce provider when running multiple program instances
  • Version 4.1.1 - 21 Sep 2021

    • Fix for nonce provider not working correctly in combination with other exchanges
  • Version 4.1.0 - 20 Sep 2021

    • Added custom nonce provider support
  • Version 4.0.5 - 15 Sep 2021

    • Updated CryptoExchange.Net
  • Version 4.0.4 - 02 Sep 2021

    • Fix for disposing order book closing socket even if there are other connections
  • Version 4.0.3 - 26 Aug 2021

    • Updated CryptoExchange.Net
  • Version 4.0.2 - 24 Aug 2021

    • Updated CryptoExchange.Net, improving websocket and SymbolOrderBook performance
    • Fixes for checksum validation BitfinexSymbolOrderBook
  • Version 4.0.1 - 13 Aug 2021

    • Fix for OperationCancelledException being thrown when closing a socket from a .net framework project
  • Version 4.0.0 - 12 Aug 2021

  • Version 4.0.0-beta3 - 09 Aug 2021

    • Renamed GetTradesForOrderAsync to GetOrderTradesAsync
    • Renamed GetTradesAsync to GetTradeHistoryAsync
    • Renamed GetTradeHistoryAsync to GetUserTradesAsync
    • Renamed GetOrderHistoryAsync to GetOrdersAsync
  • Version 4.0.0-beta2 - 26 Jul 2021

    • Updated CryptoExchange.Net
  • Version 4.0.0-beta1 - 09 Jul 2021

    • Added Async postfix for async methods
    • Updated CryptoExchange.Net
  • Version 3.5.0-beta4 - 07 Jun 2021

    • Fixed IExchangeClient PlaceOrder OrderType
    • Fixed WalletTransferAsync amount parameter serialization
    • Updated CryptoExchange.Net
  • Version 3.5.0-beta3 - 26 May 2021

    • Removed non-async calls
    • Updated to CryptoExchange.Net changes
  • Version 3.5.0-beta2 - 06 mei 2021

    • Updated CryptoExchange.Net
  • Version 3.5.0-beta1 - 30 apr 2021

    • Updated to CryptoExchange.Net 4.0.0-beta1, new websocket implementation
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on Bitfinex.Net:

Package Downloads
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.

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.

exchange-client-1

Exchange client gather all exchanges via jkorf and it uses common client sources

GitHub repositories (2)

Showing the top 2 popular GitHub repositories that depend on Bitfinex.Net:

Repository Stars
visualHFT/VisualHFT
VisualHFT is a WPF/C# desktop GUI that shows market microstructure in real time. You can track advanced limit‑order‑book dynamics and execution quality, then use its modular plugins to shape the analysis to your workflow.
JKorf/CryptoExchange.Net
A C# .netstandard base library used for implementing cryptocurrency exchange API's.
Version Downloads Last Updated
9.3.0 14 7/23/2025
9.2.0 151 7/15/2025
9.1.0 896 6/2/2025
9.0.0 486 5/13/2025
9.0.0-beta4 150 5/1/2025
9.0.0-beta3 128 4/25/2025
9.0.0-beta2 163 4/23/2025
9.0.0-beta1 163 4/22/2025
8.1.1 2,079 2/12/2025
8.1.0 122 2/11/2025
8.0.2 350 2/6/2025
8.0.1 130 2/5/2025
8.0.0 175 1/27/2025
7.13.1 1,047 1/7/2025
7.13.0 587 12/23/2024
7.12.2 449 12/5/2024
7.12.1 234 12/3/2024
7.12.0 200 11/28/2024
7.11.0 330 11/19/2024
7.10.0 1,151 11/6/2024
7.9.0 384 10/28/2024
7.8.2 464 10/14/2024
7.8.1 271 10/8/2024
7.8.0 741 9/27/2024
7.7.0 914 8/7/2024
7.6.0 400 7/29/2024
7.4.3 870 7/2/2024
7.4.2 272 6/26/2024
7.4.1 212 6/25/2024
7.4.0 991 6/23/2024
7.3.0 12,657 6/11/2024
7.2.8 13,008 5/7/2024
7.2.7 12,514 5/1/2024
7.2.6 12,597 4/28/2024
7.2.5 12,540 4/23/2024
7.2.4 12,531 4/18/2024
7.2.3 12,629 4/3/2024
7.2.2 13,842 3/25/2024
7.2.1 12,613 3/24/2024
7.2.0 11,960 3/16/2024
7.1.0 13,395 2/25/2024
7.1.0-beta2 11,991 2/17/2024
7.1.0-beta1 12,101 2/6/2024
7.0.5 13,106 12/3/2023
7.0.4 12,773 10/24/2023
7.0.3 8,664 10/9/2023
7.0.2 8,854 9/21/2023
7.0.1 8,528 9/19/2023
7.0.0 8,553 9/17/2023
6.0.1 9,126 8/25/2023
6.0.0 1,743 6/25/2023
5.2.0 1,945 4/16/2023
5.1.2 1,573 3/18/2023
5.1.1 1,528 2/14/2023
5.1.0 1,806 11/17/2022
5.0.16 1,795 9/25/2022
5.0.15 2,449 7/18/2022
5.0.14 1,180 7/16/2022
5.0.13 2,250 7/10/2022
5.0.12 1,536 6/12/2022
5.0.11 1,466 5/24/2022
5.0.10 1,209 5/22/2022
5.0.9 1,426 5/8/2022
5.0.8 1,331 5/1/2022
5.0.7 1,842 4/14/2022
5.0.6 2,005 3/14/2022
5.0.5 1,200 3/10/2022
5.0.4 1,195 3/8/2022
5.0.3 2,753 3/1/2022
5.0.2 1,245 2/27/2022
5.0.1 1,271 2/24/2022
5.0.0 1,182 2/18/2022
5.0.0-beta4 893 2/5/2022
5.0.0-beta3 879 1/31/2022
5.0.0-beta2 872 1/24/2022
5.0.0-beta1 924 1/15/2022
5.0.0-alpha6 851 1/7/2022
5.0.0-alpha5 889 1/3/2022
5.0.0-alpha4 864 1/1/2022
5.0.0-alpha3 876 12/27/2021
5.0.0-alpha2 892 12/21/2021
5.0.0-alpha1 921 12/7/2021
4.2.4 4,446 11/3/2021
4.2.3 1,467 10/8/2021
4.2.2 1,091 10/6/2021
4.2.1 1,080 10/5/2021
4.2.0 1,279 9/29/2021
4.1.2 1,133 9/22/2021
4.1.1 1,173 9/21/2021
4.1.0 1,101 9/20/2021
4.0.5 1,140 9/15/2021
4.0.4 1,157 9/2/2021
4.0.3 1,190 8/26/2021
4.0.2 1,094 8/24/2021
4.0.1 1,337 8/13/2021
4.0.0 1,061 8/12/2021
4.0.0-beta3 918 8/9/2021
4.0.0-beta2 948 7/26/2021
4.0.0-beta1 970 7/9/2021
3.5.0-beta4 1,106 6/7/2021
3.5.0-beta3 929 5/26/2021
3.5.0-beta2 971 5/6/2021
3.5.0-beta1 993 4/30/2021
3.4.7 2,321 5/4/2021
3.4.6 1,116 4/28/2021
3.4.5 1,219 4/20/2021
3.4.4 1,143 4/19/2021
3.4.3 1,408 4/8/2021
3.4.2 1,355 3/30/2021
3.4.1 1,613 3/1/2021
3.4.0 1,358 3/1/2021
3.3.1 1,321 2/24/2021
3.3.0 1,256,748 2/9/2021
3.2.0 1,201 2/3/2021
3.1.2 1,333 1/22/2021
3.1.1 1,202 1/14/2021
3.1.0 1,382 12/21/2020
3.0.18 1,306 12/11/2020
3.0.17 1,691 11/19/2020
3.0.16 2,036 10/8/2020
3.0.15 1,917 8/28/2020
3.0.14 1,401 8/12/2020
3.0.13 1,525 7/20/2020
3.0.12 1,630 6/21/2020
3.0.11 1,293 6/16/2020
3.0.10 1,419 6/7/2020
3.0.9 8,218 3/3/2020
3.0.8 1,368 3/3/2020
3.0.7 1,653 2/5/2020
3.0.6 1,475 1/27/2020
3.0.5 2,282 11/19/2019
3.0.4 1,392 11/19/2019
3.0.3 1,411 11/15/2019
3.0.2 1,403 11/12/2019
3.0.1 1,568 10/24/2019
3.0.0 1,367 10/23/2019
2.1.6 17,432 8/7/2019
2.1.5 1,357 8/6/2019
2.1.4 1,393 8/5/2019
2.1.3 2,327 7/9/2019
2.1.2 1,444 7/8/2019
2.1.1 1,473 7/1/2019
2.1.0 1,489 6/27/2019
2.0.12 6,246 5/14/2019
2.0.11 1,525 5/1/2019
2.0.10 2,008 3/18/2019
2.0.9 1,589 3/8/2019
2.0.8 1,411 3/7/2019
2.0.7 1,931 2/18/2019
2.0.6 1,993 2/1/2019
2.0.5 1,991 1/9/2019
2.0.4 2,075 12/17/2018
2.0.3 1,590 12/10/2018
2.0.2 1,609 12/6/2018
2.0.1 1,521 12/6/2018
2.0.0 1,529 12/5/2018
1.2.6 2,095 10/30/2018
1.2.5 1,714 10/18/2018
1.2.4 1,971 9/21/2018
1.2.3 1,637 9/19/2018
1.2.2 1,755 9/7/2018
1.2.1 2,053 8/22/2018
1.2.0 3,499 8/21/2018
1.1.8 1,687 8/20/2018
1.1.7 1,752 8/16/2018
1.1.6 1,730 8/15/2018
1.1.5 1,727 8/13/2018
1.1.4 1,995 7/30/2018
1.1.3 1,856 7/24/2018
1.1.2 1,787 7/20/2018
1.1.1 2,004 7/18/2018
1.1.0 1,977 7/16/2018
1.0.19 1,988 7/12/2018
1.0.18 2,205 7/3/2018
1.0.17 4,153 6/28/2018
1.0.16 2,033 6/26/2018
1.0.15 2,011 6/26/2018
1.0.14 2,054 6/25/2018
1.0.13 1,963 6/22/2018
1.0.12 2,172 6/11/2018
1.0.11 1,926 6/6/2018
1.0.10 1,907 6/5/2018
1.0.9 1,984 6/4/2018
1.0.8 6,084 5/12/2018
1.0.7 1,977 5/12/2018
1.0.6 2,005 5/8/2018
1.0.5 1,905 5/7/2018
1.0.4 1,911 5/7/2018
1.0.3 2,013 5/4/2018
1.0.2 2,021 4/20/2018
1.0.1 1,964 4/20/2018
1.0.0 1,983 4/19/2018
0.0.8 2,646 3/23/2018
0.0.7 2,105 3/23/2018
0.0.6 1,963 3/22/2018
0.0.5 1,958 3/21/2018
0.0.4 1,973 3/20/2018
0.0.3 2,135 3/12/2018
0.0.2 2,012 3/9/2018
0.0.1 2,000 3/8/2018

7.1.0-beta2 - Fixed socket authentication