v4.2.0-stable
Active Divisions
412
Global Uptime
99.994%
Avg Latency
14ms

1 Select Your Division

Aevum Zenth operates across multiple verticals. Select the primary division you intend to interface with. This determines the base endpoint and schema structure.

🚀 Aerospace
Energy & Power
🧬 Health Sciences
💱 Capital Group

2 Install the SDK

Install the official Aevum Zenth core package using your preferred package manager.

Bash
Pip
Cargo
# TypeScript / Node.js
npm install @aevum-zenth/core@latest

# Python 3.10+
pip install aevum-zenth-sdk

# Rust
cargo add aevum_zenth

3 Initialize the Client

Configure your environment with your API Key. The client automatically handles encryption handshakes and regional routing.

TypeScript
Python
Rust
import { ZenthClient } from '@aevum-zenth/core';

const aevum = new ZenthClient({
  apiKey: process.env.AZT_API_KEY,
  division: 'aerospace',
  region: 'eu-central-1',
  verbose: true
});

const status = await aevum.ping();
console.log(`Connected to Aevum Zenth Network. Latency: ${status.latency}`);

4 First Payload

Execute a test payload to verify end-to-end communication with the subsidiary node.

TypeScript
Python
const response = await aevum.divisions.execute({
  operation: 'TEST_HANDSHAKE',
  priority: 'LOW',
  timeout: 5000
});

console.log(response.payload); 
// { success: true, nodeId: 'AZT-AERO-092', timestamp: ... }