API Reference
The Aevum Zenth API provides programmatic access to operational data across our 400+ subsidiaries. Designed for enterprise integration, it supports real-time telemetry, financial aggregation, logistics tracking, and cross-divisional analytics.
api-support@aevumzenth.com for tier upgrades.
Base URL & Versioning
All API requests are made over HTTPS to the base endpoint. Versioning is handled via URL path prefix to ensure backward compatibility.
Responses include version metadata in the X-AZ-API-Version header. Deprecated endpoints return a 410 Gone with migration links.
Rate Limiting
API requests are throttled per key to maintain system stability. Limits reset on a rolling minute basis.
| Tier | Requests / min | Burst | Concurrent |
|---|---|---|---|
| Developer | 100 | 20 | 5 |
| Enterprise | 5,000 | 100 | 50 |
| Partner | 20,000 | 500 | 200 |
Exceeding limits returns 429 Too Many Requests. Include the Retry-After header value in exponential backoff logic.
Authentication
API Keys
Include your API key in the request header. Keys are partitioned by division scope.
OAuth 2.0 (Client Credentials)
For service-to-service authentication, use the token endpoint. Tokens expire in 3600 seconds.
Endpoints
Returns a paginated list of all active operational divisions with metadata, revenue classification, and status flags.
Query Parameters
| Name | Type | Description |
|---|---|---|
status | string | Filter by active, acquired, or deprecated |
category | string | Filter by sector: energy, tech, healthcare, etc. |
limit | integer | Max items per page (default: 50, max: 200) |
Submit real-time telemetry from smart grid infrastructure. Data is validated, aggregated, and routed to divisional dashboards.
Request Body (JSON)
| Field | Type | Required | Description |
|---|---|---|---|
station_id | string | Yes | Unique grid node identifier |
load_mw | number | Yes | Current load in megawatts |
frequency_hz | number | No | Grid frequency (default: 50.0) |
timestamp | string | Yes | ISO 8601 UTC timestamp |
Retrieve aggregated portfolio holdings across Aevum Capital Group. Access requires finance:read scope.
Query Parameters
| Name | Type | Description |
|---|---|---|
tier | string | Filter by public, private_equity, or venture |
currency | string | USD (default), EUR, GBP, JPY |
SDKs & Libraries
Official client libraries handle authentication, retry logic, and type safety. Community-maintained wrappers are listed in the ecosystem docs.
Full documentation, examples, and changelogs are available on GitHub. Contribute via the partner developer portal.
Error Handling
The API uses conventional HTTP status codes. Detailed error payloads follow a consistent structure.
Always log the request_id when contacting support. Rate limit violations and malformed JSON return 429 and 400 respectively.