v3.4.2 Latest Release ยท December 2025

Official Aevum Zenth SDKs

Programmatic access to our 400+ division APIs through type-safe, consistent, and production-ready libraries. Unified authentication, automatic retries, and webhook handling built-in.

az-python-sdk

github.com/aevum-zenth/az-python-sdk
Stable v3.4.2
$ pip install aevum-zenth-sdk
# Initialize client with unified API key from aevum_zenth import Client client = Client(api_key="az_live_...") # Query Energy Division API response = client.energy.grids.list(region="us-east") print(response.nodes)

@aevum-zenth/sdk

github.com/aevum-zenth/az-typescript-sdk
Stable v3.4.2
$ npm install @aevum-zenth/sdk
// Initialize with auto-retry & rate limit handling import { AevumZenth } from "@aevum-zenth/sdk"; const client = new AevumZenth({ apiKey: "az_live_..." }); // Query Healthcare Division const trials = await client.health.trials.list({ status: "recruiting" }); console.log(trials.data);

github.com/aevum-zenth/go-sdk

github.com/aevum-zenth/az-go-sdk
Stable v3.4.2
$ go get github.com/aevum-zenth/go-sdk/v3
// Initialize client import "github.com/aevum-zenth/go-sdk/v3" client := az.New("az_live_...") // Query Aerospace Division const ( satellites, err := client.Aerospace.Satellites.List(context.Background(), nil) if err != nil { log.Fatal(err) } fmt.Println(satellites)

az-sdk

github.com/aevum-zenth/az-rust-sdk
Beta v3.4.0
$ cargo add az-sdk
// Initialize async client use az_sdk::Client; let client = Client::builder() .api_key("az_live_...") .build(); // Query Logistics Division let cargo = client.logistics.shipments.list().send().await;

com.aevumzenth:sdk-java

github.com/aevum-zenth/az-java-sdk
Stable v3.4.2
$ mvn install:install-file -Dfile=aevum-zenth-sdk.jar
// Initialize client import com.aevumzenth.sdk.AevumZenth; AevumZenth client = new AevumZenth("az_live_..."); // Query Finance Division List<Instrument> bonds = client.finance.instruments.list() .setRegion("emea").execute();

az-sdk-cpp

github.com/aevum-zenth/az-cpp-sdk
Stable v3.4.2
$ vcpkg install aevum-zenth-sdk
// Initialize client #include <aevum_zenth.hpp> auto client = az::Client::Create("az_live_..."); // Query Robotics Division auto fleets = client->robotics.fleets.List({}); std::cout << fleets.status_code << std::endl;

Unified Developer Experience

Consistent patterns across all languages and divisions.

๐Ÿ”‘

Unified Authentication

Single API key grants scoped access across Energy, Tech, Aerospace, Healthcare, Finance, and 395 other division endpoints.

๐Ÿ›ก๏ธ

Resilient by Default

Exponential backoff, circuit breakers, and automatic retry logic configured for enterprise SLAs out of the box.

๐Ÿ“ฆ

Division Namespaces

Intuitive `client.energy`, `client.health`, `client.aerospace` namespaces mirroring our 400-division structure.

โšก

Async & Streaming

Native support for WebSockets, SSE event streams, and batch operations for high-throughput data pipelines.