SkillAgentSearch skills...

Ccxt.net

CCXT.NET – CryptoCurrency eXchange Trading Library for .NET

Install / Use

/learn @odinsoft-lab/Ccxt.net

README

CCXT.NET - CryptoCurrency eXchange Trading Library for .NET

NuGet .NET License Downloads

Features

  • 🌍 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

Supported Cryptocurrency Exchange Markets

The ccxt.net library currently supports 120 cryptocurrency exchange markets across 22 countries, organized by ISO 2-letter country codes.

🟢 Fully Implemented Exchanges (26)

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 |

🟡 Basic Implementation (94)

These exchanges have basic structure implemented and are ready for API integration:

Priority 1 - Major Exchanges (To be implemented first)

  • 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

Priority 2 - Regional Leaders

  • Bitso (MX) - Latin America leader
  • Mercado (BR) - Brazilian market leader
  • Indodax (ID) - Indonesian leader
  • Bitbns (IN) - Indian market
  • Luno (GB) - UK/Africa focused

Priority 3 - Other Exchanges

<details> <summary>Click to see full list (83 exchanges)</summary>

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
</details>

Implementation Status Summary

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

Installation

NuGet Package

# Package Manager Console
Install-Package CCXT.NET -Version 1.5.3

# .NET CLI
dotnet add package CCXT.NET --version 1.5.3

# PackageReference
<PackageReference Include="CCXT.NET" Version="1.5.3" />

Clone Repository

git clone https://github.com/odinsoft-lab/ccxt.net.git
cd ccxt.net
dotnet build

Quick Start

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();

Documentation

Releases

Contributing

We welcome contributions! Please read our Contributing Guidelines for details on:

  • How to submit issues
  • How to contribute code
  • Coding standards
  • Testing requirements

Support

Need Help?

  • 📖 Check the Wiki
  • 🐛 Report issues on GitHub
  • 📧 Contact us at help@odinsoft.co.kr
  • 🌐 Visit ODINSOFT

Support the Project

If you find CCXT.NET useful, consider supporting development:

Cryptocurrency Donations:

  • Bitcoin: 15DAoUfaCanpBpTs7VQBK8dRmbQqEnF9WG
  • Ethereum: 0x556E7EdbcCd669a42f00c1Df53D550C00814B0e3

👥 Team

Core Development Team


Built with ❤️ by the ODINSOFT Team | ⭐ Star us on GitHub

Related Skills

View on GitHub
GitHub Stars211
CategoryDevelopment
Updated26d ago
Forks70

Languages

C#

Security Score

100/100

Audited on Feb 27, 2026

No findings