Unified API Gateway
Access 400+ enterprise services across energy, technology, aerospace, and finance through a single, secure, and highly scalable gateway.
Base URL
https://api.aevumzenth.com/v2
Authentication
Bearer Token / API Key
Primary Protocol
REST / GraphQL / WebSocket
Current Status
All Systems Operational
Endpoint Explorer
Welcome to the Aevum Zenth API Gateway
All requests require authentication. Rate limits vary by tier. Responses are formatted in JSON with consistent error structures.
- Versioning: URL-based (`/v2/...`)
- Pagination: Cursor-based & Offset
- Webhooks: Available for async events
Example Request
curl -X GET \"https://api.aevumzenth.com/v2/status\" \ -H \"Authorization: Bearer YOUR_ACCESS_TOKEN\" \ -H \"Accept: application/json\"
Response
{
"status": "operational",
"version": "2.4.1",
"timestamp": "2026-03-15T14:22:00Z",
"regions_active": 8,
"latency_ms": 42
}
| Method | Path | Description |
|---|---|---|
| GET | /v2/energy/grids | List active smart grid nodes |
| POST | /v2/energy/forecast | Request energy load prediction |
| GET | /v2/energy/assets/{id} | Get renewable asset telemetry |
GET /v2/energy/grids
curl -X GET \"https://api.aevumzenth.com/v2/energy/grids?region=emea\" \ -H \"Authorization: Bearer YOUR_ACCESS_TOKEN\"
| Method | Path | Description |
|---|---|---|
| POST | /v2/ai/models/inference | Run LLM or vision model inference |
| GET | /v2/cloud/instances | List provisioned cloud resources |
| PUT | /v2/security/audits | Submit security scan results |
| Method | Path | Description |
|---|---|---|
| POST | /v2/finance/payments | Process cross-border transaction |
| GET | /v2/finance/portfolio/{id} | Retrieve asset allocation data |
| GET | /v2/finance/rates | Fetch real-time FX & interest rates |
| Method | Path | Description |
|---|---|---|
| GET | /v2/aerospace/satellites | List constellation status & orbits |
| POST | /v2/aerospace/telemetry/subscribe | WebSocket feed for live telemetry |
| GET | /v2/aerospace/weather/{lat}/{lon} | Upper atmosphere wind data |
Authentication & Authorization
API Keys
Use for server-to-server integration. Append to the `Authorization` header as `Bearer <key>`. Keys are scoped to specific divisions.
OAuth 2.0 (Authorization Code)
Required for user-facing applications. Supports PKCE and SSO via enterprise identity providers. Redirect URIs must be pre-registered in the portal.
Token Exchange
POST https://auth.aevumzenth.com/oauth/token Content-Type: application/x-www-form-urlencoded grant_type=authorization_code&code=AUTH_CODE&client_id=YOUR_CLIENT_ID&redirect_uri=YOUR_REDIRECT
Rate Limits & Quotas
| Tier | Requests / Minute | Concurrent Connections | Data Transfer / Day | Support |
|---|---|---|---|---|
| Developer | 100 | 5 | 500 MB | Community |
| Business | 5,000 | 50 | 50 GB | Email & Chat |
| Enterprise | Unmetered | Unlimited | Unlimited | Dedicated SLA & 24/7 |
Official SDKs
Python
pip install aevum-zenth
Node.js
npm install @aevumzenth/sdk
Go
go get github.com/aevumzenth/go-sdk
Java / Kotlin
mvn install com.aevumzenth:core