Quick Install

Install the Aevum Zenth CLI via your preferred package manager or direct binary download.

bash
# macOS / Linux
curl -sS https://install.aevumzenth.dev/cli | bash

# Windows (PowerShell)
iwr https://install.aevumzenth.dev/cli.ps1 | iex

# Verify installation
azent-cli --version

Authentication & Config

Authenticate using your developer API key or SSO flow. Configuration is stored in ~/.azent/config.json.

bash
# Interactive login (recommended)
azent-cli auth login

# API Key auth (CI/CD)
azent-cli auth set-key "zt_live_4f8a92..."

# List connected divisions
azent-cli divisions list --format table

Core Commands

azent deploy

One-command deployment to any division's infrastructure. Supports canary, blue/green, and rolling strategies.

🔐

azent auth

Unified identity management across all subsidiaries. Handles OAuth2, mTLS, and scoped tokens automatically.

📦

azent scaffold

Generate production-ready project templates with pre-configured SDKs, CI pipelines, and environment variables.

🔍

azent logs

Tail distributed logs across divisions in real-time. Filter by service, trace ID, or severity level.

Installation

Add the official Aevum Zenth SDK to your Python project via pip.

terminal
pip install aevum-zenth-sdk

Basic Usage

Initialize the client and make your first API call to the Energy Division.

python
from aevum_zenth import Client

# Initialize with default env vars
client = Client()

# Query grid capacity
response = client.energy.get_grid_status(
    region="EMEA-West",
    unit="MW"
)
print(response.capacity_current)

Installation

Works with Node.js 18+ and modern browsers. Fully typed with TypeScript.

npm / yarn / pnpm
npm install @aevum-zenth/sdk-js

Basic Usage

Async/await ready. Supports both server-side and client-side rendering.

javascript
import { AevumZenth } from "@aevum-zenth/sdk-js";

const client = new AevumZenth();

async function fetchHealthData() {
  const data = await client.health.getPatientRecords({
    division: "Zenth-Health-APAC",
    scope: "read:basic"
  });
  return data;
}

fetchHealthData();

Installation

Production-grade Go client for high-throughput microservices and CLI tools.

go.mod
go get github.com/aevum-zenth/sdk-go/v4

Basic Usage

Thread-safe, context-aware, with built-in retry and circuit breaker logic.

go
package main

import (
    "context"
    "log"

    github.com/aevum-zenth/sdk-go/v4"
)

func main() {
    client := aevum.NewDefaultClient()
    ctx := context.Background()

    res, err := client.Logistics.TrackShipment(ctx, "ZT-8842-XJ")
    if err != nil {
        log.Fatal(err)
    }
    log.Println(res.Status)
}

Installation

Blazingly fast, memory-safe Rust SDK. Ideal for edge computing and systems programming.

Cargo.toml
[dependencies]
aevum-zenth = "4.2"

Basic Usage

Async runtime agnostic (tokio, async-std). Zero-cost abstractions with full type safety.

rust
use aevum_zenth::{Client, Division};

#[tokio::main]
async fn main() -> Result<(), Box> {
    let client = Client::new().await?;
    let data = client.aerospace
        .get_orbital_slot(Division::ZenthSpace)
        .await?;
    println!("Slot ID: {}", data.id);
    Ok(())
}

Available Across Ecosystems

N
@aevum-zenth/sdk-js
v4.2.1
npm i @aevum-zenth/sdk-js
P
aevum-zenth-sdk
v4.2.1
pip install aevum-zenth-sdk
G
github.com/aevum-zenth/sdk-go/v4
v4.2.1
go get github.com/aevum-zenth/sdk-go/v4
C
aevum-zenth
v4.2.1
cargo add aevum-zenth

Need Help Integrating?

Our developer success team is available to assist with complex deployments, multi-division authentication, and SDK customization.

Contact Dev Support →