- 🌍 Support for 120 exchanges across 22 countries
- 🔄 Unified API across all exchanges
- 📊 Public market data (tickers, order books, trades, OHLCV)
- 💰 Private account management (balances, orders, trades)
- 🔐 Secure authentication handling for each exchange
- ⚡ Async/await support for all operations
- 🎯 Strong typing with full IntelliSense support
- 📦 NuGet package for easy installation
The ccxt.net library currently supports 120 cryptocurrency exchange markets across 22 countries, organized by ISO 2-letter country codes.
These exchanges have complete API implementations with full testing:
Exchange | Country | Type | Documentation |
---|---|---|---|
ANXPro | JP | Spot | API |
Binance | HK | Spot | API |
Bitfinex | GB | Spot | API |
bitFlyer | JP | Spot | API |
Bitforex | CN | Spot | API |
Bithumb | KR | Spot | API |
BitMEX | SC | Futures | API |
Bitstamp | GB | Spot | API |
Bittrex | US | Spot | API |
CEX.IO | GB | Spot | API |
Coincheck | JP | Spot | API |
CoinOne | KR | Spot | API |
Gate.io | CN | Spot | API |
GDAX | US | Spot | API |
Gemini | US | Spot | API |
Gopax | KR | Spot | API |
Huobi Pro | CN | Spot | API |
itBit | US | Spot | API |
Korbit | KR | Spot | API |
Kraken | US | Spot | API |
OKCoin KOR | KR | Spot | API |
OKEX | CN | Spot/Futures | API |
Poloniex | US | Spot | API |
QUOINEX | JP | Spot | API |
Upbit | KR | Spot | API |
ZB | CN | Spot | API |
These exchanges have basic structure implemented and are ready for API integration:
- Binance Derivatives: binancecoinm, binanceusdm (US)
- Bybit (CN) - Major derivatives exchange
- OKX (CN) - Major global exchange
- KuCoin (CN) - Popular altcoin exchange
- Coinbase (US) - Leading US exchange
- Deribit (AE) - Options/Futures specialist
- Bitso (MX) - Latin America leader
- Mercado (BR) - Brazilian market leader
- Indodax (ID) - Indonesian leader
- Bitbns (IN) - Indian market
- Luno (GB) - UK/Africa focused
Click to see full list (83 exchanges)
Asia-Pacific:
- CN: bigone, bingx, bitget, coinex, digifinex, gate, hashkey, hitbtc, htx, kucoinfutures, lbank, mexc, woo, woofipro, xt
- JP: bitbank, btcbox, zaif, bittrade
- KR: probit
- SG: bitrue, coinsph, delta, derive, ellipx, hibachi, hyperliquid, independentreserve
- AU: btcmarkets, coinspot
- ID: tokocrypto
Americas:
- US: alpaca, apex, ascendex, binanceus, coinbaseadvanced, coinbaseexchange, coinbaseinternational, crypto, cryptocom, krakenfutures, okcoin, okxus, paradex, phemex, vertex
- CA: ndax, timex
- BR: foxbit, novadax
Europe & Others:
- EU: bit2c, bitopro, bitvavo, btcalpha, btcturk, coinmate, exmo, onetrading, paymium, wavesexchange, whitebit, yobit, zonda
- GB: bitteam, blockchaincom, coinmetro
- EE: latoken
- LT: cryptomus
- MT: bequant
- KY: bitmart, blofin
- BS: fmfwio
Global:
- coincatch, defx, hollaex, myokx, oceanex, oxfun, p2b, tradeogre
- ✅ Fully Implemented: 26 exchanges (22%)
- 🚧 Basic Structure: 94 exchanges (78%)
- 📊 Total: 120 exchanges
The library is updated frequently with new crypto markets, altcoin exchanges, bug fixes, and API endpoints. If you need support for a specific exchange that's not currently included, please open an issue on GitHub or contact us via email.
The library is under MIT license, that means it's absolutely free for any developer to build commercial and opensource software on top of it, but use it at your own risk with no warranties, as is.
# Package Manager Console
Install-Package CCXT.NET -Version 1.5.2
# .NET CLI
dotnet add package CCXT.NET --version 1.5.2
# PackageReference
<PackageReference Include="CCXT.NET" Version="1.5.2" />
git clone https://github.com/ccxt-net/ccxt.net.git
cd ccxt.net
dotnet build
using CCXT.NET.Binance;
// Create client for public API
var publicClient = new BinanceClient("public");
// Get ticker
var ticker = await publicClient.FetchTickerAsync("BTC/USDT");
Console.WriteLine($"BTC/USDT Price: {ticker.result.close}");
// Create client for private API (requires API keys)
var privateClient = new BinanceClient("private", "YOUR_API_KEY", "YOUR_SECRET_KEY");
// Get account balance
var balance = await privateClient.FetchBalanceAsync();
- 📚 Wiki - Detailed documentation
- 📝 API Reference - Complete API documentation
- 🚀 Examples - Sample code
We welcome contributions! Please read our Contributing Guidelines for details on:
- How to submit issues
- How to contribute code
- Coding standards
- Testing requirements
- 📖 Check the Wiki
- 🐛 Report issues on GitHub
- 📧 Contact us at [email protected]
- 🌐 Visit ODINSOFT
If you find CCXT.NET useful, consider supporting development:
Cryptocurrency Donations:
- Bitcoin:
15DAoUfaCanpBpTs7VQBK8dRmbQqEnF9WG
- Ethereum:
0x556E7EdbcCd669a42f00c1Df53D550C00814B0e3
- SEONGAHN - Lead Developer & Project Architect ([email protected])
- YUJIN - Senior Developer & Exchange Integration Specialist ([email protected])
- SEJIN - Software Developer & API Implementation ([email protected])
Built with ❤️ by the ODINSOFT Team