Aevum Zenth Core API
Programmatically access the Zenth conglomerate infrastructure. Build, scale, and automate across energy, aerospace, logistics, and financial systems.
📢 Version 3.0 Beta is now available. It introduces multi-region routing, unified auth tokens, and 40% faster payload processing. Read the migration guide →
Overview
The Zenth Core API is a RESTful interface with GraphQL fallback, designed for high-throughput enterprise operations. All endpoints are served over HTTPS with mandatory TLS 1.3. Base endpoints are region-routed automatically based on your API key prefix.
| Environment | Base URL | Status |
|---|---|---|
| Production | https://api.zenth.aevum.io/v2 |
● Active |
| Sandbox | https://sandbox.api.zenth.aevum.io/v2 |
● Testing |
| Edge (EU) | https://eu.api.zenth.aevum.io/v2 |
● Active |
Authentication
All requests require a Bearer token in the Authorization header. Tokens are scoped per division (Energy, Aerospace, Finance, etc.) and expire after 24 hours unless refresh rotation is enabled.
Quick Start
Follow these steps to initialize your first integration:
- Generate an API key from the Zenth Developer Console
- Install the official SDK for your runtime environment
- Configure regional routing and webhook endpoints
- Make your first request to
/v2/healthto validate connectivity
Rate Limits & Throttling
API limits are enforced per project tier. Enterprise plans include custom throughput negotiation. Standard limits:
- Standard: 1,200 requests/minute
- Scale: 5,000 requests/minute
- Enterprise: Dedicated pool + burst allowance
Exceeding limits returns 429 Too Many Requests with a Retry-After header. Implement exponential backoff with jitter for production workloads.