\n
v3.2.1 • Stable
Aevum Zenth Developer API
Programmatic access to our multidivisional data ecosystem. Query subsidiaries, track real-time market performance, and integrate with our global operational network.
https://api.aevumzenth.com/v3
Getting Started
All API requests must include an authentication token in the Authorization header. Rate limiting is applied per API key.
Note: Sandbox mode is enabled by default for new keys. Toggle to production in your developer dashboard.
curl -X GET https://api.aevumzenth.com/v3/divisions \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json"
import requests # Initialize client headers = { "Authorization": f"Bearer {API_KEY}", "Content-Type": "application/json" } # Fetch divisions response = requests.get("https://api.aevumzenth.com/v3/divisions", headers=headers) print(response.json())
// Initialize client const headers = { "Authorization": `Bearer ${API_KEY}`, "Content-Type": "application/json" }; // Fetch divisions const response = await fetch("https://api.aevumzenth.com/v3/divisions", { headers }); console.log(await response.json());
Endpoints
GET
/v3/divisions
Retrieve a paginated list of all active conglomerate divisions.
| Parameter | Type | Required | Description |
|---|---|---|---|
| page | integer | Optional | Pagination index (default: 1) |
| limit | integer | Optional | Results per page (max: 100) |
| sector | string | Optional | Filter by industry sector |
GET
/v3/divisions/{id}/subsidiaries
Fetch subsidiary entities operating under a specific division.
| Parameter | Type | Required | Description |
|---|---|---|---|
| id | string | Required | Division UUID |
| region | string | Optional | ISO 3166-1 alpha-2 region code |
POST
/v3/analytics/market-query
Submit complex analytical queries for cross-divisional market performance data.
| Parameter | Type | Required | Description |
|---|---|---|---|
| metrics | array | Required | Array of metric identifiers to compute |
| timeframe | string | Required | ISO 8601 start/end range |
| aggregation | string | Optional | daily, weekly, monthly, quarterly |
System Status & Limits
Real-time API health monitoring and tiered rate limiting based on your access level.
API Core
99.99%
Rate Limit (Free)
100 req/m
Rate Limit (Enterprise)
10k req/m
Avg Response
42ms
Official SDKs
Accelerate development with our officially maintained client libraries. All SDKs include auto-retry, pagination handling, and type definitions.