⚡ v3.2.1 Stable Release
Build at Scale with
Aevum Zenth APIs
Access unified endpoints across 400+ subsidiaries. RESTful, GraphQL, and real-time webhooks. Built for enterprise-grade performance.
Quick Start
Make Your First Call
Authenticate with your API key and query any endpoint in seconds.
Python
JavaScript
cURL
Go
import requests
# Initialize client with your API key
client = requests.Session()
client.headers["Authorization"] = "Bearer AevumZenth_..."
client.headers["Content-Type"] = "application/json"
# Fetch division metadata
response = client.get(
"https://api.aevumzenth.com/v3/divisions",
params={"limit": 20, "region": "EMEA"}
)
print(response.json())
const AevumZenth = require(@aevum/az-sdk);
const client = new AevumZenth({
apiKey: process.env.AZ_API_KEY,
region: 'EMEA'
});
async function getDivisions() {
const data = await client.divisions.list({
limit: 20,
expand: ['finance', 'tech']
});
console.log(data);
}
curl -X GET "https://api.aevumzenth.com/v3/divisions" \
-H "Authorization: Bearer AevumZenth_..." \
-H "Content-Type: application/json" \
-d '"limit": 20, "region": "EMEA"'
package main
import (
"fmt"
github.com/aevum/az-go
)
func main() {
client := az.NewClient(
az.WithAPIKey("AevumZenth_..."),
az.WithRegion("EMEA"),
)
divs, _ := client.Divisions.List(context.TODO(), 20)
fmt.Println(divs)
}
API Reference
Core Endpoints
Standardized REST architecture with consistent pagination, filtering, and rate limiting.
| Method | Endpoint | Description | Status |
|---|---|---|---|
| GET | /v3/divisions | List all corporate divisions with filtering | Stable |
| POST | /v3/workflows | Trigger cross-divisional automation | Stable |
| GET | /v3/analytics/realtime | Live telemetry & KPI streams | Beta |
| PUT | /v3/iam/permissions | Update granular access controls | Stable |
| DELETE | /v3/sandbox/instances | Destroy test environments | Dev |
| GET | /v3/webhooks/configs | Manage event delivery routes | Stable |
SDKs & Libraries
Native Language Support
Officially maintained SDKs with auto-generated types, retry logic, and circuit breakers.
v3.2.1
Python SDK
Asyncio support, Pydantic models, and seamless data pipeline integration.
pip install aevum-zenth
v3.2.0
JavaScript / TypeScript
Node.js & browser ready. Full TS definitions and ESM/CJS support.
npm install @aevum/az-sdk
v3.1.5
Go Client
Context-aware, goroutine safe, and optimized for microservices.
go get github.com/aevum/az-go
v3.0.2
Rust Crate
Zero-cost abstractions, async/await native, and serde integration.
cargo add aevum-zenth
Security & Limits
Enterprise-Grade Reliability
SOC 2 Type II certified. End-to-end encryption and predictable scaling.
🔐 Authentication
JWT-based OAuth 2.0 with mTLS support, scoped API keys, and role-based access control (RBAC) across all divisions.
📊 Rate Limits
Standard Tier1,000 req/min
Pro Tier10,000 req/min
EnterpriseUnlimited (Custom SLA)
Webhook RetriesExponential backoff (max 72h)
🛡️ Compliance
GDPR, HIPAA, CCPA, and SOC 2 compliant. All data processed in isolated VPCs with optional on-prem deployment.
Developer Support
Need Help?
Our engineering team is available 24/7 across multiple channels.