TGViewer
CCXT Announcements CCXT Announcements @ccxt_announcements · 840 subscribers
Post #115 786
Hello, CCXT community! 👋

We're excited to announce the public release of the Java version of CCXT, starting from version 4.5.56 🎉

The API is designed to stay consistent with the other CCXT languages, while Java provides both synchronous and asynchronous versions of each unified method. For example:
- createOrder
- createOrderAsync

Java 21 or higher is required to build or consume the package

The package is available on Maven Central: https://central.sonatype.com/artifact/io.github.ccxt/ccxt

Install/Import

dependencies {
implementation("io.github.ccxt:ccxt:4.5.56")
}


Examples

        var exchange = new Binance();
exchange.apiKey = "your api key";
exchange.secret = "your secret";

var params = new HashMap<String, Object>();
// Sync Version
var order = exchange.createOrder("ETH/USDT", "market", "buy", 500.0, null, params);
// Async version
var orderAsync = exchange.createOrderAsync("ETH/USDT", "market", "buy", 500.0, null, params).get();


You can check some examples here: https://github.com/ccxt/ccxt/tree/master/java/examples

Thank you for using CCXT!

Yours, the CCXT Dev Team.
Maven Central Maven Central: io.github.ccxt:ccxt Discover ccxt in the io.github.ccxt namespace. Explore metadata, contributors, the Maven POM file, and more.
  • 👍 11
  • 🔥 6
  • ❤ 4
More from @ccxt_announcements
  1. Sep 19, 2026📘 4.5.81 released! Upgrade now to take advantage of: 🔧 Updates & Fixes: Upgrade to v4.5.…
  2. Sep 17, 2026🇸🇬 CCXT is coming to TOKEN2049 Singapore! We’d love to meet members of the CCXT communit…
  3. Sep 14, 2026Hello, CCXT community! 👋 🚀 Introducing ccxt-mcp — the official CCXT MCP server Give your…
  4. Sep 7, 2026Hello, CCXT community! 👋 We're excited to announce the public release of the Rust version…
  5. Sep 4, 2026⏰ Last call — registration closes Monday The BTSE × CCXT Trading Competition registration…
  6. Sep 1, 2026Hello, CCXT community! 👋 We are happy to announce the integration of the Revolut X exchan…
Threads Profile ViewerView any public Threads profile without an account.Open ThreadLook →Writing with AI? Make it sound human.Metric37 rewrites AI drafts so they read naturally. Free AI detector, 1,500 words free.Try Metric37 →