v3.8.2 Stable Release

Integrate with Aevum Zenth

Connect to our global infrastructure in minutes. Access energy grids, logistics networks, AI models, and financial rails through a unified API.

npm install @aevumzenth/sdk

Official SDKs

Type-safe, async-ready, and maintained directly by Aevum Zenth engineering.

🐍
v3.8.2
Python SDK
pip install aevum-zenth
pip install aevum-zenth
v3.8.2
JavaScript / Node.js
npm / yarn / pnpm
npm install @aevumzenth/sdk
🔵
v3.7.1
Go SDK
go get / modules
go get github.com/aevumzenth/go-sdk
v3.6.4
Java / Kotlin
Maven / Gradle
implementation 'com.aevumzenth:core:3.6.4'

Quick Start

Initialize the client, authenticate, and make your first request in under 60 seconds.

JavaScript
Python
Go
cURL
import { AevumZenth } from '@aevumzenth/sdk'; // Initialize with your API key const client = new AevumZenth({ apiKey: process.env.A_ZENTH_API_KEY, environment: 'sandbox' // or 'production' }); // Query global infrastructure status const status = await client.network.getHealth(); console.log(status);
from aevum_zenth import Client # Initialize client client = Client( api_key=os.getenv("A_ZENTH_API_KEY"), environment="sandbox" ) # Fetch division metrics metrics = client.logistics.get_fleet_status() print(metrics)
package main import ( "github.com/aevumzenth/go-sdk/client" "os" ) func main() { c := client.New(client.WithAPIKey(os.Getenv("A_ZENTH_API_KEY"))) // Use c.Health().Check() etc. }
curl https://api.aevumzenth.com/v3/network/health \ -H "Authorization: Bearer $A_ZENTH_API_KEY" \ -H "Content-Type: application/json"

Authentication

Secure access across all divisions. We support API Keys, OAuth 2.0, and JWT service tokens.

🔑 API Keys

Best for server-to-server communication, CI/CD pipelines, and backend services. Generate keys in the Developer Dashboard.

A_ZENTH_API_KEY=az_live_8f7e...
A_ZENTH_ENV=production

🔐 OAuth 2.0

For third-party integrations and user-delegated access. Supports PKCE, scopes, and refresh token rotation.

Authorization: Bearer eyJhbG...
Scope: read:logistics write:energy

🛡️ Web Security

CSP headers, CORS whitelisting, and automatic request signing. All endpoints enforce TLS 1.3 minimum.

A-Zenth-Request-Sign: hmac-sha256=...
A-Zenth-Trace-ID: req_9x2k...

API Endpoints

Core routes for cross-divisional operations. Base URL: api.aevumzenth.com/v3

Method Endpoint Description
GET /network/health Real-time infrastructure status across all regions
GET /logistics/fleet Retrieve active autonomous vehicle & drone positions
POST /energy/grid/dispatch Schedule renewable load balancing or fusion reserve allocation
POST /finance/transactions Process cross-border settlements or programmable money flows
PUT /ai/models/deploy Push custom fine-tuned models to edge inference clusters
DELETE /secrets/rotate Force rotation of encryption keys & API credentials

Rate Limits & SLA

1,200
Requests / min (Standard)
10,000
Requests / min (Enterprise)
99.99%
Uptime SLA Guarantee
<80ms
Global p95 Latency

Developer Support

Need help integrating? Our engineering team and community are here for you.