Developer Resources
SDKs & Toolkits
Official client libraries, CLI tools, and development utilities to integrate with Aevum Zenth's global infrastructure.
Official SDKs
Language-optimized clients with automatic retries, pagination, and type-safe interfaces.
@aevumzenth/js
Full-featured TypeScript SDK for Node.js and browsers. Supports ESM and CommonJS.
npm install @aevumzenth/js
aevum-zenth-py
Python client with async support, Pandas integration, and auto-generated models.
pip install aevum-zenth
github.com/aevumzenth/go-sdk
High-performance Go client designed for cloud-native and edge deployments.
go get github.com/aevumzenth/go-sdk/v4
aevum-zenth-rs
Zero-cost abstractions, tokio integration, and WASM-targeted builds for edge compute.
cargo add aevum-zenth
aevum-zenth-java
Enterprise-grade Java client with Spring Boot auto-configuration and reactive streams.
mvn add org.aevumzenth:zenth-client:4.2.1
AevumZenthSwift
Native iOS & macOS SDK with SwiftUI views, Combine support, and App Store compliance.
swift package resolve --package-url https://github.com/aevumzenth/swift-sdk
Developer Toolkits
Complement your SDK with these official utilities for local development, testing, and deployment.
Zenth CLI
Cross-platform command line interface for project scaffolding, auth management, and deployment pipelines.
Documentation →
Dev Container
Pre-configured Docker/DevContainer image with all SDKs, runtime tools, and mock servers ready.
Pull Image →
Mock Server
Local HTTP/gRPC server that mirrors production API responses for offline testing and CI/CD.
Setup Guide →
Trace Inspector
OpenTelemetry-compatible dashboard for visualizing SDK calls, latency, and error rates.
Configure →
Quick Start
Authenticate and make your first request in under 30 seconds.
TypeScript
import { ZenthClient } from "@aevumzenth/js";
// Initialize with your API key
const client = new ZenthClient({
apiKey: process.env.ZENTH_API_KEY,
region: "us-east-1"
});
async function main() {
const grid = await client.energy.getRealTimeLoad({
sector: "commercial",
interval: "5m"
});
console.log(`Current load: ${grid.metrics.load_mw} MW`);
}
main();
Developer Support
Get help from our engineering team and the broader Aevum Zenth developer community.